Home
last modified time | relevance | path

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

/art/dex2oat/driver/
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::GetEntryPointAdjustment() const { in GetEntryPointAdjustment()
67 : 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;
100 class CompiledMethod final : public CompiledCode {
146 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()
Drelative_patcher_thumb2_test.cc194 CompiledCode::AlignCode(gap_end, InstructionSet::kThumb2) + MethodCallThunkSize(); in Create2MethodsWithGap()
507 uint32_t thunk_offset = CompiledCode::AlignCode( in TEST_F()
636 uint32_t thunk_offset = CompiledCode::AlignCode( in TEST_F()
697 uint32_t thunk_offset = CompiledCode::AlignCode(method_offset + kCallCode.size(), in TEST_F()
/art/dex2oat/linker/arm64/
Drelative_patcher_arm64_test.cc161 CompiledCode::AlignCode(gap_end, InstructionSet::kArm64) + MethodCallThunkSize(); in Create2MethodsWithGap()
400 CompiledCode::AlignCode(method1_offset + method1_size, InstructionSet::kArm64); in TestNopsAdrpInsn2AndUseHasThunk()
669 CompiledCode::AlignCode(last_method_offset + last_method_code.size(), InstructionSet::kArm64); in TEST_F()
799 CompiledCode::AlignCode(last_method_offset + last_method_code.size(), InstructionSet::kArm64); in TEST_F()
1034 uint32_t thunk_offset = CompiledCode::AlignCode(method_offset + kCallCode.size(), in TEST_F()
/art/dex2oat/linker/
Doat_writer.cc2275 offset = CompiledCode::AlignCode(offset + 4, instruction_set); \ in InitOatCode()
3129 uint32_t aligned_offset = CompiledCode::AlignCode(relative_offset + 4, instruction_set); \ in WriteCode()