Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Parent

43   Insts.Parent = this;
73 /// parent pointer of the MBB, the MBB numbering, and any instructions in the
100 /// list, we update its parent pointer and add its operands from reg use/def
104 N->setParent(Parent);
108 MachineFunction *MF = Parent->getParent();
115 /// list, we update its parent pointer and remove its operands from reg use/def
130 /// MBB list to another, we need to update the parent pointers and the use/def
136 assert(Parent->getParent() == fromList.Parent->getParent() &&
137 "MachineInstr parent mismatch!");
140 if (Parent == fromList.Parent) return;
143 // parent pointers.
145 first->setParent(Parent);
150 Parent->getParent()->DeleteMachineInstr(MI);
269 OS << "Can't print out MachineBasicBlock because parent MachineFunction"