/art/dex2oat/linker/arm64/ |
D | relative_patcher_arm64.cc | 103 const CompiledMethod* compiled_method, in ReserveSpace() argument 107 return ReserveSpaceInternal(offset, compiled_method, method_ref, 0u); in ReserveSpace() 121 DCHECK(compiled_method != nullptr); in ReserveSpace() 122 for (const LinkerPatch& patch : compiled_method->GetPatches()) { in ReserveSpace() 127 ArrayRef<const uint8_t> code = compiled_method->GetQuickCode(); in ReserveSpace() 129 offset = ReserveSpaceInternal(offset, compiled_method, method_ref, max_extra_space); in ReserveSpace() 136 uint32_t quick_code_offset = compiled_method->AlignCode(offset + sizeof(OatQuickMethodHeader)); in ReserveSpace() 137 uint32_t thunk_offset = compiled_method->AlignCode(quick_code_offset + code.size()); in ReserveSpace() 138 DCHECK(compiled_method != nullptr); in ReserveSpace() 139 for (const LinkerPatch& patch : compiled_method->GetPatches()) { in ReserveSpace()
|
D | relative_patcher_arm64.h | 38 const CompiledMethod* compiled_method,
|
/art/dex2oat/linker/ |
D | relative_patcher_test.h | 128 for (auto& compiled_method : compiled_methods_) { in Link() 129 offset = patcher_->ReserveSpace(offset, compiled_method.get(), compiled_method_refs_[idx]); in Link() 135 uint32_t quick_code_offset = offset + compiled_method->GetEntryPointAdjustment(); in Link() 136 const auto code = compiled_method->GetQuickCode(); in Link() 157 for (auto& compiled_method : compiled_methods_) { in Link() 167 ArrayRef<const uint8_t> code = compiled_method->GetQuickCode(); in Link() 168 if (!compiled_method->GetPatches().empty()) { in Link() 171 for (const LinkerPatch& patch : compiled_method->GetPatches()) { in Link() 176 : kTrampolineOffset + compiled_method->GetEntryPointAdjustment(); in Link()
|
D | oat_writer.cc | 107 inline uint32_t CodeAlignmentSize(uint32_t header_offset, const CompiledMethod& compiled_method) { in CodeAlignmentSize() argument 110 uint32_t aligned_code_offset = compiled_method.AlignCode(unaligned_code_offset); in CodeAlignmentSize() 775 CompiledMethod* compiled_method = writer_->compiler_driver_->GetCompiledMethod( in VisitMethod() local 777 if (HasCompiledCode(compiled_method)) { in VisitMethod() 778 for (const LinkerPatch& patch : compiled_method->GetPatches()) { in VisitMethod() 815 DCHECK(compiled_method == nullptr || compiled_method->GetPatches().empty()); in VisitMethod() 873 CompiledMethod* compiled_method = in VisitMethod() local 875 compiled_methods_.push_back(compiled_method); in VisitMethod() 876 if (HasCompiledCode(compiled_method)) { in VisitMethod() 952 CompiledMethod* compiled_method; member [all …]
|
D | multi_oat_relative_patcher.h | 71 const CompiledMethod* compiled_method, in ReserveSpace() argument 74 offset = relative_patcher_->ReserveSpace(offset, compiled_method, method_ref); in ReserveSpace()
|
D | relative_patcher.h | 115 const CompiledMethod* compiled_method,
|
D | relative_patcher.cc | 47 const CompiledMethod* compiled_method ATTRIBUTE_UNUSED, in Create()
|
D | oat_writer_test.cc | 65 const CompiledMethod* compiled_method = in CheckMethod() local 69 if (compiled_method == nullptr) { in CheckMethod() 80 ArrayRef<const uint8_t> quick_code = compiled_method->GetQuickCode(); in CheckMethod()
|
D | multi_oat_relative_patcher_test.cc | 37 const CompiledMethod* compiled_method ATTRIBUTE_UNUSED, in ReserveSpace()
|
/art/dex2oat/linker/arm/ |
D | relative_patcher_arm_base.h | 33 const CompiledMethod* compiled_method, 92 const CompiledMethod* compiled_method, 106 void ProcessPatches(const CompiledMethod* compiled_method, uint32_t code_offset);
|
D | relative_patcher_arm_base.cc | 169 const CompiledMethod* compiled_method, in ReserveSpace() argument 171 return ReserveSpaceInternal(offset, compiled_method, method_ref, 0u); in ReserveSpace() 292 const CompiledMethod* compiled_method, in ReserveSpaceInternal() argument 296 uint32_t max_code_size = compiled_method->GetQuickCode().size() + max_extra_space; in ReserveSpaceInternal() 300 code_offset = compiled_method->AlignCode(offset + sizeof(OatQuickMethodHeader)); in ReserveSpaceInternal() 301 next_aligned_offset = compiled_method->AlignCode(code_offset + max_code_size); in ReserveSpaceInternal() 334 ProcessPatches(compiled_method, code_offset); in ReserveSpaceInternal() 403 void ArmBaseRelativePatcher::ProcessPatches(const CompiledMethod* compiled_method, in ProcessPatches() argument 405 for (const LinkerPatch& patch : compiled_method->GetPatches()) { in ProcessPatches()
|
/art/compiler/ |
D | common_compiler_test.cc | 274 CompiledMethod* compiled_method = nullptr; in CompileMethod() local 286 compiled_method = compiler->JniCompile(method->GetAccessFlags(), in CompileMethod() 291 compiled_method = compiler->Compile(method->GetCodeItem(), in CompileMethod() 300 CHECK(compiled_method != nullptr) << "Failed to compile " << method->PrettyMethod(); in CompileMethod() 301 CHECK_EQ(reinterpret_cast<OneCompiledMethodStorage*>(compiled_method), &storage); in CompileMethod()
|
/art/dex2oat/driver/ |
D | compiler_driver_test.cc | 87 const CompiledMethod* compiled_method = compiler_driver_->GetCompiledMethod(method_ref); in MakeExecutable() local 89 if (compiled_method != nullptr && compiled_method->GetQuickCode().size() != 0u) { in MakeExecutable() 90 method_code = CommonCompilerTest::MakeExecutable(compiled_method->GetQuickCode(), in MakeExecutable() 91 compiled_method->GetVmapTable(), in MakeExecutable() 92 compiled_method->GetInstructionSet()); in MakeExecutable()
|
D | compiled_method_storage.cc | 263 CompiledMethod* compiled_method = CompiledMethod::SwapAllocCompiledMethod( in CreateCompiledMethod() local 266 compiled_method->MarkAsIntrinsic(); in CreateCompiledMethod() 268 return compiled_method; in CreateCompiledMethod()
|
D | compiler_driver.cc | 382 CompiledMethod* compiled_method; in CompileMethodHarness() local 386 compiled_method = compile_fn(self, in CompileMethodHarness() 405 if (compiled_method != nullptr) { in CompileMethodHarness() 406 driver->AddCompiledMethod(method_ref, compiled_method); in CompileMethodHarness() 474 CompiledMethod* compiled_method = nullptr; in CompileMethodQuick() local 487 compiled_method = driver->GetCompiler()->JniCompile( in CompileMethodQuick() 489 CHECK(compiled_method != nullptr); in CompileMethodQuick() 512 compiled_method = driver->GetCompiler()->Compile(code_item, in CompileMethodQuick() 523 bool violation = (compiled_method == nullptr); in CompileMethodQuick() 544 return compiled_method; in CompileMethodQuick() [all …]
|
D | compiler_driver.h | 141 void AddCompiledMethod(const MethodReference& method_ref, CompiledMethod* const compiled_method);
|
/art/dex2oat/linker/x86/ |
D | relative_patcher_x86_base.h | 28 const CompiledMethod* compiled_method,
|
D | relative_patcher_x86_base.cc | 26 const CompiledMethod* compiled_method ATTRIBUTE_UNUSED, in ReserveSpace()
|
/art/tools/bisection_search/ |
D | bisection_search.py | 143 def GetAllPassesForMethod(self, compiled_method): argument 155 cmd = self._PrepareCmd(compiled_methods=[compiled_method])
|
/art/compiler/optimizing/ |
D | optimizing_compiler.cc | 730 CompiledMethod* compiled_method = storage->CreateCompiledMethod( in Emit() local 747 return compiled_method; in Emit() 1035 CompiledMethod* compiled_method = nullptr; in Compile() local 1096 compiled_method = Emit(&allocator, in Compile() 1125 DCHECK_IMPLIES(compiled_method == nullptr, !shouldCompile) << "Didn't compile " << method_name; in Compile() 1128 return compiled_method; in Compile()
|
/art/dex2oat/ |
D | Android.bp | 33 "driver/compiled_method.cc",
|