Home
last modified time | relevance | path

Searched refs:debugLoc (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DMachineInstr.h228 DebugLoc debugLoc; // Source line information. variable
383 const DebugLoc &getDebugLoc() const { return debugLoc; }
1466 debugLoc = std::move(dl);
1467 assert(debugLoc.hasTrivialDestructor() && "Expected trivial destructor");
H A DSelectionDAGNodes.h605 DebugLoc debugLoc;
727 const DebugLoc &getDebugLoc() const { return debugLoc; }
731 void setDebugLoc(DebugLoc dl) { debugLoc = std::move(dl); }
1060 IROrder(Order), debugLoc(std::move(dl)) {
1062 assert(debugLoc.hasTrivialDestructor() && "Expected trivial destructor");
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DMachineInstr.cpp118 : MCID(&tid), debugLoc(std::move(dl)) { in MachineInstr()
119 assert(debugLoc.hasTrivialDestructor() && "Expected trivial destructor"); in MachineInstr()
135 : MCID(&MI.getDesc()), Info(MI.Info), debugLoc(MI.getDebugLoc()) { in MachineInstr()
136 assert(debugLoc.hasTrivialDestructor() && "Expected trivial destructor"); in MachineInstr()
1740 if (auto *InlinedAt = debugLoc->getInlinedAt()) { in print()