Home
last modified time | relevance | path

Searched refs:codeSpace (Results 1 – 11 of 11) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/litecg/
Dlitecg.cpp98 void *codeSpace, MemoryManagerAllocateDataSectionCallback dataSectionAllocator, in SetupLiteCGEmitMemoryManager() argument
105 …cgOptions->SetupEmitMemoryManager(codeSpace, dataSectionAllocator, funcAddressSaver, funcFpSPDelta… in SetupLiteCGEmitMemoryManager()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/litecg/
Dlitecg.h57 LiteCG &SetupLiteCGEmitMemoryManager(void *codeSpace,
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/
Dcg_option.h33 typedef uint8 *(*MemoryManagerAllocateDataSectionCallback)(void *codeSpace, uint32 size, uint32 ali…
36 typedef void (*MemoryManagerSaveFunc2AddressInfoCallback)(void *codeSpace, std::string funcName, ui…
111 void *codeSpace; member
167 …void SetupEmitMemoryManager(void *codeSpace, MemoryManagerAllocateDataSectionCallback allocateData… in SetupEmitMemoryManager() argument
174 emitMemoryManager.codeSpace = codeSpace; in SetupEmitMemoryManager()
Dobj_emit.h363 if (emitMemoryManager.codeSpace == nullptr) { in ObjEmitter()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/x86_64/
Dx64_proepilog.cpp68 if (emitMemoryManager.codeSpace != nullptr) { in GenerateCalleeSavedRegs()
69 …emitMemoryManager.funcCalleeOffsetSaver(emitMemoryManager.codeSpace, cgFunc.GetName(), calleeRegAn… in GenerateCalleeSavedRegs()
71 … emitMemoryManager.funcFpSPDeltaSaver(emitMemoryManager.codeSpace, cgFunc.GetName(), fp2SPDelta); in GenerateCalleeSavedRegs()
Delf_assembler.cpp136 emitMemoryManager.funcAddressSaver(emitMemoryManager.codeSpace, funcName, in EmitFunctionHeader()
951 if (emitMemoryManager.codeSpace != nullptr) { in WriteElfFile()
953 uint8 *memSpace = emitMemoryManager.allocateDataSection(emitMemoryManager.codeSpace, in WriteElfFile()
2312 if (emitMemoryManager.codeSpace == nullptr) { in RecordStackmap()
2315 …emitMemoryManager.pc2CallSiteInfoSaver(emitMemoryManager.codeSpace, lastModulePC + codeBuff.size()… in RecordStackmap()
2316 emitMemoryManager.pc2DeoptInfoSaver(emitMemoryManager.codeSpace, lastModulePC + codeBuff.size(), in RecordStackmap()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
Dobj_emit.cpp116 if (emitMemorymanager.codeSpace != nullptr) { in WriteObjFile()
118 uint8 *memSpace = emitMemorymanager.allocateDataSection(emitMemorymanager.codeSpace, in WriteObjFile()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dllvm_codegen.cpp87 static CodeSpace *codeSpace = new CodeSpace(); in GetInstance() local
88 return codeSpace; in GetInstance()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/
Daarch64_obj_emitter.cpp260 emitMemoryManager.funcAddressSaver(emitMemoryManager.codeSpace, funcName, offset); in AppendGlobalLabel()
262 if (emitMemoryManager.codeSpace != nullptr) { in AppendGlobalLabel()
267 … emitMemoryManager.codeSpace, content->GetStartOffset() + elem.first, stackMapInfo.referenceMap); in AppendGlobalLabel()
268 …emitMemoryManager.pc2DeoptInfoSaver(emitMemoryManager.codeSpace, content->GetStartOffset() + elem.… in AppendGlobalLabel()
Daarch64_proepilog.cpp1333 if (emitMemoryManager.codeSpace != nullptr) { in GeneratePushRegs()
1334 …emitMemoryManager.funcCalleeOffsetSaver(emitMemoryManager.codeSpace, cgFunc.GetName(), calleeRegAn… in GeneratePushRegs()
1339 …emitMemoryManager.funcFpSPDeltaSaver(emitMemoryManager.codeSpace, cgFunc.GetName(), fp2PrevFrameSP… in GeneratePushRegs()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/x86_64/assembler/
Delf_assembler.h35 if (emitMemoryManager.codeSpace == nullptr) { in ElfAssembler()