| /arkcompiler/ets_runtime/ecmascript/debugger/ |
| D | js_pt_method.h | 54 uint32_t GetCodeSize() const in GetCodeSize() function 65 return cda.GetCodeSize(); in GetCodeSize()
|
| D | js_debugger.cpp | 37 if (location.GetBytecodeOffset() >= ptMethod->GetCodeSize()) { in SetBreakpoint() 77 ASSERT(bcOffset < method->GetCodeSize() && "code size of current Method less then bcOffset"); in BytecodePcChanged()
|
| D | dropframe_manager.cpp | 77 uint32_t codeSize = method->GetCodeSize(); in MethodEntry()
|
| /arkcompiler/ets_runtime/ecmascript/jspandafile/ |
| D | method_literal.cpp | 42 uint32_t codeSize = cda.GetCodeSize(); in Initialize() 136 uint32_t MethodLiteral::GetCodeSize(const JSPandaFile *jsPandaFile, EntityId methodId) in GetCodeSize() function in panda::ecmascript::MethodLiteral 150 return cda.GetCodeSize(); in GetCodeSize()
|
| D | method_literal.h | 309 static uint32_t GetCodeSize(const JSPandaFile *jsPandaFile, EntityId methodId);
|
| /arkcompiler/runtime_core/libpandafile/ |
| D | code_data_accessor.h | 93 uint32_t GetCodeSize() const in GetCodeSize() function 134 uint32_t GetCodeSize() const in GetCodeSize() function
|
| D | file_reader.cpp | 665 std::vector<uint8_t> instructions(code_acc.GetCodeSize()); in CreateMethodItem() 667 …structions.assign(code_acc.GetInstructions(), code_acc.GetInstructions() + code_acc.GetCodeSize()); in CreateMethodItem() 686 catch_block.GetCodeSize())); in CreateMethodItem() 1287 while (offset < code_item->GetCodeSize()) { in UpdateCodeAndDebugInfoDependencies() 1385 while (offset < code_item->GetCodeSize()) { in ComputeLayoutAndUpdateIndices()
|
| D | file_item_container.cpp | 738 codesize += static_cast<CodeItem *>(item.get())->GetCodeSize(); in GetStat()
|
| D | file_items.cpp | 826 size_t CodeItem::GetCodeSize() const in GetCodeSize() function in panda::panda_file::CodeItem
|
| D | file_items.h | 1414 size_t GetCodeSize() const;
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | method.cpp | 45 uint32_t Method::GetCodeSize() const in GetCodeSize() function in panda::ecmascript::Method 48 return MethodLiteral::GetCodeSize(jsPandaFile, GetMethodId()); in GetCodeSize()
|
| D | method.h | 409 uint32_t GetCodeSize() const;
|
| /arkcompiler/ets_runtime/ecmascript/pgo_profiler/ |
| D | pgo_profiler_decoder.h | 92 … MethodLiteral::GetCodeSize(jsPandaFile, methodLiteral->GetMethodId())); in GetTypeInfo()
|
| D | pgo_profiler_info.cpp | 633 jsMethod->GetCodeSize()); in AddMethod()
|
| /arkcompiler/runtime_core/disassembler/templates/ |
| D | get_ins_info.cpp.erb | 29 auto ins_sz = code_accessor.GetCodeSize();
|
| /arkcompiler/ets_runtime/ecmascript/ic/ |
| D | invoke_cache.cpp | 163 uint32_t bcSize = method->GetCodeSize(); in DecideCanBeInlined()
|
| /arkcompiler/runtime_core/bytecode_optimizer/ |
| D | runtime_adapter.h | 100 return cda.GetCodeSize(); in GetMethodCodeSize()
|
| /arkcompiler/runtime_core/compiler/tests/amd64/ |
| D | encoder64_test.cpp | 221 auto size = callconv_->GetCodeSize() - curr_cursor_; in Dump() 238 auto size = callconv_->GetCodeSize() - curr_cursor_; in CallCode() 282 auto size = callconv_->GetCodeSize() - curr_cursor_; in CallCode() 325 auto size = callconv_->GetCodeSize() - curr_cursor_; in CallCode() 363 auto size = callconv_->GetCodeSize() - curr_cursor_; in CallCode() 401 auto size = callconv_->GetCodeSize() - curr_cursor_; in CallCodeStore() 414 auto size = callconv_->GetCodeSize() - curr_cursor_; in CallCodeCall() 2849 auto size = test->GetCallconv()->GetCodeSize() - test->GetCursor(); in TestParam()
|
| /arkcompiler/runtime_core/disassembler/ |
| D | disassembler.cpp | 481 const auto bc_ins_last = bc_ins.JumpTo(code_accessor.GetCodeSize()); in GetExceptions() 594 const auto handler_end_offset = handler_begin_offset + catch_block.GetCodeSize(); in LocateCatchBlock() 604 const bool handler_end_present = catch_block.GetCodeSize() != 0; in LocateCatchBlock() 1021 uint32_t code_size = codeda.GetCodeSize(); in GetMethodInfo() 1618 const auto ins_sz = code_accessor.GetCodeSize(); in GetInstructions()
|
| /arkcompiler/runtime_core/assembler/tests/ |
| D | emitter_test.cpp | 111 ASSERT_EQ(cdacc.GetCodeSize(), 1U); in TEST() 788 const auto ins_sz = cda_f.GetCodeSize(); in TEST()
|
| D | assembler_emitter_test.cpp | 151 EXPECT_EQ(cdacc.GetCodeSize(), 1U); in __anon9d5bb8020402()
|
| /arkcompiler/runtime_core/compiler/tests/aarch64/ |
| D | encoder64_test.cpp | 223 auto size = callconv_->GetCodeSize() - curr_cursor_; in Dump() 240 auto size = callconv_->GetCodeSize() - curr_cursor_; in CallCode() 284 auto size = callconv_->GetCodeSize() - curr_cursor_; in CallCode() 327 auto size = callconv_->GetCodeSize() - curr_cursor_; in CallCode() 365 auto size = callconv_->GetCodeSize() - curr_cursor_; in CallCode() 403 auto size = callconv_->GetCodeSize() - curr_cursor_; in CallCodeStore() 416 auto size = callconv_->GetCodeSize() - curr_cursor_; in CallCodeCall() 2970 auto size = test->GetCallconv()->GetCodeSize() - test->GetCursor(); in TestParam()
|
| /arkcompiler/runtime_core/compiler/tests/aarch32/ |
| D | encoder32_test.cpp | 277 auto size = callconv_->GetCodeSize() - curr_cursor_; in Dump() 340 auto size = callconv_->GetCodeSize() - curr_cursor_; in CallCodeVariadicImpl() 389 auto size = callconv_->GetCodeSize() - curr_cursor_; in CallCodeStore() 402 auto size = callconv_->GetCodeSize() - curr_cursor_; in CallCodeCall() 2876 auto size = test->GetCallconv()->GetCodeSize(); in TestParam()
|
| /arkcompiler/runtime_core/libpandafile/tests/ |
| D | file_item_container_test.cpp | 452 EXPECT_EQ(code_data_accessor.GetCodeSize(), instructions.size()); in __anon1a961e180b02() 454 code_data_accessor.GetCodeSize())); in __anon1a961e180b02()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | bytecode_info_collector.cpp | 115 uint32_t codeSize = codeDataAccessor.GetCodeSize(); in ProcessClasses()
|