Home
last modified time | relevance | path

Searched refs:TypedJumpOp (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/
Dnumber_speculative_lowering.cpp424 TypedJumpOp jumpOp = acc_.GetTypedJumpAccessor(gate).GetTypedJumpOp(); in VisitBooleanJump()
425 ASSERT((jumpOp == TypedJumpOp::TYPED_JEQZ) || (jumpOp == TypedJumpOp::TYPED_JNEZ)); in VisitBooleanJump()
427 if (jumpOp == TypedJumpOp::TYPED_JEQZ) { in VisitBooleanJump()
Dgate_meta_data.h87 enum class TypedJumpOp : uint8_t { enum
961 TypedJumpOp GetTypedJumpOp() const in GetTypedJumpOp()
966 static uint64_t ToValue(GateType typeValue, TypedJumpOp jumpOp) in ToValue()
974 using TypedJumpOpBits = TypedValueBits::NextField<TypedJumpOp, OPRAND_TYPE_BITS>;
Drange_analysis.cpp241 flag = flag != (acc_.GetTypedJumpAccessor(jmp).GetTypedJumpOp() == TypedJumpOp::TYPED_JNEZ); in TryGetRangeOfBranch()
Dcircuit_builder.h321 GateRef TypedConditionJump(MachineType type, TypedJumpOp jumpOp, GateType typeVal,
532 template<TypedJumpOp Op>
Dts_hcr_lowering.cpp514 jump = builder_.TypedConditionJump<TypedJumpOp::TYPED_JNEZ>(value, valueType); in SpeculateConditionJump()
516 jump = builder_.TypedConditionJump<TypedJumpOp::TYPED_JEQZ>(value, valueType); in SpeculateConditionJump()
Dcircuit_builder-inl.h967 template<TypedJumpOp Op>
Dcircuit_builder.cpp710 GateRef CircuitBuilder::TypedConditionJump(MachineType type, TypedJumpOp jumpOp, GateType typeVal, in TypedConditionJump()