Home
last modified time | relevance | path

Searched refs:code_start (Results 1 – 5 of 5) sorted by relevance

/art/runtime/
Doat_quick_method_header.h104 uintptr_t code_start = reinterpret_cast<uintptr_t>(code_); in Contains() local
108 code_start++; in Contains()
110 return code_start <= pc && pc <= (code_start + GetCodeSize()); in Contains()
Dstack.cc610 uintptr_t code_start = reinterpret_cast<uintptr_t>(code); in AssertPcIsWithinQuickCode() local
611 CHECK(code_start <= pc && pc <= (code_start + code_size)) in AssertPcIsWithinQuickCode()
614 << " code_start=" << code_start in AssertPcIsWithinQuickCode()
/art/compiler/
Dcommon_compiler_test.cc92 void CommonCompilerTest::MakeExecutable(const void* code_start, size_t code_length) { in MakeExecutable() argument
93 CHECK(code_start != nullptr); in MakeExecutable()
95 uintptr_t data = reinterpret_cast<uintptr_t>(code_start); in MakeExecutable()
Dcommon_compiler_test.h53 static void MakeExecutable(const void* code_start, size_t code_length);
/art/compiler/optimizing/
Dcode_generator.cc361 size_t code_start = 0; in GenerateSlowPaths() local
366 code_start = GetAssembler()->CodeSize(); in GenerateSlowPaths()
372 disasm_info_->AddSlowPathInterval(slow_path, code_start, GetAssembler()->CodeSize()); in GenerateSlowPaths()