Searched refs:symbols (Results 1 - 6 of 6) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/x86_64/assembler/ |
H A D | elf_file.h | 259 SetSectionSize(symbols.size() * sizeof(Symbol)); 264 outStream.write(reinterpret_cast<const char *>(symbols.data()), symbols.size() * sizeof(Symbol)); 269 symbols.push_back(symbol); in AppendSymbol() 274 return symbols.size(); in GetSymbolsSize() 295 return symbols.size() * sizeof(Symbol); in GetDataSize() 300 return reinterpret_cast<const char*>(symbols.data()); in GetAddr() 304 std::vector<Symbol> symbols; member in assembler::SymbolSection
|
/arkcompiler/ets_runtime/ecmascript/dfx/dump_code/ |
H A D | jit_dump_elf.h | 197 SetSectionSize(symbols.size() * sizeof(maplebe::Symbol)); 202 (void)write(fd, reinterpret_cast<const char *>(symbols.data()), symbols.size() * sizeof(maplebe::Symbol)); 207 symbols.push_back(symbol); in AppendSymbol() 212 return symbols.size(); in GetSymbolsSize() 232 return symbols.size() * sizeof(maplebe::Symbol); in GetDataSize() 237 return reinterpret_cast<const char*>(symbols.data()); in GetAddr() 242 symbols.clear(); 247 std::vector<maplebe::Symbol> symbols; member in panda::ecmascript::SymbolSection
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/ |
H A D | ifile.h | 359 : Section(name, type, flags, align, emitter, memPool), alloc(&memPool), symbols(alloc.Adapter()) in SymbolSection() 371 SetDataSize(symbols.size() * sizeof(Symbol)); 376 outStream.write(reinterpret_cast<const char *>(symbols.data()), symbols.size() * sizeof(Symbol)); 381 symbols.push_back(symbol); in AppendSymbol() 386 return symbols.size(); in GetSymbolsSize() 407 return reinterpret_cast<const char*>(symbols.data()); in GetAddr() 411 MapleVector<Symbol> symbols; member in maplebe::SymbolSection
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/ |
H A D | mir_function.cpp | 95 MIRFuncType *MIRFunction::ReconstructFormals(const std::vector<MIRSymbol *> &symbols, bool clearOldArgs) in ReconstructFormals() argument 103 for (auto *symbol : symbols) { in ReconstructFormals() 112 void MIRFunction::UpdateFuncTypeAndFormalsAndReturnType(const std::vector<MIRSymbol *> &symbols, const TyIdx &retTyIdx, in UpdateFuncTypeAndFormalsAndReturnType() argument 115 auto *newFuncType = ReconstructFormals(symbols, clearOldArgs); in UpdateFuncTypeAndFormalsAndReturnType()
|
/arkcompiler/runtime_core/static_core/compiler/tools/paoc/ |
H A D | paoc.cpp | 886 std::cerr << " --paoc-generate-symbols generate symbols for compiled methods, disabled by default\n"; in PrintUsage()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/ |
H A D | mir_function.h | 246 void UpdateFuncTypeAndFormalsAndReturnType(const std::vector<MIRSymbol *> &symbols, const TyIdx &retTyIdx, 1501 MIRFuncType *ReconstructFormals(const std::vector<MIRSymbol *> &symbols, bool clearOldArgs);
|
Completed in 8 milliseconds