Searched refs:code_ptr (Results 1 - 8 of 8) sorted by relevance
/art/runtime/jit/ |
H A D | profiling_info.cc | 33 const uint16_t* code_ptr = code_item.insns_; local 38 while (code_ptr < code_end) { 39 const Instruction& instruction = *Instruction::At(code_ptr); 54 code_ptr += instruction.SizeInCodeUnits();
|
H A D | jit_code_cache.cc | 244 void JitCodeCache::FreeCode(const void* code_ptr, ArtMethod* method ATTRIBUTE_UNUSED) { argument 245 uintptr_t allocation = FromCodeToAllocation(code_ptr); 246 const OatQuickMethodHeader* method_header = OatQuickMethodHeader::FromCodePointer(code_ptr); 249 DeleteJITCodeEntryForAddress(reinterpret_cast<uintptr_t>(code_ptr)); 322 uint8_t* code_ptr = nullptr; local 334 code_ptr = memory + header_size; 336 std::copy(code, code + code_size, code_ptr); 337 method_header = OatQuickMethodHeader::FromCodePointer(code_ptr); 339 (vmap_table == nullptr) ? 0 : code_ptr - vmap_table, 346 FlushInstructionCache(reinterpret_cast<char*>(code_ptr), 664 const void* code_ptr = it->first; local 709 const void* code_ptr = it.first; local 766 const void* code_ptr = it.first; local 796 const void* code_ptr = it->first; local [all...] |
H A D | jit_code_cache.h | 227 void FreeCode(const void* code_ptr, ArtMethod* method) REQUIRES(lock_);
|
/art/runtime/ |
H A D | oat_quick_method_header.h | 41 static OatQuickMethodHeader* FromCodePointer(const void* code_ptr) { argument 42 uintptr_t code = reinterpret_cast<uintptr_t>(code_ptr);
|
/art/compiler/ |
H A D | exception_test.cc | 93 const void* code_ptr = reinterpret_cast<const uint8_t*>(unaligned_code_ptr) + padding; local 94 CHECK_EQ(code_ptr, 105 method_f_->SetEntryPointFromQuickCompiledCode(code_ptr); 109 method_g_->SetEntryPointFromQuickCompiledCode(code_ptr);
|
H A D | common_compiler_test.cc | 84 const void* code_ptr = reinterpret_cast<const uint8_t*>(unaligned_code_ptr) + padding; local 85 CHECK_EQ(code_ptr, static_cast<const void*>(chunk->data() + (chunk->size() - code_size))); 86 MakeExecutable(code_ptr, code.size()); 87 const void* method_code = CompiledMethod::CodePointer(code_ptr,
|
/art/compiler/optimizing/ |
H A D | code_generator.cc | 662 const uint16_t* code_ptr = code_item.insns_; local 666 while (code_ptr < code_end) { 667 const Instruction& instruction = *Instruction::At(code_ptr); 684 code_ptr += instruction.SizeInCodeUnits();
|
/art/compiler/driver/ |
H A D | compiler_driver.cc | 792 const uint16_t* code_ptr = code_item->insns_; local 795 while (code_ptr < code_end) { 796 const Instruction* inst = Instruction::At(code_ptr); 813 code_ptr += inst->SizeInCodeUnits();
|
Completed in 108 milliseconds