/art/compiler/dex/ |
dex_to_dex_decompiler_test.cc | 21 #include "compiler/compiled_method.h" 97 CompiledMethod* compiled_method = local 100 if (compiled_method != nullptr) { 101 table = compiled_method->GetVmapTable(); 109 CompiledMethod* compiled_method = local 112 if (compiled_method != nullptr) { 113 table = compiled_method->GetVmapTable();
|
/art/compiler/jit/ |
jit_compiler.h | 21 #include "compiled_method.h" 60 bool AddToCodeCache(ArtMethod* method, const CompiledMethod* compiled_method)
|
/art/compiler/ |
common_compiler_test.cc | 25 #include "compiled_method.h" 48 const CompiledMethod* compiled_method = nullptr; local 52 compiled_method = 57 if (compiled_method != nullptr && compiled_method->GetQuickCode().size() != 0u) { 58 ArrayRef<const uint8_t> code = compiled_method->GetQuickCode(); 60 ArrayRef<const uint8_t> vmap_table = compiled_method->GetVmapTable(); 64 ArrayRef<const uint8_t> method_info = compiled_method->GetMethodInfo(); 70 compiled_method->GetFrameSizeInBytes(), 71 compiled_method->GetCoreSpillMask() [all...] |
oat_writer.cc | 31 #include "compiled_method.h" 97 inline uint32_t CodeAlignmentSize(uint32_t header_offset, const CompiledMethod& compiled_method) { 100 uint32_t aligned_code_offset = compiled_method.AlignCode(unaligned_code_offset); 751 CompiledMethod* compiled_method = writer_->compiler_driver_->GetCompiledMethod( 753 if (HasCompiledCode(compiled_method)) { 754 for (const LinkerPatch& patch : compiled_method->GetPatches()) { 777 DCHECK(compiled_method == nullptr || compiled_method->GetPatches().empty()); 817 CompiledMethod* compiled_method = 819 compiled_methods_.push_back(compiled_method); [all...] |
oat_test.cc | 26 #include "compiled_method.h" 68 const CompiledMethod* compiled_method = local 72 if (compiled_method == nullptr) { 81 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), compiled_method->GetFrameSizeInBytes()); 82 EXPECT_EQ(oat_method.GetCoreSpillMask(), compiled_method->GetCoreSpillMask()); 83 EXPECT_EQ(oat_method.GetFpSpillMask(), compiled_method->GetFpSpillMask()); 86 ArrayRef<const uint8_t> quick_code = compiled_method->GetQuickCode(); [all...] |
compiled_method.cc | 17 #include "compiled_method.h"
|
/art/compiler/linker/ |
relative_patcher_test.h | 24 #include "compiled_method.h" 111 for (auto& compiled_method : compiled_methods_) { 112 offset = patcher_->ReserveSpace(offset, compiled_method.get(), compiled_method_refs_[idx]); 118 uint32_t quick_code_offset = offset + compiled_method->CodeDelta(); 119 const auto code = compiled_method->GetQuickCode(); 140 for (auto& compiled_method : compiled_methods_) { 150 ArrayRef<const uint8_t> code = compiled_method->GetQuickCode(); 151 if (!compiled_method->GetPatches().empty()) { 154 for (const LinkerPatch& patch : compiled_method->GetPatches()) { 158 result.first ? result.second : kTrampolineOffset + compiled_method->CodeDelta() [all...] |
multi_oat_relative_patcher.h | 69 const CompiledMethod* compiled_method, 72 offset = relative_patcher_->ReserveSpace(offset, compiled_method, method_ref);
|
relative_patcher.cc | 51 const CompiledMethod* compiled_method ATTRIBUTE_UNUSED,
|
relative_patcher.h | 87 const CompiledMethod* compiled_method,
|
multi_oat_relative_patcher_test.cc | 17 #include "compiled_method.h" 38 const CompiledMethod* compiled_method ATTRIBUTE_UNUSED,
|
/art/compiler/linker/arm/ |
relative_patcher_arm_base.h | 33 const CompiledMethod* compiled_method, 88 const CompiledMethod* compiled_method, 103 void ProcessPatches(const CompiledMethod* compiled_method, uint32_t code_offset);
|
relative_patcher_arm_base.cc | 20 #include "compiled_method.h" 141 const CompiledMethod* compiled_method, 143 return ReserveSpaceInternal(offset, compiled_method, method_ref, 0u); 221 const CompiledMethod* compiled_method, 225 uint32_t max_code_size = compiled_method->GetQuickCode().size() + max_extra_space; 229 code_offset = compiled_method->AlignCode(offset + sizeof(OatQuickMethodHeader)); 230 next_aligned_offset = compiled_method->AlignCode(code_offset + max_code_size); 263 ProcessPatches(compiled_method, code_offset); 326 void ArmBaseRelativePatcher::ProcessPatches(const CompiledMethod* compiled_method, 328 for (const LinkerPatch& patch : compiled_method->GetPatches()) [all...] |
/art/compiler/debug/ |
method_debug_info.h | 20 #include "compiled_method.h"
|
/art/compiler/linker/mips/ |
relative_patcher_mips.h | 32 const CompiledMethod* compiled_method,
|
relative_patcher_mips.cc | 19 #include "compiled_method.h" 26 const CompiledMethod* compiled_method ATTRIBUTE_UNUSED,
|
/art/compiler/linker/mips64/ |
relative_patcher_mips64.h | 30 const CompiledMethod* compiled_method,
|
relative_patcher_mips64.cc | 19 #include "compiled_method.h" 26 const CompiledMethod* compiled_method ATTRIBUTE_UNUSED,
|
/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,
|
relative_patcher_x86.cc | 19 #include "compiled_method.h"
|
/art/compiler/linker/x86_64/ |
relative_patcher_x86_64.cc | 19 #include "compiled_method.h"
|
/art/compiler/linker/arm64/ |
relative_patcher_arm64.cc | 23 #include "compiled_method.h" 94 const CompiledMethod* compiled_method, 98 return ReserveSpaceInternal(offset, compiled_method, method_ref, 0u); 111 DCHECK(compiled_method != nullptr); 112 for (const LinkerPatch& patch : compiled_method->GetPatches()) { 117 ArrayRef<const uint8_t> code = compiled_method->GetQuickCode(); 119 offset = ReserveSpaceInternal(offset, compiled_method, method_ref, max_extra_space); 126 uint32_t quick_code_offset = compiled_method->AlignCode(offset + sizeof(OatQuickMethodHeader)); 127 uint32_t thunk_offset = compiled_method->AlignCode(quick_code_offset + code.size()); 128 DCHECK(compiled_method != nullptr) [all...] |
relative_patcher_arm64.h | 61 const CompiledMethod* compiled_method,
|
/art/tools/bisection_search/ |
bisection_search.py | 145 def GetAllPassesForMethod(self, compiled_method): 149 compiled_method: string representing method to compile. 152 List of strings representing passes ran for compiled_method during test. 157 cmd = self._PrepareCmd(compiled_methods=[compiled_method])
|