Home
last modified time | relevance | path

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

/art/runtime/
Doat_quick_method_header.h118 uintptr_t code_start = reinterpret_cast<uintptr_t>(HWASanUntag(code_)); in Contains() local
122 code_start++; in Contains()
124 return code_start <= pc && pc <= (code_start + GetCodeSize()); in Contains()
Dstack.cc708 uintptr_t code_start = reinterpret_cast<uintptr_t>(code); in AssertPcIsWithinQuickCode() local
709 CHECK(code_start <= pc && pc <= (code_start + code_size)) in AssertPcIsWithinQuickCode()
712 << " code_start=" << code_start in AssertPcIsWithinQuickCode()
/art/compiler/
Dcommon_compiler_test.cc103 void CommonCompilerTest::MakeExecutable(const void* code_start, size_t code_length) { in MakeExecutable() argument
104 CHECK(code_start != nullptr); in MakeExecutable()
106 uintptr_t data = reinterpret_cast<uintptr_t>(code_start); in MakeExecutable()
Dcommon_compiler_test.h56 static void MakeExecutable(const void* code_start, size_t code_length);
/art/compiler/optimizing/
Dcode_generator.cc355 size_t code_start = 0; in GenerateSlowPaths() local
360 code_start = GetAssembler()->CodeSize(); in GenerateSlowPaths()
366 disasm_info_->AddSlowPathInterval(slow_path, code_start, GetAssembler()->CodeSize()); in GenerateSlowPaths()