Searched refs:debugLoc (Results 1 – 9 of 9) sorted by relevance
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/ |
D | MachineInstr.h | 78 DebugLoc debugLoc; // Source line information. variable 178 DebugLoc getDebugLoc() const { return debugLoc; } 537 void setDebugLoc(const DebugLoc dl) { debugLoc = dl; }
|
D | SelectionDAGNodes.h | 341 DebugLoc debugLoc; 412 const DebugLoc getDebugLoc() const { return debugLoc; } 416 void setDebugLoc(const DebugLoc dl) { debugLoc = dl; } 684 debugLoc(dl) { 698 debugLoc(dl) {}
|
/external/llvm/include/llvm/CodeGen/ |
D | MachineInstr.h | 107 DebugLoc debugLoc; // Source line information. variable 263 const DebugLoc &getDebugLoc() const { return debugLoc; } 1194 debugLoc = std::move(dl); 1195 assert(debugLoc.hasTrivialDestructor() && "Expected trivial destructor");
|
D | SelectionDAGNodes.h | 438 DebugLoc debugLoc; 530 const DebugLoc &getDebugLoc() const { return debugLoc; } 534 void setDebugLoc(DebugLoc dl) { debugLoc = std::move(dl); } 821 debugLoc(std::move(dl)) { 822 assert(debugLoc.hasTrivialDestructor() && "Expected trivial destructor");
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
D | MachineInstr.h | 130 DebugLoc debugLoc; // Source line information. variable 285 const DebugLoc &getDebugLoc() const { return debugLoc; } 1318 debugLoc = std::move(dl); 1319 assert(debugLoc.hasTrivialDestructor() && "Expected trivial destructor");
|
D | SelectionDAGNodes.h | 605 DebugLoc debugLoc; 721 const DebugLoc &getDebugLoc() const { return debugLoc; } 725 void setDebugLoc(DebugLoc dl) { debugLoc = std::move(dl); } 1054 IROrder(Order), debugLoc(std::move(dl)) { 1056 assert(debugLoc.hasTrivialDestructor() && "Expected trivial destructor");
|
/external/llvm/lib/CodeGen/ |
D | MachineInstr.cpp | 656 debugLoc(std::move(dl)) in MachineInstr() 662 assert(debugLoc.hasTrivialDestructor() && "Expected trivial destructor"); in MachineInstr() 680 MemRefs(MI.MemRefs), debugLoc(MI.getDebugLoc()) in MachineInstr() 686 assert(debugLoc.hasTrivialDestructor() && "Expected trivial destructor"); in MachineInstr() 1920 if (auto *InlinedAt = debugLoc->getInlinedAt()) { in print() 1930 } else if (debugLoc && MF) { in print() 1934 debugLoc.print(OS); in print()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | MachineInstr.cpp | 503 MemRefs(0), MemRefsEnd(0), Parent(0), debugLoc(dl) { in MachineInstr() 535 MemRefs(0), MemRefsEnd(0), Parent(0), debugLoc(dl) { in MachineInstr() 551 Parent(0), debugLoc(MI.getDebugLoc()) { in MachineInstr() 1553 } else if (!debugLoc.isUnknown() && MF) { in print() 1556 printDebugLoc(debugLoc, MF, OS); in print()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | MachineInstr.cpp | 117 : MCID(&tid), debugLoc(std::move(dl)) { in MachineInstr() 118 assert(debugLoc.hasTrivialDestructor() && "Expected trivial destructor"); in MachineInstr() 135 debugLoc(MI.getDebugLoc()) { in MachineInstr() 136 assert(debugLoc.hasTrivialDestructor() && "Expected trivial destructor"); in MachineInstr() 1544 if (auto *InlinedAt = debugLoc->getInlinedAt()) { in print()
|