HomeSort by: relevance | last modified time | path
    Searched refs:debugLoc (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineInstr.h 27 #include "llvm/IR/DebugLoc.h"
252 DebugLoc debugLoc; // Source line information.
269 /// MCInstrDesc. An explicit DebugLoc is supplied.
270 MachineInstr(MachineFunction &, const MCInstrDesc &tid, DebugLoc dl,
418 const DebugLoc &getDebugLoc() const { return debugLoc; }
1735 void setDebugLoc(DebugLoc dl) {
1736 debugLoc = std::move(dl);
1737 assert(debugLoc.hasTrivialDestructor() && "Expected trivial destructor")
    [all...]
SelectionDAGNodes.h 36 #include "llvm/IR/DebugLoc.h"
211 inline const DebugLoc &getDebugLoc() const;
601 DebugLoc debugLoc;
711 const DebugLoc &getDebugLoc() const { return debugLoc; }
715 void setDebugLoc(DebugLoc dl) { debugLoc = std::move(dl); }
1056 SDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTs)
1058 IROrder(Order), debugLoc(std::move(dl))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineInstr.cpp 44 #include "llvm/IR/DebugLoc.h"
119 DebugLoc dl, bool NoImp)
120 : MCID(&tid), debugLoc(std::move(dl)), DebugInstrNum(0) {
121 assert(debugLoc.hasTrivialDestructor() && "Expected trivial destructor");
138 : MCID(&MI.getDesc()), Info(MI.Info), debugLoc(MI.getDebugLoc()),
140 assert(debugLoc.hasTrivialDestructor() && "Expected trivial destructor");
655 // If DebugLoc does not match then two debug instructions are not identical.
1815 if (const DebugLoc &DL = getDebugLoc()) {
1852 if (const DebugLoc &DL = getDebugLoc()) {
2106 MachineInstrBuilder llvm::BuildMI(MachineFunction &MF, const DebugLoc &DL
    [all...]

Completed in 24 milliseconds