Home
last modified time | relevance | path

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

/art/runtime/
Doat_quick_method_header.h138 uintptr_t code_start = reinterpret_cast<uintptr_t>(code_); in Contains() local
142 code_start++; in Contains()
144 return code_start <= pc && pc <= (code_start + GetCodeSize()); in Contains()
Dstack.cc627 uintptr_t code_start = reinterpret_cast<uintptr_t>(code); in AssertPcIsWithinQuickCode() local
628 CHECK(code_start <= pc && pc <= (code_start + code_size)) in AssertPcIsWithinQuickCode()
631 << " code_start=" << code_start in AssertPcIsWithinQuickCode()
/art/compiler/
Dcommon_compiler_test.cc107 void CommonCompilerTest::MakeExecutable(const void* code_start, size_t code_length) { in MakeExecutable() argument
108 CHECK(code_start != nullptr); in MakeExecutable()
110 uintptr_t data = reinterpret_cast<uintptr_t>(code_start); in MakeExecutable()
Dcommon_compiler_test.h51 static void MakeExecutable(const void* code_start, size_t code_length);
/art/compiler/optimizing/
Dcode_generator.cc360 size_t code_start = 0; in GenerateSlowPaths() local
365 code_start = GetAssembler()->CodeSize(); in GenerateSlowPaths()
371 disasm_info_->AddSlowPathInterval(slow_path, code_start, GetAssembler()->CodeSize()); in GenerateSlowPaths()