Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:SDLoc

1003 /// So SDLoc class provides two constructors besides the default one, one to
1005 class SDLoc {
1011 SDLoc() = default;
1012 SDLoc(const SDNode *N) : DL(N->getDebugLoc()), IROrder(N->getIROrder()) {}
1013 SDLoc(const SDValue V) : SDLoc(V.getNode()) {}
1014 SDLoc(const Instruction *I, int Order) : IROrder(Order) {