Home
last modified time | relevance | path

Searched refs:patches_ (Results 1 – 7 of 7) sorted by relevance

/art/compiler/
Dcompiled_method.h378 return ArrayRef<const LinkerPatch>(patches_); in GetPatches()
403 const SwapVector<LinkerPatch> patches_; variable
Dcompiled_method.cc140 patches_(patches.begin(), patches.end(), driver->GetSwapSpaceAllocator()) { in CompiledMethod()
/art/compiler/dex/quick/
Dcodegen_util.cc502 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()
Dmir_to_lir.h1822 ArenaVector<LinkerPatch> patches_; variable
/art/compiler/dex/quick/arm64/
Dtarget_arm64.cc849 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/
Dtarget_arm.cc906 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/
Dtarget_x86.cc1065 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()