Home
last modified time | relevance | path

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

/art/compiler/
Dcompiled_method.cc57 size_t CompiledCode::CodeDelta() const { in CodeDelta() function in art::CompiledCode
58 return CodeDelta(instruction_set_); 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);
Doat_writer.cc773 uint32_t thumb_offset = compiled_method->CodeDelta(); in VisitMethod()
1261 offset_ + sizeof(OatQuickMethodHeader) + compiled_method->CodeDelta()) in VisitMethod()
1582 map_offset = (code_offset - compiled_method->CodeDelta()) - map_offset; in VisitMethod()
1639 map_offset = (code_offset - compiled_method->CodeDelta()) - map_offset; in VisitMethod()
1791 adjusted_offset = offset + CompiledCode::CodeDelta(instruction_set); \ in InitOatCode()
/art/compiler/linker/
Drelative_patcher_test.h117 uint32_t quick_code_offset = offset + compiled_method->CodeDelta(); in Link()
157 result.first ? result.second : kTrampolineOffset + compiled_method->CodeDelta(); in Link()
206 size_t offset = result.second - compiled_methods_[idx]->CodeDelta(); in CheckLinkedMethod()
/art/compiler/debug/
Delf_symtab_writer.h85 address += CompiledMethod::CodeDelta(info.isa); in WriteDebugSymbols()
/art/compiler/linker/arm/
Drelative_patcher_arm_base.cc410 uint32_t target_offset = result.second - CompiledCode::CodeDelta(instruction_set_); in ResolveMethodCalls()