Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/compiler/tests/js/
DbranchElimination.js29 function ifTrue(a) { function
/arkcompiler/ets_runtime/ecmascript/compiler/tests/
Ddead_code_elimination_test.cpp49 auto ifTrue = circuit.NewGate(circuit.IfTrue(), {ifBranch}); in HWTEST_F_L0() local
114 auto ifTrue = circuit.NewGate(circuit.IfTrue(), {ifBranch}); in HWTEST_F_L0() local
/arkcompiler/ets_runtime/ecmascript/compiler/
Dasync_function_lowering.cpp91 GateRef ifTrue = circuit_->NewGate(circuit_->IfTrue(), {ifBranch}); in RebuildGeneratorCfg() local
135 GateRef ifTrue = circuit_->NewGate(circuit_->IfTrue(), {ifBranch}); in RebuildGeneratorCfg() local
Dbuiltins_lowering.cpp186 GateRef ifTrue = builder_.IfTrue(ifBranch); in ReplaceHirWithValue() local
Dpost_schedule.cpp529 GateRef ifTrue = isHeapObject.GetControl(); in LoweringStoreUnknownBarrierAndPrepareScheduleGate() local
Dntype_hcr_lowering.cpp346 GateRef ifTrue = builder_.IfTrue(ifBranch); in ReplaceGateWithPendingException() local
Dslowpath_lowering.cpp161 GateRef ifTrue = builder_.IfTrue(ifBranch); in ReplaceHirWithPendingException() local
196 GateRef ifTrue = builder_.IfTrue(ifBranch); in ReplaceHirWithValue() local
220 GateRef ifTrue = builder_.IfTrue(ifBranch); in ReplaceHirToThrowCall() local
2066 Label &ifTrue = isEqualJump ? isZero : notZero; in LowerConditionJump() local
Dbytecode_circuit_builder.cpp916 auto ifTrue = circuit_->NewGate(circuit_->IfTrue(), {gate}); in NewJump() local
Dnative_inline_lowering.cpp1051 GateRef ifTrue = builder_.IfTrue(ifBranch); in ReplaceGateWithPendingException() local
Dtyped_hcr_lowering.cpp1683 GateRef ifTrue = builder_.IfTrue(ifBranch); in ReplaceHirWithPendingException() local
2757 GateRef ifTrue = builder_.IfTrue(ifBranch); in ReplaceGateWithPendingException() local
Dcircuit_builder.cpp254 GateRef ifTrue = IfTrue(ifBranch); in Branch() local
Dstub_builder.cpp72 GateRef ifTrue = env_->GetBuilder()->IfTrue(ifBranch); in BranchPredict() local
/arkcompiler/ets_frontend/ets2panda/compiler/core/
DETSGen.cpp757 void ETSGen::TestIsInstanceConstituent(const ir::AstNode *const node, Label *ifTrue, Label *ifFalse, in TestIsInstanceConstituent()
797 Label *ifTrue) in BranchIfIsInstance()
844 auto ifTrue = AllocLabel(); in IsInstance() local
938 auto ifTrue = AllocLabel(); in CheckedReferenceNarrowing() local
2140 …dleLooseNullishEquality(const ir::AstNode *node, VReg lhs, VReg rhs, Label *ifFalse, Label *ifTrue) in HandleLooseNullishEquality()
2197 auto ifTrue = AllocLabel(); in RefEqualityLoose() local
2209 auto ifTrue = AllocLabel(); in RefEqualityLoose() local
DETSGen.h254 void BranchIfTrue(const ir::AstNode *node, Label *ifTrue) in BranchIfTrue()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/litecg/
Dlmir_builder.cpp981 Expr LMIRBuilder::Select(Type *type, Expr cond, Expr ifTrue, Expr ifFalse) in Select()