Searched refs:bcSize (Results 1 - 5 of 5) sorted by relevance
/arkcompiler/runtime_core/static_core/compiler/ |
H A D | compile_method.h | 43 void EndCompilationWithStats(const std::string &methodName, bool isOsr, size_t bcSize, size_t codeSize); 51 size_t bcSize; member
|
H A D | compile_method.cpp | 46 void JITStats::EndCompilationWithStats(const std::string &methodName, bool isOsr, size_t bcSize, size_t codeSize) in EndCompilationWithStats() argument 50 statsList_.push_back(Entry {PandaString(methodName, internalAllocator_->Adapter()), isOsr, bcSize, codeSize, time}); in EndCompilationWithStats() 66 csv << i.bcSize << sep; in DumpCsv() 76 size_t bcSize; member 85 [[maybe_unused]] auto [methodName, isOsr, bcSize, address, codeSize, infoSize, status] = args; in EndCompilation() 86 EVENT_COMPILATION(methodName, isOsr, bcSize, address, codeSize, infoSize, status); in EndCompilation() 89 jitStats->EndCompilationWithStats(methodName, isOsr, bcSize, codeSize); in EndCompilation()
|
/arkcompiler/ets_runtime/ecmascript/ic/ |
H A D | invoke_cache.cpp | 164 uint32_t bcSize = method->GetCodeSize(); in DecideCanBeInlined() local 165 return (bcSize > 0 && bcSize < MAX_INLINED_BYTECODE_SIZE); // 0 is invalid in DecideCanBeInlined()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | ts_inline_lowering.h | 85 bool IsSmallMethod(size_t bcSize) const in IsSmallMethod() 87 return bcSize <= maxInlineBytecodesCount_; in IsSmallMethod()
|
H A D | frame_states.cpp | 169 auto bcSize = bcBuilder_->GetLastBcIndex() + 1; // 1: +1 pcOffsets size in DoBytecodeAnalysis() local 171 bcEndStateLiveouts_.resize(bcSize, nullptr); in DoBytecodeAnalysis()
|
Completed in 6 milliseconds