/arkcompiler/runtime_core/libpandabase/mem/ |
H A D | mem_config.h | 30 static void Initialize(size_t object_pool_size, size_t internal_size, size_t compiler_size, size_t code_size, in Initialize() argument 38 code_cache_size_limit = code_size; in Initialize() 42 static void Initialize(size_t object_pool_size, size_t internal_size, size_t compiler_size, size_t code_size) in Initialize() argument 44 Initialize(object_pool_size, internal_size, compiler_size, code_size, object_pool_size); in Initialize()
|
/arkcompiler/runtime_core/compiler/tests/x86/ |
H A D | asmjit_test.cpp | 136 size_t code_size = code.codeSize(); in TEST_F() local 138 code.copyFlattenedData(rw_ptr, code_size, CodeHolder::kCopyPadSectionBuffer); in TEST_F()
|
/arkcompiler/runtime_core/static_core/compiler/tests/x86/ |
H A D | asmjit_test.cpp | 135 size_t code_size = code.codeSize(); in TEST_F() local 137 code.copyFlattenedData(rw_ptr, code_size, CodeHolder::kCopyPadSectionBuffer); in TEST_F()
|
/arkcompiler/runtime_core/static_core/irtoc/lang/ |
H A D | validation.rb | 37 code_size_number = self.code_size.to_i
|
/arkcompiler/runtime_core/libpandabase/tests/ |
H A D | mmap_mem_pool_test.cpp | 39 size_t code_size = 0) in CreateMMapMemPool() 42 SetupMemConfig(object_pool_size, internal_size, compiler_size, code_size); in CreateMMapMemPool() 48 void SetupMemConfig(size_t object_pool_size, size_t internal_size, size_t compiler_size, size_t code_size) in SetupMemConfig() argument 50 mem::MemConfig::Initialize(object_pool_size, internal_size, compiler_size, code_size); in SetupMemConfig()
|
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/ |
H A D | result.py | 132 code_size: int 139 for method, is_osr, bc_size, code_size, time in csv.reader( 144 int(code_size), 215 f'{self.code_size:.2e} | ' \ 220 def code_size(self) -> int: member in TestResult
|
H A D | report.py | 137 size_diff = diff_str(t1.code_size, t2.code_size) 144 sizes1.append(t1.code_size) 145 sizes2.append(t2.code_size) 196 sizes.append(t.code_size) 237 f"{t.mem_bytes},{t.compile_time},{t.code_size}\n")
|
/arkcompiler/runtime_core/compiler/tests/amd64/ |
H A D | asmjit_test.cpp | 209 size_t code_size = code.codeSize(); in TEST_F() local 211 code.copyFlattenedData(rw_ptr, code_size, CodeHolder::kCopyPadSectionBuffer); in TEST_F()
|
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/tests/ |
H A D | test_unit.py | 71 test.assertTrue(0 == res.code_size)
|
/arkcompiler/runtime_core/verifier/tests/ |
H A D | verify_constant_pool_tests.cpp | 514 unsigned char code_size = 0x35; // The known code_size of the try block in the abc file in HWTEST_F() local 518 auto invalid_try_start_pc = try_start_pc + code_size; in HWTEST_F() 556 unsigned char code_size = 0x00; // The known code_size of the catch block in the abc file in HWTEST_F() local 557 unsigned char method_code_size = 0x35; // The known code_size of the method in the abc file in HWTEST_F() 560 if (buffer[i] == catch_type_idx && buffer[i + 1] == catch_handler_pc && buffer[i + 2] == code_size) { in HWTEST_F() 598 unsigned char method_code_size = 0x35; // The known code_size of the method in the abc file in HWTEST_F()
|
/arkcompiler/runtime_core/compiler/tests/ |
H A D | code_info_test.cpp | 55 prefix->code_size = data.size(); in EmitCode()
|
/arkcompiler/runtime_core/libpandafile/ |
H A D | file_items.h | 1339 CatchBlock(MethodItem *method, BaseClassItem *type, size_t handler_pc, size_t code_size = 0) in CatchBlock() 1340 : method_(method), type_(type), handler_pc_(handler_pc), code_size_(code_size) in CatchBlock()
|
/arkcompiler/runtime_core/disassembler/ |
H A D | disassembler.cpp | 1361 uint32_t code_size = codeda.GetCodeSize(); in GetMethodInfo() local 1363 panda_file::LocalVariableInfo arg_info {info.name, info.signature, "", arg_idx++, 0, code_size}; in GetMethodInfo()
|