/art/compiler/linker/arm/ |
relative_patcher_arm_base.cc | 19 #include "compiled_method.h" 28 const CompiledMethod* compiled_method, 30 return ReserveSpaceInternal(offset, compiled_method, method_ref, 0u); 91 const CompiledMethod* compiled_method, 94 uint32_t quick_code_size = compiled_method->GetQuickCode().size(); 95 uint32_t quick_code_offset = compiled_method->AlignCode(offset) + sizeof(OatQuickMethodHeader); 96 uint32_t next_aligned_offset = compiled_method->AlignCode(quick_code_offset + quick_code_size); 98 next_aligned_offset = compiled_method->AlignCode(next_aligned_offset + max_extra_space); 109 uint32_t thunk_location = compiled_method->AlignCode(offset); 114 for (const LinkerPatch& patch : compiled_method->GetPatches()) [all...] |
relative_patcher_arm_base.h | 31 const CompiledMethod* compiled_method, 44 const CompiledMethod* compiled_method,
|
/art/compiler/linker/x86/ |
relative_patcher_x86_base.h | 28 const CompiledMethod* compiled_method,
|
relative_patcher_x86_base.cc | 24 const CompiledMethod* compiled_method ATTRIBUTE_UNUSED,
|
/art/compiler/ |
common_compiler_test.cc | 23 #include "compiled_method.h" 47 const CompiledMethod* compiled_method = nullptr; local 51 compiled_method = 55 if (compiled_method != nullptr) { 56 ArrayRef<const uint8_t> code = compiled_method->GetQuickCode(); 59 ArrayRef<const uint8_t> vmap_table = compiled_method->GetVmapTable(); 63 compiled_method->GetFrameSizeInBytes(), 64 compiled_method->GetCoreSpillMask(), 65 compiled_method->GetFpSpillMask(), 70 const size_t max_padding = GetInstructionSetAlignment(compiled_method->GetInstructionSet()) [all...] |
oat_writer.cc | 31 #include "compiled_method.h" 627 CompiledMethod* compiled_method = 629 compiled_methods_.push_back(compiled_method); 630 if (compiled_method != nullptr) { 681 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index); 683 if (compiled_method != nullptr) { 687 ArrayRef<const uint8_t> quick_code = compiled_method->GetQuickCode(); 689 uint32_t thumb_offset = compiled_method->CodeDelta(); 700 quick_code_offset = NewQuickCodeOffset(compiled_method, it, thumb_offset); 705 compiled_method, [all...] |
oat_test.cc | 22 #include "compiled_method.h" 63 const CompiledMethod* compiled_method = local 67 if (compiled_method == nullptr) { 76 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), compiled_method->GetFrameSizeInBytes()); 77 EXPECT_EQ(oat_method.GetCoreSpillMask(), compiled_method->GetCoreSpillMask()); 78 EXPECT_EQ(oat_method.GetFpSpillMask(), compiled_method->GetFpSpillMask()); 81 ArrayRef<const uint8_t> quick_code = compiled_method->GetQuickCode(); [all...] |
Android.mk | 22 compiled_method.cc \ 153 compiled_method.h \
|
/art/compiler/linker/ |
relative_patcher_test.h | 23 #include "compiled_method.h" 106 for (auto& compiled_method : compiled_methods_) { 107 offset = patcher_->ReserveSpace(offset, compiled_method.get(), compiled_method_refs_[idx]); 109 uint32_t aligned_offset = compiled_method->AlignCode(offset); 114 uint32_t quick_code_offset = offset + compiled_method->CodeDelta(); 115 const auto code = compiled_method->GetQuickCode(); 136 for (auto& compiled_method : compiled_methods_) { 139 uint32_t aligned_offset = compiled_method->AlignCode(offset); 147 ArrayRef<const uint8_t> code = compiled_method->GetQuickCode(); 148 if (!compiled_method->GetPatches().empty()) [all...] |
multi_oat_relative_patcher.h | 69 const CompiledMethod* compiled_method, 72 offset = relative_patcher_->ReserveSpace(offset, compiled_method, method_ref);
|
relative_patcher.h | 87 const CompiledMethod* compiled_method,
|
relative_patcher.cc | 45 const CompiledMethod* compiled_method ATTRIBUTE_UNUSED,
|
multi_oat_relative_patcher_test.cc | 17 #include "compiled_method.h" 38 const CompiledMethod* compiled_method ATTRIBUTE_UNUSED,
|
/art/compiler/jit/ |
jit_compiler.h | 21 #include "compiled_method.h" 61 bool AddToCodeCache(ArtMethod* method, const CompiledMethod* compiled_method)
|
/art/compiler/linker/arm64/ |
relative_patcher_arm64.cc | 21 #include "compiled_method.h" 56 const CompiledMethod* compiled_method, 60 return ReserveSpaceInternal(offset, compiled_method, method_ref, 0u); 73 DCHECK(compiled_method != nullptr); 74 for (const LinkerPatch& patch : compiled_method->GetPatches()) { 79 offset = ReserveSpaceInternal(offset, compiled_method, method_ref, kAdrpThunkSize * num_adrp); 86 uint32_t quick_code_offset = compiled_method->AlignCode(offset) + sizeof(OatQuickMethodHeader); 87 ArrayRef<const uint8_t> code = compiled_method->GetQuickCode(); 88 uint32_t thunk_offset = compiled_method->AlignCode(quick_code_offset + code.size()); 89 DCHECK(compiled_method != nullptr) [all...] |
relative_patcher_arm64.h | 32 const CompiledMethod* compiled_method,
|
/art/compiler/driver/ |
compiler_driver.cc | 36 #include "compiled_method.h" 574 CompiledMethod* compiled_method = nullptr; variable 587 compiled_method = optimizer::ArtCompileDEX( 606 compiled_method = driver->GetCompiler()->JniCompile(access_flags, method_idx, dex_file); 607 CHECK(compiled_method != nullptr); 630 compiled_method = driver->GetCompiler()->Compile(code_item, access_flags, invoke_type, 634 if (compiled_method == nullptr && 649 if (compiled_method != nullptr) { 652 for (const LinkerPatch& patch : compiled_method->GetPatches()) { 661 driver->AddCompiledMethod(method_ref, compiled_method, non_relative_linker_patch_count) 2749 CompiledMethod* compiled_method = nullptr; local [all...] |
compiler_driver.h | 182 CompiledMethod* const compiled_method,
|
/art/compiler/optimizing/ |
optimizing_compiler.cc | 44 #include "compiled_method.h" 590 CompiledMethod* compiled_method = CompiledMethod::SwapAllocCompiledMethod( local 605 return compiled_method; [all...] |