Home
last modified time | relevance | path

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

/art/runtime/mirror/
Ddex_cache-inl.h401 String* new_source = visitor(ptr); in FixupStrings() local
402 source.object = GcRoot<String>(new_source); in FixupStrings()
413 Class* new_source = visitor(ptr); in FixupResolvedTypes() local
414 source.object = GcRoot<Class>(new_source); in FixupResolvedTypes()
426 MethodType* new_source = visitor(ptr); in FixupResolvedMethodTypes() local
427 source.object = GcRoot<MethodType>(new_source); in FixupResolvedMethodTypes()
438 mirror::CallSite* new_source = visitor(source); in FixupResolvedCallSites() local
439 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()