Home | History | Annotate | Download | only in optimizing

Lines Matching refs:HInstruction

291 void HBasicBlock::InsertInstructionBefore(HInstruction* instruction, HInstruction* cursor) {
312 HInstruction* instruction) {
320 void HBasicBlock::AddInstruction(HInstruction* instruction) {
330 HInstruction* instruction) {
342 void HBasicBlock::RemoveInstruction(HInstruction* instruction) {
350 void HInstruction::RemoveUser(HInstruction* user, size_t input_index) {
351 HUseListNode<HInstruction>* previous = nullptr;
352 HUseListNode<HInstruction>* current = uses_;
366 void HInstructionList::AddInstruction(HInstruction* instruction) {
380 void HInstructionList::RemoveInstruction(HInstruction* instruction) {
395 void HInstruction::ReplaceWith(HInstruction* other) {
397 for (HUseIterator<HInstruction> it(GetUses()); !it.Done(); it.Advance()) {
398 HUseListNode<HInstruction>* current = it.Current();
399 HInstruction* user = current->GetUser();
417 void HPhi::AddInput(HInstruction* input) {
453 HUseListNode<HInstruction>* uses = GetUses();
454 HInstruction* user = uses->GetUser();