Home
last modified time | relevance | path

Searched refs:GetCodeSize (Results 1 – 25 of 74) sorted by relevance

123

/arkcompiler/ets_runtime/ecmascript/debugger/
Djs_pt_method.h54 uint32_t GetCodeSize() const in GetCodeSize() function
65 return cda.GetCodeSize(); in GetCodeSize()
Djs_debugger.cpp38 if (location.GetBytecodeOffset() >= ptMethod->GetCodeSize()) { in SetBreakpoint()
78 ASSERT(bcOffset < method->GetCodeSize() && "code size of current Method less then bcOffset"); in BytecodePcChanged()
/arkcompiler/runtime_core/static_core/verification/cflow/
Dcflow_info.cpp85 …&catchBlockStart[catchBlock.GetCodeSize()]; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithm… in ProcessCatchBlocks()
121 method->GetCodeSize()); in ProcessCatchBlocks()
131 size_t codeSize = method->GetCodeSize(); in GetCflowMethodInfo()
Dcflow_check.cpp34 … methodStart + method->GetCodeSize(); // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic in CheckCode()
/arkcompiler/runtime_core/static_core/compiler/
Dcompile_method.cpp159 … << bit_cast<void *>(codeInfo.GetCode()) << ", code size " << codeInfo.GetCodeSize(); in GetEntryPoint()
162 … EndCompilation(methodName, isOsr, method->GetCodeSize(), reinterpret_cast<uintptr_t>(entryPoint), in GetEntryPoint()
163 … codeInfo.GetCodeSize(), codeInfo.GetInfoSize(), events::CompilationStatus::COMPILED, jitStats); in GetEntryPoint()
181 …ion(compilerCtx.GetMethodName(), compilerCtx.IsOsr(), compilerCtx.GetMethod()->GetCodeSize(), 0, 0, in RunOptimizations()
203 …EndCompilation(name, isOsr, method->GetCodeSize(), 0, 0, 0, events::CompilationStatus::FAILED_SING… in CheckCompilation()
210 …EndCompilation(name, isOsr, method->GetCodeSize(), 0, 0, 0, events::CompilationStatus::DROPPED, ji… in CheckCompilation()
303 …EndCompilation(methodName, isOsr, method->GetCodeSize(), 0, 0, 0, events::CompilationStatus::FAILE… in CompileInGraph()
318 …EndCompilation(methodName, isOsr, method->GetCodeSize(), 0, 0, 0, events::CompilationStatus::FAILE… in CompileInGraph()
/arkcompiler/runtime_core/static_core/libpandafile/external/
Dfile_ext.cpp69 entry.length = ca.GetCodeSize(); in QueryMethodSymByOffset()
74 offset < mda.GetCodeId().value().GetOffset() + ca.GetCodeSize()) { in QueryMethodSymByOffset()
108 entry.length = ca.GetCodeSize(); in QueryMethodSymAndLineByOffset()
114 offset < mda.GetCodeId().value().GetOffset() + ca.GetCodeSize()) { in QueryMethodSymAndLineByOffset()
146 res.push_back({mda.GetCodeId().value(), ca.GetCodeSize(), ss.str()}); in QueryAllMethodSyms()
/arkcompiler/runtime_core/static_core/libpandafile/
Dcode_data_accessor.h93 uint32_t GetCodeSize() const in GetCodeSize() function
134 uint32_t GetCodeSize() const in GetCodeSize() function
/arkcompiler/runtime_core/libpandafile/
Dcode_data_accessor.h93 uint32_t GetCodeSize() const in GetCodeSize() function
134 uint32_t GetCodeSize() const in GetCodeSize() function
/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dmethod_literal.cpp42 uint32_t codeSize = cda.GetCodeSize(); in Initialize()
147 uint32_t MethodLiteral::GetCodeSize(const JSPandaFile *jsPandaFile, EntityId methodId) in GetCodeSize() function in panda::ecmascript::MethodLiteral
161 return cda.GetCodeSize(); in GetCodeSize()
/arkcompiler/ets_runtime/ecmascript/
Dmethod.cpp45 uint32_t Method::GetCodeSize() const in GetCodeSize() function in panda::ecmascript::Method
48 return MethodLiteral::GetCodeSize(jsPandaFile, GetMethodId()); in GetCodeSize()
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/
Dasm_printer.h373 uint32_t GetCodeSize() override in GetCodeSize() function
376 auto tmp = T::GetCodeSize(); in GetCodeSize()
/arkcompiler/runtime_core/disassembler/templates/
Dget_ins_info.cpp.erb29 auto ins_sz = code_accessor.GetCodeSize();
/arkcompiler/runtime_core/static_core/disassembler/templates/
Dget_ins_info.cpp.erb30 auto ins_sz = code_accessor.GetCodeSize();
/arkcompiler/runtime_core/static_core/compiler/aot/
Daot_manager.h140 if (pc >= code && pc < code + reinterpret_cast<uintptr_t>(aotFile->GetCodeSize())) { in InAotFileRange()
Daot_file.h66 size_t GetCodeSize() const in GetCodeSize() function
Daot_manager.cpp41 << ", code_size=" << aotFile.Value()->GetCodeSize(); in AddFile()
/arkcompiler/runtime_core/static_core/runtime/interpreter/
Dinterpreter_impl.cpp144 while (offset < method->GetCodeSize()) { in DebugDump()
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/
Ddebug_info_cache.cpp76 auto nextOffset = next != table.end() ? next->offset : method->GetCodeSize(); in GetCurrentLineLocations()
102 nextOffset = panda_file::CodeDataAccessor(*pandaFile, *codeId).GetCodeSize(); in GetContinueToLocations()
/arkcompiler/runtime_core/verifier/
Dverifier.cpp108 const auto bc_ins_last = bc_ins.JumpTo(code_data.GetCodeSize()); in VerifyRegisterIndex()
201 const auto ins_size = code_accessor.GetCodeSize(); in CollectIdInInstructions()
630 const auto ins_size = code_accessor.GetCodeSize(); in CheckConstantPoolMethodContent()
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
Dpgo_profiler_decoder.h110 … MethodLiteral::GetCodeSize(jsPandaFile, methodLiteral->GetMethodId())); in GetTypeInfo()
/arkcompiler/runtime_core/static_core/compiler/tools/paoc/
Dpaoc.cpp648 EVENT_COMPILATION(methodName, false, ctx.method->GetCodeSize(), 0, 0, 0, in Compile()
702 …EVENT_COMPILATION(name, false, ctx->method->GetCodeSize(), 0, 0, 0, events::CompilationStatus::COM… in CompileJit()
720 …EVENT_COMPILATION(name, true, ctx->method->GetCodeSize(), 0, 0, 0, events::CompilationStatus::COMP… in CompileOsr()
758 …ON(runtime_->GetMethodFullName(ctx->method, false), false, ctx->method->GetCodeSize(), codeAddress, in FinalizeCompileAot()
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/
Dcallconv.h314 virtual uint32_t GetCodeSize() = 0;
/arkcompiler/runtime_core/static_core/irtoc/backend/
Dfunction.h200 size_t GetCodeSize() in GetCodeSize() function
/arkcompiler/ets_runtime/ecmascript/ic/
Dinvoke_cache.cpp163 uint32_t bcSize = method->GetCodeSize(); in DecideCanBeInlined()
/arkcompiler/runtime_core/static_core/compiler/code_info/
Dcode_info.h241 size_t GetCodeSize() const in GetCodeSize() function
248 return {&data_[CodeInfo::GetCodeOffset(RUNTIME_ARCH)], GetCodeSize()}; in GetCodeSpan()

123