Home
last modified time | relevance | path

Searched refs:loc (Results 1 – 24 of 24) sorted by relevance

/art/compiler/optimizing/
Dparallel_move_resolver.cc243 bool ParallelMoveResolverWithSwap::IsScratchLocation(Location loc) { in IsScratchLocation() argument
245 if (move->Blocks(loc)) { in IsScratchLocation()
251 if (move->GetDestination().Equals(loc)) { in IsScratchLocation()
365 for (Location loc : scratches_) { in GetScratchLocation() local
366 if (loc.GetKind() == kind && !IsBlockedByMoves(loc)) { in GetScratchLocation()
367 return loc; in GetScratchLocation()
371 Location loc = move->GetDestination(); in GetScratchLocation() local
372 if (loc.GetKind() == kind && !IsBlockedByMoves(loc)) { in GetScratchLocation()
373 return loc; in GetScratchLocation()
379 void ParallelMoveResolverNoSwap::AddScratchLocation(Location loc) { in AddScratchLocation() argument
[all …]
Dlocations.h250 Location loc(kStackSlot, payload); in StackSlot()
252 DCHECK_EQ(loc.GetStackIndex(), stack_index); in StackSlot()
253 return loc; in StackSlot()
262 Location loc(kDoubleStackSlot, payload); in DoubleStackSlot()
264 DCHECK_EQ(loc.GetStackIndex(), stack_index); in DoubleStackSlot()
265 return loc; in DoubleStackSlot()
274 Location loc(kSIMDStackSlot, payload); in SIMDStackSlot()
276 DCHECK_EQ(loc.GetStackIndex(), stack_index); in SIMDStackSlot()
277 return loc; in SIMDStackSlot()
438 void Add(Location loc) { in Add() argument
[all …]
Dparallel_move_resolver.h82 bool IsScratchLocation(Location loc);
154 virtual void FreeScratchLocation(Location loc) = 0;
165 void AddScratchLocation(Location loc);
168 void RemoveScratchLocation(Location loc);
185 MoveOperands* GetUnblockedPendingMove(Location loc);
188 bool IsBlockedByMoves(Location loc);
Dcode_generator_x86.h222 void GenerateShlLong(const Location& loc, Register shifter);
223 void GenerateShrLong(const Location& loc, Register shifter);
224 void GenerateUShrLong(const Location& loc, Register shifter);
225 void GenerateShlLong(const Location& loc, int shift);
226 void GenerateShrLong(const Location& loc, int shift);
227 void GenerateUShrLong(const Location& loc, int shift);
Dregister_allocation_resolver.cc302 Location loc; in ConnectSiblings() local
304 case 1: loc = Location::StackSlot(interval->GetParent()->GetSpillSlot()); break; in ConnectSiblings()
305 case 2: loc = Location::DoubleStackSlot(interval->GetParent()->GetSpillSlot()); break; in ConnectSiblings()
306 case 4: loc = Location::SIMDStackSlot(interval->GetParent()->GetSpillSlot()); break; in ConnectSiblings()
309 InsertMoveAfter(interval->GetDefinedBy(), interval->ToLocation(), loc); in ConnectSiblings()
Dload_store_elimination.cc236 HeapLocation* loc = heap_locations_[i]; in FindHeapLocationIndex() local
237 if (loc->GetReferenceInfo() == ref_info && in FindHeapLocationIndex()
238 loc->GetOffset() == offset && in FindHeapLocationIndex()
239 loc->GetIndex() == index && in FindHeapLocationIndex()
240 loc->GetDeclaringClassDefIndex() == declaring_class_def_index) { in FindHeapLocationIndex()
Dcode_generator_x86.cc3980 void InstructionCodeGeneratorX86::GenerateShlLong(const Location& loc, int shift) { in GenerateShlLong() argument
3981 Register low = loc.AsRegisterPairLow<Register>(); in GenerateShlLong()
3982 Register high = loc.AsRegisterPairHigh<Register>(); in GenerateShlLong()
3990 loc.ToLow(), in GenerateShlLong()
3991 loc.ToHigh(), in GenerateShlLong()
3994 loc.ToLow(), in GenerateShlLong()
4008 void InstructionCodeGeneratorX86::GenerateShlLong(const Location& loc, Register shifter) { in GenerateShlLong() argument
4010 __ shld(loc.AsRegisterPairHigh<Register>(), loc.AsRegisterPairLow<Register>(), shifter); in GenerateShlLong()
4011 __ shll(loc.AsRegisterPairLow<Register>(), shifter); in GenerateShlLong()
4014 __ movl(loc.AsRegisterPairHigh<Register>(), loc.AsRegisterPairLow<Register>()); in GenerateShlLong()
[all …]
Dparallel_move_test.cc127 void FreeScratchLocation(Location loc ATTRIBUTE_UNUSED) OVERRIDE {} in FreeScratchLocation()
Dcode_generator_arm.h383 Location loc,
Dcode_generator_arm64.h376 void FreeScratchLocation(Location loc) OVERRIDE;
Dcode_generator_arm64.cc1514 void ParallelMoveResolverARM64::FreeScratchLocation(Location loc) { in FreeScratchLocation() argument
1515 if (loc.IsRegister()) { in FreeScratchLocation()
1516 vixl_temps_.Release(XRegisterFrom(loc)); in FreeScratchLocation()
1518 DCHECK(loc.IsFpuRegister()); in FreeScratchLocation()
1519 vixl_temps_.Release(codegen_->GetGraph()->HasSIMD() ? QRegisterFrom(loc) : DRegisterFrom(loc)); in FreeScratchLocation()
1521 RemoveScratchLocation(loc); in FreeScratchLocation()
Dcode_generator_arm.cc5703 Location loc, in StoreToShiftedRegOffset() argument
5713 __ strb(loc.AsRegister<Register>(), mem_address, cond); in StoreToShiftedRegOffset()
5717 __ strh(loc.AsRegister<Register>(), mem_address, cond); in StoreToShiftedRegOffset()
5721 __ str(loc.AsRegister<Register>(), mem_address, cond); in StoreToShiftedRegOffset()
Dcode_generator_arm_vixl.cc5713 Location loc, in StoreToShiftedRegOffset() argument
5723 __ Strb(cond, RegisterFrom(loc), mem_address); in StoreToShiftedRegOffset()
5727 __ Strh(cond, RegisterFrom(loc), mem_address); in StoreToShiftedRegOffset()
5731 __ Str(cond, RegisterFrom(loc), mem_address); in StoreToShiftedRegOffset()
Dnodes.h6614 bool Blocks(Location loc) const { in Blocks() argument
6615 return !IsEliminated() && source_.OverlapsWith(loc); in Blocks()
Dcode_generator_x86_64.cc4630 Location loc = codegen_->GetCompilerOptions().GetImplicitNullChecks() in VisitNullCheck() local
4633 locations->SetInAt(0, loc); in VisitNullCheck()
/art/test/092-locale/src/
DMain.java146 Locale loc; in testIso3() local
147 loc = new Locale("en", "US"); in testIso3()
148 System.out.println("loc: " + loc); in testIso3()
149 System.out.println(" iso3=" + loc.getISO3Language()); in testIso3()
151 loc = new Locale("eng", "USA"); in testIso3()
152 System.out.println("loc: " + loc); in testIso3()
154 System.out.println(" iso3=" + loc.getISO3Language()); in testIso3()
/art/tools/checker/common/
Dlogger.py63 loc = ""
65 loc += file + ":"
67 loc += str(line) + ":"
68 if loc:
69 loc += " "
70 Logger.log(loc, Logger.Level.Error, color=Logger.Color.Gray, newLine=False, out=sys.stderr)
/art/test/092-locale/
Dexpected.txt9 loc: en_US
11 loc: eng_USA
/art/tools/dexfuzz/src/dexfuzz/rawdex/
DOffset.java163 public void setOutputLocation(int loc) { in setOutputLocation() argument
164 outputLocation = loc; in setOutputLocation()
/art/tools/dexfuzz/src/dexfuzz/program/
DCodeTranslator.java78 int loc = 0; in codeItemToMutatableCode() local
95 insnLocationMap.put(loc, mInsn); in codeItemToMutatableCode()
101 mInsn.location = loc; in codeItemToMutatableCode()
104 loc += mInsn.insn.getSize(); in codeItemToMutatableCode()
151 int loc = 0; in mutatableCodeToCodeItem() local
155 if ((loc % 2) != 0) { in mutatableCodeToCodeItem()
156 loc++; in mutatableCodeToCodeItem()
159 if (mInsn.location != loc) { in mutatableCodeToCodeItem()
161 mInsn, loc)); in mutatableCodeToCodeItem()
164 loc += mInsn.insn.getSize(); in mutatableCodeToCodeItem()
DMutatableCode.java119 int loc = 0; in recalculateLocations() local
121 mInsn.location = loc; in recalculateLocations()
122 loc += mInsn.insn.getSize(); in recalculateLocations()
/art/runtime/jdwp/
Djdwp_event.h61 JdwpLocation loc; member
Djdwp_event.cc209 Dbg::WatchLocation(&pMod->locationOnly.loc, &req); in RegisterEvent()
267 JdwpLocation& loc = mod.locationOnly.loc; in UnregisterLocationEventsOnClass() local
270 Dbg::GetObjectRegistry()->Get<art::mirror::Class*>(loc.class_id, &error)); in UnregisterLocationEventsOnClass()
325 Dbg::UnwatchLocation(&pMod->locationOnly.loc, &req); in UnregisterEvent()
526 if (!Dbg::MatchLocation(pMod->locationOnly.loc, *basket.pLoc)) { in ModsMatch()
Djdwp_handler.cc1289 mod.locationOnly.loc = location; in ER_Set()