Searched defs:linker_patches (Results 1 - 6 of 6) sorted by relevance

/art/compiler/driver/
H A Dcompiled_method_storage.cc238 const ArrayRef<const LinkerPatch>& linker_patches) {
239 return AllocateOrDeduplicateArray(linker_patches, &dedupe_linker_patches_);
243 const LengthPrefixedArray<LinkerPatch>* linker_patches) {
244 ReleaseArrayIfNotDeduplicated(linker_patches);
237 DeduplicateLinkerPatches( const ArrayRef<const LinkerPatch>& linker_patches) argument
242 ReleaseLinkerPatches( const LengthPrefixedArray<LinkerPatch>* linker_patches) argument
/art/compiler/optimizing/
H A Dcode_generator_mips.cc1548 ArenaVector<LinkerPatch>* linker_patches) {
1559 linker_patches->push_back(Factory(high_offset, &dex_file, pc_rel_offset, offset_or_index));
1563 void CodeGeneratorMIPS::EmitLinkerPatches(ArenaVector<LinkerPatch>* linker_patches) { argument
1564 DCHECK(linker_patches->empty());
1572 linker_patches->reserve(size);
1574 linker_patches);
1578 linker_patches);
1581 linker_patches);
1583 linker_patches);
1586 linker_patches);
1546 EmitPcRelativeLinkerPatches( const ArenaDeque<PcRelativePatchInfo>& infos, ArenaVector<LinkerPatch>* linker_patches) argument
[all...]
H A Dcode_generator_mips64.cc1434 ArenaVector<LinkerPatch>* linker_patches) {
1440 linker_patches->push_back(Factory(pc_rel_offset, &dex_file, pc_rel_offset, offset_or_index));
1444 void CodeGeneratorMIPS64::EmitLinkerPatches(ArenaVector<LinkerPatch>* linker_patches) { argument
1445 DCHECK(linker_patches->empty());
1453 linker_patches->reserve(size);
1455 linker_patches);
1459 linker_patches);
1462 linker_patches);
1464 linker_patches);
1467 linker_patches);
1432 EmitPcRelativeLinkerPatches( const ArenaDeque<PcRelativePatchInfo>& infos, ArenaVector<LinkerPatch>* linker_patches) argument
[all...]
H A Doptimizing_compiler.cc832 ArenaVector<LinkerPatch> linker_patches(codegen->GetGraph()->GetArena()->Adapter());
833 codegen->EmitLinkerPatches(&linker_patches);
836 std::sort(linker_patches.begin(), linker_patches.end(),
841 return linker_patches;
849 ArenaVector<LinkerPatch> linker_patches = EmitAndSortLinkerPatches(codegen); local
874 ArrayRef<const LinkerPatch>(linker_patches));
H A Dcode_generator_x86.cc4685 ArenaVector<LinkerPatch>* linker_patches) {
4688 linker_patches->push_back(Factory(
4693 void CodeGeneratorX86::EmitLinkerPatches(ArenaVector<LinkerPatch>* linker_patches) { argument
4694 DCHECK(linker_patches->empty());
4700 linker_patches->reserve(size);
4702 linker_patches);
4705 EmitPcRelativeLinkerPatches<LinkerPatch::StringBssEntryPatch>(string_patches_, linker_patches);
4708 linker_patches);
4709 EmitPcRelativeLinkerPatches<LinkerPatch::RelativeStringPatch>(string_patches_, linker_patches);
4713 linker_patches
4683 EmitPcRelativeLinkerPatches( const ArenaDeque<X86PcRelativePatchInfo>& infos, ArenaVector<LinkerPatch>* linker_patches) argument
[all...]
H A Dcode_generator_x86_64.cc1119 ArenaVector<LinkerPatch>* linker_patches) {
1122 linker_patches->push_back(
1127 void CodeGeneratorX86_64::EmitLinkerPatches(ArenaVector<LinkerPatch>* linker_patches) { argument
1128 DCHECK(linker_patches->empty());
1134 linker_patches->reserve(size);
1136 linker_patches);
1139 EmitPcRelativeLinkerPatches<LinkerPatch::StringBssEntryPatch>(string_patches_, linker_patches);
1143 linker_patches);
1144 EmitPcRelativeLinkerPatches<LinkerPatch::RelativeStringPatch>(string_patches_, linker_patches);
1147 linker_patches);
1117 EmitPcRelativeLinkerPatches( const ArenaDeque<PatchInfo<Label>>& infos, ArenaVector<LinkerPatch>* linker_patches) argument
[all...]

Completed in 99 milliseconds