Home
last modified time | relevance | path

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

/art/compiler/
Dcompiled_method.cc57 size_t CompiledCode::CodeDelta() const { in CodeDelta() function in art::CompiledCode
58 return CodeDelta(GetInstructionSet()); in CodeDelta()
61 size_t CompiledCode::CodeDelta(InstructionSet instruction_set) { in CodeDelta() function in art::CompiledCode
Dcompiled_method.h63 size_t CodeDelta() const;
64 static size_t CodeDelta(InstructionSet instruction_set);
/art/dex2oat/linker/
Drelative_patcher_test.h135 uint32_t quick_code_offset = offset + compiled_method->CodeDelta(); in Link()
175 result.first ? result.second : kTrampolineOffset + compiled_method->CodeDelta(); in Link()
230 size_t offset = result.second - compiled_methods_[idx]->CodeDelta(); in CheckLinkedMethod()
Doat_writer.cc1329 uint32_t thumb_offset = compiled_method->CodeDelta(); in VisitMethod()
1760 offset_ + sizeof(OatQuickMethodHeader) + compiled_method->CodeDelta()) in VisitMethod()
2283 adjusted_offset = offset + CompiledCode::CodeDelta(instruction_set); \ in InitOatCode()
/art/compiler/debug/
Delf_symtab_writer.h156 address += CompiledMethod::CodeDelta(info.isa); in WriteDebugSymbols()
Delf_debug_writer.cc211 DCHECK_EQ(sym.st_value, method_info.code_address + CompiledMethod::CodeDelta(isa)); in MakeElfFileForJIT()
/art/dex2oat/linker/arm/
Drelative_patcher_arm_base.cc504 uint32_t target_offset = result.second - CompiledCode::CodeDelta(instruction_set_); in ResolveMethodCalls()
/art/oatdump/
Doatdump.cc193 code_offset -= CompiledCode::CodeDelta(oat_header.GetInstructionSet()); \ in Symbolize()