Searched refs:input_index (Results 1 – 2 of 2) sorted by relevance
/art/compiler/optimizing/ |
D | nodes.cc | 350 void HInstruction::RemoveUser(HInstruction* user, size_t input_index) { in RemoveUser() argument 354 if (current->GetUser() == user && current->GetIndex() == input_index) { in RemoveUser() 400 size_t input_index = current->GetIndex(); in ReplaceWith() local 401 user->SetRawInputAt(input_index, other); in ReplaceWith() 402 other->AddUseAt(user, input_index); in ReplaceWith() 408 size_t input_index = current->GetIndex(); in ReplaceWith() local 409 user->SetRawEnvAt(input_index, other); in ReplaceWith() 410 other->AddEnvUseAt(user, input_index); in ReplaceWith()
|
D | ssa_liveness_analysis.h | 93 size_t input_index, in UsePosition() argument 98 input_index_(input_index), in UsePosition() 158 void AddUse(HInstruction* instruction, size_t input_index, bool is_environment) { in AddUse() argument 180 instruction, input_index, is_environment, position, first_use_); in AddUse() 183 void AddPhiUse(HInstruction* instruction, size_t input_index, HBasicBlock* block) { in AddPhiUse() argument 186 instruction, input_index, false, block->GetLifetimeEnd(), first_use_); in AddPhiUse()
|