Home
last modified time | relevance | path

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

/arkcompiler/runtime_core/compiler/optimizer/ir/
Dinst.cpp158 void IfInst::SetVnObject(VnObject *vn_obj) in SetVnObject()
308 Inst *IfInst::Clone(const Graph *targetGraph) const in Clone()
311 static_cast<IfInst *>(clone)->SetCc(GetCc()); in Clone()
312 static_cast<IfInst *>(clone)->SetOperandsType(GetOperandsType()); in Clone()
313 static_cast<IfInst *>(clone)->SetMethod(GetMethod()); in Clone()
Ddump.cpp337 void IfInst::DumpOpcode(std::ostream *out) const in DumpOpcode()
Dinst.h2687 class IfInst : public InstWithOperandsType<ConditionMixin<FixedInputsInst2>> {
2692IfInst(Opcode opcode, DataType::Type type, uint32_t pc, ConditionCode cc) : Base(opcode, type, pc) in IfInst() function
/arkcompiler/runtime_core/compiler/tests/
Dcompiler_inst_test.cpp109 IfInst if_inst(ConditionCode::CC_EQ);
111 IfInst if_Inst(ConditionCode::CC_NE);
261 IfInst if_inst(ConditionCode::CC_EQ);
871 IfInst if_inst(ConditionCode::CC_EQ);
876 IfInst if_inst1(ConditionCode::CC_NE);
/arkcompiler/runtime_core/bytecode_optimizer/
Dcodegen.h117 static void IfEcma(GraphVisitor *v, compiler::IfInst *inst);
Dcodegen.cpp384 void BytecodeGen::IfEcma(GraphVisitor *v, compiler::IfInst *inst) in IfEcma()
/arkcompiler/runtime_core/docs/
Dir_format.md205 …inherited in instruction classes with conditional code(CompareInst, SelectInst, IfInst and so on)