Home
last modified time | relevance | path

Searched defs:ifFalse (Results 1 – 15 of 15) sorted by relevance

/arkcompiler/ets_frontend/ets2panda/compiler/core/
DETSGen.h132 …void ResolveConditionalResultNumeric(const ir::AstNode *node, [[maybe_unused]] Label *ifFalse, Lab… in ResolveConditionalResultNumeric()
200 … void ResolveConditionalResultExpression(const ir::AstNode *node, [[maybe_unused]] Label *ifFalse) in ResolveConditionalResultExpression()
214 void ResolveConditionalResult(const ir::AstNode *node, [[maybe_unused]] Label *ifFalse) in ResolveConditionalResult()
267 void BranchIfFalse(const ir::AstNode *node, Label *ifFalse) in BranchIfFalse()
522 void JumpCompareRegister(const ir::AstNode *node, VReg lhs, Label *ifFalse) in JumpCompareRegister()
743 void BinaryNumberComparison(const ir::AstNode *node, VReg lhs, Label *ifFalse) in BinaryNumberComparison()
750 void BinaryDynamicStrictEquality(const ir::AstNode *node, VReg lhs, Label *ifFalse) in BinaryDynamicStrictEquality()
758 void BinaryEquality(const ir::AstNode *node, VReg lhs, Label *ifFalse) in BinaryEquality()
766 void BinaryEqualityCondition(const ir::AstNode *node, VReg lhs, Label *ifFalse) in BinaryEqualityCondition()
811 void BinaryStrictEquality(const ir::AstNode *node, VReg lhs, Label *ifFalse) in BinaryStrictEquality()
[all …]
DETSGen.cpp1846 void ETSGen::ToBinaryResult(const ir::AstNode *node, Label *ifFalse) in ToBinaryResult()
1861 Label *ifFalse = AllocLabel(); in Binary() local
1866 Label *ifFalse = AllocLabel(); in Binary() local
1871 Label *ifFalse = AllocLabel(); in Binary() local
1876 Label *ifFalse = AllocLabel(); in Binary() local
1881 Label *ifFalse = AllocLabel(); in Binary() local
1886 Label *ifFalse = AllocLabel(); in Binary() local
1891 Label *ifFalse = AllocLabel(); in Binary() local
1896 Label *ifFalse = AllocLabel(); in Binary() local
1975 void ETSGen::Condition(const ir::AstNode *node, lexer::TokenType op, VReg lhs, Label *ifFalse) in Condition()
[all …]
Dpandagen.cpp641 void PandaGen::Condition(const ir::AstNode *node, lexer::TokenType op, VReg lhs, Label *ifFalse) in Condition()
/arkcompiler/ets_runtime/ecmascript/compiler/tests/
Ddead_code_elimination_test.cpp50 auto ifFalse = circuit.NewGate(circuit.IfFalse(), {ifBranch}); in HWTEST_F_L0() local
83 auto ifFalse = circuit.NewGate(circuit.IfFalse(), {ifBranch}); in HWTEST_F_L0() local
115 auto ifFalse = circuit.NewGate(circuit.IfFalse(), {ifBranch}); in HWTEST_F_L0() local
Dcombined_pass_visitor_test.cpp59 auto ifFalse = circuit.NewGate(circuit.IfFalse(), {ifBranch}); in HWTEST_F_L0() local
/arkcompiler/ets_runtime/ecmascript/compiler/
Dasync_function_lowering.cpp89 GateRef ifFalse = circuit_->NewGate(circuit_->IfFalse(), {ifBranch}); in RebuildGeneratorCfg() local
133 GateRef ifFalse = circuit_->NewGate(circuit_->IfFalse(), {ifBranch}); in RebuildGeneratorCfg() local
231 void AsyncFunctionLowering::ModifyStateInput(GateRef stateInGate, GateRef ifBranch, GateRef ifFalse) in ModifyStateInput()
Dbuiltins_lowering.cpp234 GateRef ifFalse = builder_.IfFalse(ifBranch); in ReplaceHirWithValue() local
Dntype_hcr_lowering.cpp324 GateRef ifFalse = builder_.IfFalse(ifBranch); in ReplaceGateWithPendingException() local
Dbytecode_circuit_builder.cpp615 auto ifFalse = circuit_->NewGate(circuit_->IfFalse(), {gate}); in NewJump() local
Dslowpath_lowering.cpp144 GateRef ifFalse = builder_.IfFalse(ifBranch); in ReplaceHirWithPendingException() local
179 GateRef ifFalse = builder_.IfFalse(ifBranch); in ReplaceHirWithValue() local
203 GateRef ifFalse = builder_.IfFalse(ifBranch); in ReplaceHirToThrowCall() local
1793 GateRef ifFalse = builder_.IfFalse(ifBranch); in LowerConditionJump() local
Dcircuit_builder.cpp224 GateRef ifFalse = IfFalse(ifBranch); in Branch() local
Dtyped_hcr_lowering.cpp1649 GateRef ifFalse = builder_.IfFalse(ifBranch); in ReplaceHirWithPendingException() local
2482 GateRef ifFalse = builder_.IfFalse(ifBranch); in ReplaceGateWithPendingException() local
Dstub_builder.cpp65 GateRef ifFalse = env_->GetBuilder()->IfFalse(ifBranch); in Branch() local
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/litecg/
Dlmir_builder.cpp925 Expr LMIRBuilder::Select(Type *type, Expr cond, Expr ifTrue, Expr ifFalse) in Select()
/arkcompiler/ets_frontend/es2panda/compiler/core/
Dpandagen.cpp873 void PandaGen::Condition(const ir::AstNode *node, lexer::TokenType op, VReg lhs, Label *ifFalse) in Condition()