Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:SDLoc

838 /// So SDLoc class provides two constructors besides the default one, one to
840 class SDLoc {
846 SDLoc() = default;
847 SDLoc(const SDNode *N) : DL(N->getDebugLoc()), IROrder(N->getIROrder()) {}
848 SDLoc(const SDValue V) : SDLoc(V.getNode()) {}
849 SDLoc(const Instruction *I, int Order) : IROrder(Order) {