Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:SDLoc

923 /// So SDLoc class provides two constructors besides the default one, one to
925 class SDLoc {
931 SDLoc() = default;
932 SDLoc(const SDNode *N) : DL(N->getDebugLoc()), IROrder(N->getIROrder()) {}
933 SDLoc(const SDValue V) : SDLoc(V.getNode()) {}
934 SDLoc(const Instruction *I, int Order) : IROrder(Order) {