Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Position

337       // If so, we will need to move BB back to the entry position.
476 // will need to move BB back to the entry position.
2119 /// \brief Utility to remember the position of an instruction.
2121 /// Position of an instruction.
2133 /// \brief Record the position of \p Inst.
2143 /// \brief Insert \p Inst at the recorded position.
2150 Instruction *Position = &*Point.BB->getFirstInsertionPt();
2152 Inst->moveBefore(Position);
2154 Inst->insertBefore(Position);
2161 /// Original position of the instruction.
2162 InsertionHandler Position;
2167 : TypePromotionAction(Inst), Position(Inst) {
2172 /// \brief Move the instruction back to its original position.
2175 Position.insert(Inst);
2376 /// Original position of the instruction.