• Home
  • Raw
  • Download

Lines Matching refs:next_

1166     last_instruction_->next_ = instruction;  in AddInstruction()
1176 instruction->next_ = cursor; in InsertInstructionBefore()
1180 instruction->next_ = cursor; in InsertInstructionBefore()
1182 instruction->previous_->next_ = instruction; in InsertInstructionBefore()
1189 cursor->next_ = instruction; in InsertInstructionAfter()
1193 instruction->next_ = cursor->next_; in InsertInstructionAfter()
1195 cursor->next_ = instruction; in InsertInstructionAfter()
1196 instruction->next_->previous_ = instruction; in InsertInstructionAfter()
1202 instruction->previous_->next_ = instruction->next_; in RemoveInstruction()
1204 if (instruction->next_ != nullptr) { in RemoveInstruction()
1205 instruction->next_->previous_ = instruction->previous_; in RemoveInstruction()
1208 first_instruction_ = instruction->next_; in RemoveInstruction()
1761 next_->previous_ = previous_; in MoveBefore()
1763 previous_->next_ = next_; in MoveBefore()
1766 block_->instructions_.first_instruction_ = next_; in MoveBefore()
1772 previous_->next_ = this; in MoveBefore()
1774 next_ = cursor; in MoveBefore()
1849 cursor->previous_->next_ = nullptr; in SplitBefore()
1895 cursor->previous_->next_ = nullptr; in SplitBeforeForInlining()
1923 cursor->next_->previous_ = nullptr; in SplitAfterForInlining()
1924 cursor->next_ = nullptr; in SplitAfterForInlining()
2074 cursor->next_->previous_ = instruction_list.last_instruction_; in AddAfter()
2076 instruction_list.last_instruction_->next_ = cursor->next_; in AddAfter()
2077 cursor->next_ = instruction_list.first_instruction_; in AddAfter()
2088 cursor->previous_->next_ = instruction_list.first_instruction_; in AddBefore()
2090 instruction_list.last_instruction_->next_ = cursor; in AddBefore()