Home
last modified time | relevance | path

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

/art/compiler/
Dcompiled_method.cc70 size_t CompiledCode::CodeDelta() const { in CodeDelta() function in art::CompiledCode
71 return CodeDelta(instruction_set_); in CodeDelta()
74 size_t CompiledCode::CodeDelta(InstructionSet instruction_set) { in CodeDelta() function in art::CompiledCode
Dcompiled_method.h62 size_t CodeDelta() const;
63 static size_t CodeDelta(InstructionSet instruction_set);
Delf_writer_quick.cc278 low_pc += it->compiled_method_->CodeDelta(); in WriteDebugSymbols()
Doat_writer.cc380 uint32_t thumb_offset = compiled_method->CodeDelta(); in VisitMethod()
719 offset_ + sizeof(OatQuickMethodHeader) + compiled_method->CodeDelta()) in VisitMethod()
1081 adjusted_offset = offset + CompiledCode::CodeDelta(instruction_set); \ in InitOatCode()
/art/compiler/linker/
Drelative_patcher_test.h94 uint32_t quick_code_offset = offset + compiled_method->CodeDelta(); in Link()
135 result.first ? result.second : kTrampolineOffset + compiled_method->CodeDelta(); in Link()
170 size_t offset = result.second - compiled_methods_[idx]->CodeDelta(); in CheckLinkedMethod()
/art/compiler/linker/arm/
Drelative_patcher_arm_base.cc162 uint32_t target_offset = result.second - CompiledCode::CodeDelta(instruction_set_); in ReserveSpaceProcessPatches()
/art/compiler/jit/
Djit_compiler.cc251 const size_t thumb_offset = compiled_method->CodeDelta(); in AddToCodeCache()