Home
last modified time | relevance | path

Searched refs:scratches_ (Results 1 – 2 of 2) sorted by relevance

/art/compiler/optimizing/
Dparallel_move_resolver.cc292 DCHECK(scratches_.IsEmpty()); in EmitNativeCode()
348 scratches_.Reset(); in EmitNativeCode()
352 for (size_t i = 0; i < scratches_.Size(); ++i) { in GetScratchLocation()
353 Location loc = scratches_.Get(i); in GetScratchLocation()
369 for (size_t i = 0; i < scratches_.Size(); ++i) { in AddScratchLocation()
370 DCHECK(!loc.Equals(scratches_.Get(i))); in AddScratchLocation()
373 scratches_.Add(loc); in AddScratchLocation()
378 for (size_t i = 0; i < scratches_.Size(); ++i) { in RemoveScratchLocation()
379 if (loc.Equals(scratches_.Get(i))) { in RemoveScratchLocation()
380 scratches_.DeleteAt(i); in RemoveScratchLocation()
[all …]
Dparallel_move_resolver.h123 : ParallelMoveResolver(allocator), scratches_(allocator, 32), in ParallelMoveResolverNoSwap()
163 GrowableArray<Location> scratches_; variable