Home
last modified time | relevance | path

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

/art/runtime/jit/
Ddebugger_interface.h50 const void* code_ptr,
57 void RemoveNativeDebugInfoForJit(Thread* self, const void* code_ptr);
Ddebugger_interface.cc362 const void* code_ptr, in AddNativeDebugInfoForJit() argument
380 << " for " << code_ptr in AddNativeDebugInfoForJit()
386 if (code_ptr != nullptr) { in AddNativeDebugInfoForJit()
387 g_jit_debug_entries.emplace(code_ptr, entry); in AddNativeDebugInfoForJit()
394 void RemoveNativeDebugInfoForJit(Thread* self, const void* code_ptr) { in RemoveNativeDebugInfoForJit() argument
399 g_jit_removed_entries.push_back(code_ptr); in RemoveNativeDebugInfoForJit()
Djit_code_cache.h342 void FreeCodeAndData(const void* code_ptr) REQUIRES(lock_);
/art/compiler/
Dexception_test.cc92 uint8_t* code_ptr = in SetUp() local
96 OatQuickMethodHeader method_header(code_ptr - fake_header_code_and_maps_.data(), code_size); in SetUp()
98 memcpy(code_ptr - header_size, &method_header, header_size); in SetUp()
99 memcpy(code_ptr, fake_code_.data(), fake_code_.size()); in SetUp()
103 CHECK_ALIGNED(code_ptr, 2); in SetUp()
109 method_f_->SetEntryPointFromQuickCompiledCode(code_ptr); in SetUp()
114 method_g_->SetEntryPointFromQuickCompiledCode(code_ptr); in SetUp()
Dcommon_compiler_test.cc78 const void* code_ptr = reinterpret_cast<const uint8_t*>(unaligned_code_ptr) + padding; in MakeExecutable() local
79 CHECK_EQ(code_ptr, static_cast<const void*>(chunk->data() + (chunk->size() - code_size))); in MakeExecutable()
80 MakeExecutable(code_ptr, code.size()); in MakeExecutable()
81 const void* method_code = CompiledMethod::CodePointer(code_ptr, in MakeExecutable()
/art/runtime/
Doat_quick_method_header.h40 static OatQuickMethodHeader* FromCodePointer(const void* code_ptr) { in FromCodePointer() argument
41 uintptr_t code = reinterpret_cast<uintptr_t>(code_ptr); in FromCodePointer()
/art/compiler/debug/
Delf_debug_writer.cc240 const void* code_ptr = reinterpret_cast<const void*>(addr); in PackElfFileForJIT() local
241 return std::binary_search(removed_symbols.begin(), removed_symbols.end(), code_ptr); in PackElfFileForJIT()
/art/dex2oat/linker/
Doat_writer.cc1529 const void* code_ptr = in StartClass() local
1531 if (code_ptr == nullptr) { in StartClass()
1535 code_ptr, pointer_size_); in StartClass()
1608 const void* code_ptr = in Postprocess() local
1610 if (code_ptr != nullptr) { in Postprocess()
1611 method->SetEntryPointFromQuickCompiledCodePtrSize(code_ptr, pointer_size_); in Postprocess()