Lines Matching refs:locations
147 LocationSummary* locations = instruction->GetLocations(); in AllocateRegistersLocally() local
148 if (locations == nullptr) return; in AllocateRegistersLocally()
155 for (size_t i = 0, e = locations->GetInputCount(); i < e; ++i) { in AllocateRegistersLocally()
156 Location loc = locations->InAt(i); in AllocateRegistersLocally()
164 for (size_t i = 0, e = locations->GetTempCount(); i < e; ++i) { in AllocateRegistersLocally()
165 Location loc = locations->GetTemp(i); in AllocateRegistersLocally()
176 for (size_t i = 0, e = locations->GetInputCount(); i < e; ++i) { in AllocateRegistersLocally()
177 Location loc = locations->InAt(i); in AllocateRegistersLocally()
193 locations->SetInAt(i, loc); in AllocateRegistersLocally()
198 for (size_t i = 0, e = locations->GetTempCount(); i < e; ++i) { in AllocateRegistersLocally()
199 Location loc = locations->GetTemp(i); in AllocateRegistersLocally()
206 locations->SetTempAt(i, loc); in AllocateRegistersLocally()
209 Location result_location = locations->Out(); in AllocateRegistersLocally()
218 result_location = locations->InAt(0); in AllocateRegistersLocally()
221 locations->SetOut(result_location); in AllocateRegistersLocally()