Searched refs:code_ptr (Results 1 - 8 of 8) sorted by relevance

/art/runtime/jit/
H A Dprofiling_info.cc33 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 Djit_code_cache.cc244 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 Djit_code_cache.h227 void FreeCode(const void* code_ptr, ArtMethod* method) REQUIRES(lock_);
/art/runtime/
H A Doat_quick_method_header.h41 static OatQuickMethodHeader* FromCodePointer(const void* code_ptr) { argument
42 uintptr_t code = reinterpret_cast<uintptr_t>(code_ptr);
/art/compiler/
H A Dexception_test.cc93 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 Dcommon_compiler_test.cc84 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 Dcode_generator.cc662 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 Dcompiler_driver.cc792 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