Searched defs:code_ptr (Results 1 - 7 of 7) sorted by path

/art/compiler/
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,
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);
/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();
/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/runtime/jit/
H A Djit_code_cache.cc245 void JitCodeCache::FreeCode(const void* code_ptr, ArtMethod* method ATTRIBUTE_UNUSED) { argument
246 uintptr_t allocation = FromCodeToAllocation(code_ptr);
247 const OatQuickMethodHeader* method_header = OatQuickMethodHeader::FromCodePointer(code_ptr);
250 DeleteJITCodeEntryForAddress(reinterpret_cast<uintptr_t>(code_ptr));
323 uint8_t* code_ptr = nullptr; local
335 code_ptr = memory + header_size;
337 std::copy(code, code + code_size, code_ptr);
338 method_header = OatQuickMethodHeader::FromCodePointer(code_ptr);
340 (vmap_table == nullptr) ? 0 : code_ptr - vmap_table,
351 FlushInstructionCache(reinterpret_cast<char*>(code_ptr),
671 const void* code_ptr = it->first; local
716 const void* code_ptr = it.first; local
776 const void* code_ptr = it.first; local
806 const void* code_ptr = it->first; local
[all...]
H A Dprofiling_info.cc56 const uint16_t* code_ptr = code_item.insns_; local
61 while (code_ptr < code_end) {
62 const Instruction& instruction = *Instruction::At(code_ptr);
77 code_ptr += instruction.SizeInCodeUnits();
/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);

Completed in 112 milliseconds