Searched refs:CompiledCode (Results 1 – 8 of 8) sorted by relevance
/art/compiler/ |
D | compiled_method.cc | 24 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()
|
D | compiled_method.h | 38 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,
|
D | compiled_method-inl.h | 28 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/ |
D | relative_patcher_arm_base.cc | 183 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()
|
D | relative_patcher_thumb2_test.cc | 194 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/ |
D | relative_patcher_arm64_test.cc | 161 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/ |
D | oat_writer.cc | 2197 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/ |
D | oatdump.cc | 197 code_offset -= CompiledCode::CodeDelta(oat_header.GetInstructionSet()); \ in Symbolize()
|