Home
last modified time | relevance | path

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

/art/runtime/mirror/
Ddex_cache-inl.h398 String* new_source = visitor(ptr); in FixupStrings() local
399 source.object = GcRoot<String>(new_source); in FixupStrings()
410 Class* new_source = visitor(ptr); in FixupResolvedTypes() local
411 source.object = GcRoot<Class>(new_source); in FixupResolvedTypes()
423 MethodType* new_source = visitor(ptr); in FixupResolvedMethodTypes() local
424 source.object = GcRoot<MethodType>(new_source); in FixupResolvedMethodTypes()
435 mirror::CallSite* new_source = visitor(source); in FixupResolvedCallSites() local
436 dest[i] = GcRoot<mirror::CallSite>(new_source); in FixupResolvedCallSites()
/art/compiler/optimizing/
Dparallel_move_resolver.cc107 static void UpdateSourceOf(MoveOperands* move, Location updated_location, Location new_source) { in UpdateSourceOf() argument
110 move->SetSource(LowOf(new_source)); in UpdateSourceOf()
112 move->SetSource(HighOf(new_source)); in UpdateSourceOf()
115 move->SetSource(new_source); in UpdateSourceOf()