Searched refs:CfiInsn (Results 1 – 5 of 5) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/ |
D | cfi.h | 60 class CfiInsn : public maplebe::Insn { 62 CfiInsn(MemPool &memPool, maplebe::MOperator op) : Insn(memPool, op) {} in CfiInsn() function 64 …CfiInsn(MemPool &memPool, maplebe::MOperator op, maplebe::Operand &opnd0) : Insn(memPool, op, opnd… in CfiInsn() function 66 … CfiInsn(MemPool &memPool, maplebe::MOperator op, maplebe::Operand &opnd0, maplebe::Operand &opnd1) in CfiInsn() function 71 … CfiInsn(MemPool &memPool, maplebe::MOperator op, maplebe::Operand &opnd0, maplebe::Operand &opnd1, in CfiInsn() function 77 ~CfiInsn() = default; 118 CfiInsn &operator=(const CfiInsn &);
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/ |
D | cfi.cpp | 42 void CfiInsn::Dump() const in Dump() 56 void CfiInsn::Check() const in Check()
|
D | cg_irbuilder.cpp | 72 auto *nI = mp->New<cfi::CfiInsn>(*mp, opCode); in BuildCfiInsn()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/x86_64/ |
D | x64_optimize_common.cpp | 54 return memPool->Clone<cfi::CfiInsn>(*static_cast<cfi::CfiInsn *>(&originalInsn)); in CloneInsn()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/ |
D | aarch64_optimize_common.cpp | 73 return memPool->Clone<cfi::CfiInsn>(*static_cast<cfi::CfiInsn *>(&originalInsn)); in CloneInsn()
|