Searched refs:patches_ (Results 1 – 7 of 7) sorted by relevance
/art/compiler/ |
D | compiled_method.h | 378 return ArrayRef<const LinkerPatch>(patches_); in GetPatches() 403 const SwapVector<LinkerPatch> patches_; variable
|
D | compiled_method.cc | 140 patches_(patches.begin(), patches.end(), driver->GetSwapSpaceAllocator()) { in CompiledMethod()
|
/art/compiler/dex/quick/ |
D | codegen_util.cc | 502 patches_.push_back(LinkerPatch::CodePatch(code_buffer_.size(), in InstallLiteralPools() 511 patches_.push_back(LinkerPatch::MethodPatch(code_buffer_.size(), in InstallLiteralPools() 521 patches_.push_back(LinkerPatch::TypePatch(code_buffer_.size(), in InstallLiteralPools() 1058 patches_(mir_graph->GetArena()->Adapter()), in Mir2Lir() 1156 std::sort(patches_.begin(), patches_.end(), [](const LinkerPatch& lhs, const LinkerPatch& rhs) { in GetCompiledMethod() 1169 ArrayRef<const LinkerPatch>(patches_)); in GetCompiledMethod()
|
D | mir_to_lir.h | 1822 ArenaVector<LinkerPatch> patches_; variable
|
/art/compiler/dex/quick/arm64/ |
D | target_arm64.cc | 849 patches_.reserve(call_method_insns_.size() + dex_cache_access_insns_.size()); in InstallLiteralPools() 856 patches_.push_back(LinkerPatch::RelativeCodePatch(p->offset, in InstallLiteralPools() 870 patches_.push_back(LinkerPatch::DexCacheArrayPatch(p->offset, dex_file, adrp->offset, offset)); in InstallLiteralPools()
|
/art/compiler/dex/quick/arm/ |
D | target_arm.cc | 906 patches_.reserve(call_method_insns_.size() + dex_cache_access_insns_.size()); in InstallLiteralPools() 913 patches_.push_back(LinkerPatch::RelativeCodePatch(p->offset, in InstallLiteralPools() 926 patches_.push_back(LinkerPatch::DexCacheArrayPatch(p->offset, in InstallLiteralPools()
|
/art/compiler/dex/quick/x86/ |
D | target_x86.cc | 1065 patches_.reserve(method_address_insns_.size() + class_type_address_insns_.size() + in InstallLiteralPools() 1076 patches_.push_back(LinkerPatch::MethodPatch(patch_offset, in InstallLiteralPools() 1089 patches_.push_back(LinkerPatch::TypePatch(patch_offset, in InstallLiteralPools() 1101 patches_.push_back(LinkerPatch::RelativeCodePatch(patch_offset, in InstallLiteralPools() 1113 patches_.push_back(LinkerPatch::DexCacheArrayPatch(patch_offset, dex_file, in InstallLiteralPools()
|