Home
last modified time | relevance | path

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

/art/compiler/
Dcompiled_method.cc24 CompiledCode::CompiledCode(CompiledMethodStorage* storage, in CompiledCode() function in art::CompiledCode
32 CompiledCode::~CompiledCode() { in ~CompiledCode()
36 bool CompiledCode::operator==(const CompiledCode& rhs) const { in operator ==()
49 size_t CompiledCode::AlignCode(size_t offset) const { in AlignCode()
53 size_t CompiledCode::AlignCode(size_t offset, InstructionSet instruction_set) { in AlignCode()
57 size_t CompiledCode::CodeDelta() const { in CodeDelta()
61 size_t CompiledCode::CodeDelta(InstructionSet instruction_set) { in CodeDelta()
80 const void* CompiledCode::CodePointer(const void* code_pointer, InstructionSet instruction_set) { in CodePointer()
107 : CompiledCode(storage, instruction_set, quick_code), in CompiledMethod()
Dcompiled_method.h38 class CompiledCode {
41 CompiledCode(CompiledMethodStorage* storage,
45 virtual ~CompiledCode();
53 bool operator==(const CompiledCode& rhs) const;
106 class CompiledMethod final : public CompiledCode {
152 static_assert(kNumberOfCompiledMethodPackedBits <= CompiledCode::kMaxNumberOfPackedBits,
Dcompiled_method-inl.h28 inline ArrayRef<const uint8_t> CompiledCode::GetQuickCode() const { in GetQuickCode()
33 inline ArrayRef<const T> CompiledCode::GetArray(const LengthPrefixedArray<T>* array) { in GetArray()
/art/dex2oat/linker/arm/
Drelative_patcher_arm_base.cc183 uint32_t thunk_offset = CompiledCode::AlignCode(offset, instruction_set_); in ReserveSpaceEnd()
318 uint32_t thunk_offset = CompiledCode::AlignCode(offset, instruction_set_); in ReserveSpaceInternal()
491 uint32_t target_offset = result.second - CompiledCode::CodeDelta(instruction_set_); in ResolveMethodCalls()
Drelative_patcher_thumb2_test.cc194 CompiledCode::AlignCode(gap_end, InstructionSet::kThumb2) + MethodCallThunkSize(); in Create2MethodsWithGap()
485 uint32_t thunk_offset = CompiledCode::AlignCode( in TEST_F()
613 uint32_t thunk_offset = CompiledCode::AlignCode( in TEST_F()
/art/dex2oat/linker/arm64/
Drelative_patcher_arm64_test.cc161 CompiledCode::AlignCode(gap_end, InstructionSet::kArm64) + MethodCallThunkSize(); in Create2MethodsWithGap()
393 CompiledCode::AlignCode(method1_offset + method1_size, InstructionSet::kArm64); in TestNopsAdrpInsn2AndUseHasThunk()
654 CompiledCode::AlignCode(last_method_offset + last_method_code.size(), InstructionSet::kArm64); in TEST_F()
782 CompiledCode::AlignCode(last_method_offset + last_method_code.size(), InstructionSet::kArm64); in TEST_F()
/art/dex2oat/linker/
Doat_writer.cc2197 offset = CompiledCode::AlignCode(offset, instruction_set); \ in InitOatCode()
2198 adjusted_offset = offset + CompiledCode::CodeDelta(instruction_set); \ in InitOatCode()
3073 uint32_t aligned_offset = CompiledCode::AlignCode(relative_offset, instruction_set); \ in WriteCode()
/art/oatdump/
Doatdump.cc197 code_offset -= CompiledCode::CodeDelta(oat_header.GetInstructionSet()); \ in Symbolize()