Home
last modified time | relevance | path

Searched defs:enc (Results 1 – 18 of 18) sorted by relevance

/arkcompiler/runtime_core/static_core/bytecode_optimizer/
Dcodegen.cpp230 auto *enc = static_cast<BytecodeGen *>(visitor); in VisitSpillFill() local
249 static void VisitConstant32(BytecodeGen *enc, compiler::Inst *inst, std::vector<pandasm::Ins> &res) in VisitConstant32()
298 static void VisitConstant64(BytecodeGen *enc, compiler::Inst *inst, std::vector<pandasm::Ins> &res) in VisitConstant64()
344 auto *enc = static_cast<BytecodeGen *>(visitor); in VisitConstant() local
492 auto *enc = static_cast<BytecodeGen *>(visitor); in CallHandler() local
546 static void VisitIf32(BytecodeGen *enc, compiler::IfInst *inst, std::vector<pandasm::Ins> &res, boo… in VisitIf32()
591 static void VisitIf64Signed(BytecodeGen *enc, compiler::IfInst *inst, std::vector<pandasm::Ins> &re… in VisitIf64Signed()
637 static void VisitIf64Unsigned(BytecodeGen *enc, compiler::IfInst *inst, std::vector<pandasm::Ins> &… in VisitIf64Unsigned()
683 static void VisitIfRef([[maybe_unused]] BytecodeGen *enc, compiler::IfInst *inst, std::vector<panda… in VisitIfRef()
712 auto enc = static_cast<BytecodeGen *>(v); in VisitIf() local
[all …]
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/
Dtarget.cpp75 … aarch32::Aarch32Encoder *enc = arenaAllocator->New<aarch32::Aarch32Encoder>(arenaAllocator); in Create() local
85 … aarch64::Aarch64Encoder *enc = arenaAllocator->New<aarch64::Aarch64Encoder>(arenaAllocator); in Create() local
95 amd64::Amd64Encoder *enc = in Create() local
135 [[maybe_unused]] Encoder *enc, in Create()
Dasm_printer.cpp29 …Printer<aarch32::Aarch32Encoder>::AssemblyPrinter(ArenaAllocator *aa, aarch32::Aarch32Encoder *enc) in AssemblyPrinter()
52 …Printer<aarch64::Aarch64Encoder>::AssemblyPrinter(ArenaAllocator *aa, aarch64::Aarch64Encoder *enc) in AssemblyPrinter()
74 AssemblyPrinter<amd64::Amd64Encoder>::AssemblyPrinter(ArenaAllocator *aa, amd64::Amd64Encoder *enc) in AssemblyPrinter()
Dasm_printer.h48 …explicit PrinterLabelHolder(Encoder *enc) : LabelHolder(enc), labels_(enc->GetAllocator()->Adapter… in PrinterLabelHolder()
321 …PrinterCallingConvention(ArenaAllocator *allocator, E *enc, RegistersDescription *descr, CallConvM… in PrinterCallingConvention()
/arkcompiler/runtime_core/compiler/tests/
Dasm_printer_test.cpp57 auto enc = reinterpret_cast<aarch32::Aarch32Assembly *>(encoder_); in PrinterTest() local
66 auto enc = reinterpret_cast<aarch64::Aarch64Assembly *>(encoder_); in PrinterTest() local
75 auto enc = reinterpret_cast<amd64::Amd64Assembly *>(encoder_); in PrinterTest() local
170 auto enc = reinterpret_cast<aarch32::Aarch32Assembly *>(encoder_); in PreWork() local
176 auto enc = reinterpret_cast<aarch64::Aarch64Assembly *>(encoder_); in PreWork() local
182 auto enc = reinterpret_cast<amd64::Amd64Assembly *>(encoder_); in PreWork() local
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/
Dcodegen.cpp1802 auto *enc = GetEncoder(); in CreatePreWRB() local
1967 auto *enc = GetEncoder(); in CheckObject() local
2009 void CheckObj(Encoder *enc, Codegen *cg, Reg base, Reg reg1, LabelHolder::LabelId skipLabel, bool c… in CheckObj()
2024 void WrapOneArg(Encoder *enc, Reg param, Reg base, MemRef mem, size_t additionalOffset = 0) in WrapOneArg()
2057 auto enc {GetEncoder()}; in CreateOnlineIrtocPostWrbRegionTwoRegs() local
2093 auto enc {GetEncoder()}; in CreateOnlineIrtocPostWrbRegionOneReg() local
2115 auto enc {GetEncoder()}; in CreateOnlineIrtocPostWrb() local
2142 auto *enc = GetEncoder(); in CreatePostInterRegionBarrier() local
2205 auto *enc = GetEncoder(); in CalculateCardIndex() local
2224 auto *enc = GetEncoder(); in CreatePostInterGenerationalBarrier() local
[all …]
Dcallconv.h224 …CallingConvention(ArenaAllocator *allocator, Encoder *enc, RegistersDescription *descr, CallConvMo… in CallingConvention()
239 void SetEncoder(Encoder *enc) in SetEncoder()
Dslow_path.cpp281 auto enc {codegen->GetEncoder()}; in GenerateImpl() local
Dcodegen.h657 auto enc = GetEncoder(); in CreateStubCall() local
Dencode.h50 explicit LabelHolder(Encoder *enc) : enc_ {enc} {}; in LabelHolder()
/arkcompiler/runtime_core/static_core/compiler/tests/
Dasm_printer_test.cpp64 auto enc = reinterpret_cast<aarch32::Aarch32Assembly *>(encoder_); in PrinterTest() local
73 auto enc = reinterpret_cast<aarch64::Aarch64Assembly *>(encoder_); in PrinterTest() local
82 auto enc = reinterpret_cast<amd64::Amd64Assembly *>(encoder_); in PrinterTest() local
180 auto enc = reinterpret_cast<aarch32::Aarch32Assembly *>(encoder_); in PreWork() local
186 auto enc = reinterpret_cast<aarch64::Aarch64Assembly *>(encoder_); in PreWork() local
192 auto enc = reinterpret_cast<amd64::Amd64Assembly *>(encoder_); in PreWork() local
/arkcompiler/runtime_core/bytecode_optimizer/
Dcodegen.cpp260 auto *enc = static_cast<BytecodeGen *>(visitor); in VisitSpillFill() local
281 auto *enc = static_cast<BytecodeGen *>(visitor); in VisitConstant() local
336 auto enc = static_cast<BytecodeGen *>(v); in VisitIf() local
386 auto enc = static_cast<BytecodeGen *>(v); in IfEcma() local
450 auto enc = static_cast<BytecodeGen *>(v); in IfImmZero() local
469 auto enc = static_cast<BytecodeGen *>(v); in VisitLoadString() local
486 auto enc = static_cast<BytecodeGen *>(v); in VisitReturn() local
510 auto enc = static_cast<BytecodeGen *>(v); in VisitCastValueToAnyType() local
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/amd64/
Dcallconv.cpp22 Amd64CallingConvention::Amd64CallingConvention(ArenaAllocator *allocator, Encoder *enc, RegistersDe… in Amd64CallingConvention()
Dtarget.h565 …explicit Amd64LabelHolder(Encoder *enc) : LabelHolder(enc), labels_(enc->GetAllocator()->Adapter()… in Amd64LabelHolder()
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/aarch32/
Dcallconv.cpp26 Aarch32CallingConvention::Aarch32CallingConvention(ArenaAllocator *allocator, Encoder *enc, Registe… in Aarch32CallingConvention()
Dtarget.h396 …explicit Aarch32LabelHolder(Encoder *enc) : LabelHolder(enc), labels_(enc->GetAllocator()->Adapter… in Aarch32LabelHolder()
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/aarch64/
Dcallconv.cpp24 Aarch64CallingConvention::Aarch64CallingConvention(ArenaAllocator *allocator, Encoder *enc, Registe… in Aarch64CallingConvention()
Dtarget.h385 …explicit Aarch64LabelHolder(Encoder *enc) : LabelHolder(enc), labels_(enc->GetAllocator()->Adapter… in Aarch64LabelHolder()