/external/llvm/lib/IR/ |
D | DebugLoc.cpp | 18 DebugLoc::DebugLoc(const DILocation *L) : Loc(const_cast<DILocation *>(L)) {} in DebugLoc() function in DebugLoc 19 DebugLoc::DebugLoc(const MDNode *L) : Loc(const_cast<MDNode *>(L)) {} in DebugLoc() function in DebugLoc 21 DILocation *DebugLoc::get() const { in get() 25 unsigned DebugLoc::getLine() const { in getLine() 30 unsigned DebugLoc::getCol() const { in getCol() 35 MDNode *DebugLoc::getScope() const { in getScope() 40 DILocation *DebugLoc::getInlinedAt() const { in getInlinedAt() 45 MDNode *DebugLoc::getInlinedAtScope() const { in getInlinedAtScope() 49 DebugLoc DebugLoc::getFnDebugLoc() const { in getFnDebugLoc() 53 return DebugLoc::get(SP->getScopeLine(), 0, SP); in getFnDebugLoc() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | DebugLoc.cpp | 18 DebugLoc::DebugLoc(const DILocation *L) : Loc(const_cast<DILocation *>(L)) {} in DebugLoc() function in DebugLoc 19 DebugLoc::DebugLoc(const MDNode *L) : Loc(const_cast<MDNode *>(L)) {} in DebugLoc() function in DebugLoc 21 DILocation *DebugLoc::get() const { in get() 25 unsigned DebugLoc::getLine() const { in getLine() 30 unsigned DebugLoc::getCol() const { in getCol() 35 MDNode *DebugLoc::getScope() const { in getScope() 40 DILocation *DebugLoc::getInlinedAt() const { in getInlinedAt() 45 MDNode *DebugLoc::getInlinedAtScope() const { in getInlinedAtScope() 49 DebugLoc DebugLoc::getFnDebugLoc() const { in getFnDebugLoc() 53 return DebugLoc::get(SP->getScopeLine(), 0, SP); in getFnDebugLoc() [all …]
|
/external/llvm-project/llvm/lib/IR/ |
D | DebugLoc.cpp | 18 DebugLoc::DebugLoc(const DILocation *L) : Loc(const_cast<DILocation *>(L)) {} in DebugLoc() function in DebugLoc 19 DebugLoc::DebugLoc(const MDNode *L) : Loc(const_cast<MDNode *>(L)) {} in DebugLoc() function in DebugLoc 21 DILocation *DebugLoc::get() const { in get() 25 unsigned DebugLoc::getLine() const { in getLine() 30 unsigned DebugLoc::getCol() const { in getCol() 35 MDNode *DebugLoc::getScope() const { in getScope() 40 DILocation *DebugLoc::getInlinedAt() const { in getInlinedAt() 45 MDNode *DebugLoc::getInlinedAtScope() const { in getInlinedAtScope() 49 DebugLoc DebugLoc::getFnDebugLoc() const { in getFnDebugLoc() 53 return DebugLoc::get(SP->getScopeLine(), 0, SP); in getFnDebugLoc() [all …]
|
/external/llvm/include/llvm/IR/ |
D | DebugLoc.h | 34 class DebugLoc { 38 DebugLoc() {} in DebugLoc() function 39 DebugLoc(DebugLoc &&X) : Loc(std::move(X.Loc)) {} in DebugLoc() function 40 DebugLoc(const DebugLoc &X) : Loc(X.Loc) {} in DebugLoc() function 41 DebugLoc &operator=(DebugLoc &&X) { 45 DebugLoc &operator=(const DebugLoc &X) { 51 DebugLoc(const DILocation *L); 59 explicit DebugLoc(const MDNode *N); 90 static DebugLoc get(unsigned Line, unsigned Col, const MDNode *Scope, 110 DebugLoc getFnDebugLoc() const; [all …]
|
D | DiagnosticInfo.h | 347 const DebugLoc &DLoc) in DiagnosticInfoWithDebugLocBase() 363 const DebugLoc &getDebugLoc() const { return DLoc; } in getDebugLoc() 370 DebugLoc DLoc; 386 const DebugLoc &DLoc, const Twine &Msg) in DiagnosticInfoOptimizationBase() 430 const DebugLoc &DLoc, const Twine &Msg) in DiagnosticInfoOptimizationRemark() 456 const DebugLoc &DLoc, const Twine &Msg) in DiagnosticInfoOptimizationRemarkMissed() 482 const DebugLoc &DLoc, in DiagnosticInfoOptimizationRemarkAnalysis() 502 const DebugLoc &DLoc, in DiagnosticInfoOptimizationRemarkAnalysis() 525 const DebugLoc &DLoc, in DiagnosticInfoOptimizationRemarkAnalysisFPCommute() 552 const DebugLoc &DLoc, in DiagnosticInfoOptimizationRemarkAnalysisAliasing() [all …]
|
/external/llvm-project/llvm/include/llvm/IR/ |
D | DebugLoc.h | 33 class DebugLoc { 37 DebugLoc() = default; 40 DebugLoc(const DILocation *L); 48 explicit DebugLoc(const MDNode *N); 79 static DebugLoc get(unsigned Line, unsigned Col, const MDNode *Scope, 88 static DebugLoc appendInlinedAt(const DebugLoc &DL, DILocation *InlinedAt, 110 DebugLoc getFnDebugLoc() const; 119 bool operator==(const DebugLoc &DL) const { return Loc == DL.Loc; } 120 bool operator!=(const DebugLoc &DL) const { return Loc != DL.Loc; }
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | DebugLoc.h | 33 class DebugLoc { 37 DebugLoc() = default; 40 DebugLoc(const DILocation *L); 48 explicit DebugLoc(const MDNode *N); 79 static DebugLoc get(unsigned Line, unsigned Col, const MDNode *Scope, 88 static DebugLoc appendInlinedAt(DebugLoc DL, DILocation *InlinedAt, 110 DebugLoc getFnDebugLoc() const; 119 bool operator==(const DebugLoc &DL) const { return Loc == DL.Loc; } 120 bool operator!=(const DebugLoc &DL) const { return Loc != DL.Loc; }
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | DebugLoc.h | 34 class DebugLoc { 38 DebugLoc() = default; 41 DebugLoc(const DILocation *L); 49 explicit DebugLoc(const MDNode *N); 80 static DebugLoc get(unsigned Line, unsigned Col, const MDNode *Scope, 100 DebugLoc getFnDebugLoc() const; 105 bool operator==(const DebugLoc &DL) const { return Loc == DL.Loc; } 106 bool operator!=(const DebugLoc &DL) const { return Loc != DL.Loc; }
|
/external/llvm-project/llvm/lib/Target/X86/ |
D | X86FrameLowering.h | 55 MachineBasicBlock::iterator MBBI, const DebugLoc &DL, 68 const DebugLoc &DL, 141 const DebugLoc &DL, int64_t NumBytes, bool InEpilogue) const; 175 const DebugLoc &DL, const MCCFIInstruction &CFIInst) const; 182 const DebugLoc &DL, bool RestoreSP = false) const; 199 MachineBasicBlock::iterator MBBI, const DebugLoc &DL, 205 const DebugLoc &DL, bool InProlog) const; 209 const DebugLoc &DL, 213 const DebugLoc &DL, bool InProlog) const; 218 const DebugLoc &DL, uint64_t Offset, [all …]
|
D | X86IndirectThunks.cpp | 95 BuildMI(&MF.front(), DebugLoc(), TII->get(X86::LFENCE)); in populateThunk() 96 BuildMI(&MF.front(), DebugLoc(), TII->get(X86::JMP64r)).addReg(X86::R11); in populateThunk() 219 BuildMI(Entry, DebugLoc(), TII->get(CallOpc)).addSym(TargetSym); in populateThunk() 234 BuildMI(CaptureSpec, DebugLoc(), TII->get(X86::PAUSE)); in populateThunk() 235 BuildMI(CaptureSpec, DebugLoc(), TII->get(X86::LFENCE)); in populateThunk() 236 BuildMI(CaptureSpec, DebugLoc(), TII->get(X86::JMP_1)).addMBB(CaptureSpec); in populateThunk() 247 addRegOffset(BuildMI(CallTarget, DebugLoc(), TII->get(MovOpc)), SPReg, false, in populateThunk() 252 BuildMI(CallTarget, DebugLoc(), TII->get(RetOpc)); in populateThunk()
|
D | X86LoadValueInjectionRetHardening.cpp | 84 BuildMI(MBB, MBBI, DebugLoc(), TII->get(X86::POP64r)) in runOnMachineFunction() 87 BuildMI(MBB, MBBI, DebugLoc(), TII->get(X86::LFENCE)); in runOnMachineFunction() 88 BuildMI(MBB, MBBI, DebugLoc(), TII->get(X86::JMP64r)) in runOnMachineFunction() 97 BuildMI(MBB, MBBI, DebugLoc(), TII->get(X86::LFENCE)); in runOnMachineFunction() 98 addRegOffset(BuildMI(MBB, Fence, DebugLoc(), TII->get(X86::SHL64mi)), in runOnMachineFunction()
|
/external/llvm-project/polly/include/polly/ |
D | ScopDetectionDiagnostic.h | 48 void getDebugLocations(const BBPair &P, DebugLoc &Begin, DebugLoc &End); 114 static const DebugLoc Unknown; 151 virtual const DebugLoc &getDebugLoc() const; 215 const DebugLoc &getDebugLoc() const override; 223 DebugLoc DbgLoc; 226 ReportIrreducibleRegion(Region *R, DebugLoc DbgLoc) in ReportIrreducibleRegion() 240 const DebugLoc &getDebugLoc() const override; 248 DebugLoc DbgLoc; 251 ReportUnreachableInExit(BasicBlock *BB, DebugLoc DbgLoc) in ReportUnreachableInExit() 266 const DebugLoc &getDebugLoc() const override; [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86FrameLowering.h | 54 MachineBasicBlock::iterator MBBI, const DebugLoc &DL, 63 const DebugLoc &DL) const; 129 const DebugLoc &DL, int64_t NumBytes, bool InEpilogue) const; 163 const DebugLoc &DL, const MCCFIInstruction &CFIInst) const; 170 const DebugLoc &DL, bool RestoreSP = false) const; 185 MachineBasicBlock::iterator MBBI, const DebugLoc &DL, 191 const DebugLoc &DL, bool InProlog) const; 196 const DebugLoc &DL, bool InProlog) const; 200 MachineBasicBlock::iterator MBBI, const DebugLoc &DL, 205 MachineBasicBlock::iterator MBBI, const DebugLoc &DL, [all …]
|
/external/llvm-project/polly/lib/Analysis/ |
D | ScopDetectionDiagnostic.cpp | 100 static bool operator<(const DebugLoc &LHS, const DebugLoc &RHS) { in operator <() 112 void getDebugLocations(const BBPair &P, DebugLoc &Begin, DebugLoc &End) { in getDebugLocations() 124 DebugLoc DL = Inst.getDebugLoc(); in getDebugLocations() 136 DebugLoc Begin, End; in emitRejectionRemarks() 145 if (const DebugLoc &Loc = RR->getDebugLoc()) in emitRejectionRemarks() 173 const DebugLoc RejectReason::Unknown = DebugLoc(); 175 const DebugLoc &RejectReason::getDebugLoc() const { in getDebugLoc() 210 const DebugLoc &ReportInvalidTerminator::getDebugLoc() const { in getDebugLoc() 232 const DebugLoc &ReportUnreachableInExit::getDebugLoc() const { return DbgLoc; } in getDebugLoc() 257 const DebugLoc &ReportIrreducibleRegion::getDebugLoc() const { return DbgLoc; } in getDebugLoc() [all …]
|
/external/llvm/lib/Target/X86/ |
D | X86FrameLowering.h | 56 const DebugLoc &DL, bool InProlog) const; 64 const DebugLoc &DL) const; 169 const DebugLoc &DL, const MCCFIInstruction &CFIInst) const; 176 const DebugLoc &DL, bool RestoreSP = false) const; 184 const DebugLoc &DL, bool InProlog) const; 190 const DebugLoc &DL, bool InProlog) const; 196 const DebugLoc &DL, 201 MachineBasicBlock::iterator MBBI, const DebugLoc &DL, 206 MachineBasicBlock::iterator MBBI, const DebugLoc &DL, 212 const DebugLoc &DL, int64_t Offset,
|
/external/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
D | SDNodeDbgValue.h | 50 DebugLoc DL; 60 bool indir, DebugLoc dl, unsigned O) in SDDbgValue() 68 SDDbgValue(DIVariable *Var, DIExpression *Expr, const Value *C, DebugLoc dl, in SDDbgValue() 77 bool IsIndirect, DebugLoc DL, unsigned Order, in SDDbgValue() 117 DebugLoc getDebugLoc() const { return DL; } in getDebugLoc() 146 DebugLoc DL; 150 SDDbgLabel(MDNode *Label, DebugLoc dl, unsigned O) in SDDbgLabel() 157 DebugLoc getDebugLoc() const { return DL; } in getDebugLoc()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | SDNodeDbgValue.h | 50 DebugLoc DL; 60 bool indir, DebugLoc dl, unsigned O) in SDDbgValue() 68 SDDbgValue(DIVariable *Var, DIExpression *Expr, const Value *C, DebugLoc dl, in SDDbgValue() 77 bool IsIndirect, DebugLoc DL, unsigned Order, in SDDbgValue() 117 DebugLoc getDebugLoc() const { return DL; } in getDebugLoc() 146 DebugLoc DL; 150 SDDbgLabel(MDNode *Label, DebugLoc dl, unsigned O) in SDDbgLabel() 157 DebugLoc getDebugLoc() const { return DL; } in getDebugLoc()
|
/external/llvm-project/llvm/tools/llvm-exegesis/lib/ |
D | Assembler.h | 50 void addInstruction(const MCInst &Inst, const DebugLoc &DL = DebugLoc()); 51 void addInstructions(ArrayRef<MCInst> Insts, const DebugLoc &DL = DebugLoc()); 53 void addReturn(const DebugLoc &DL = DebugLoc());
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGLoopInfo.h | 88 const llvm::DebugLoc &StartLoc, const llvm::DebugLoc &EndLoc, 117 llvm::DebugLoc StartLoc; 119 llvm::DebugLoc EndLoc; 203 void push(llvm::BasicBlock *Header, const llvm::DebugLoc &StartLoc, 204 const llvm::DebugLoc &EndLoc); 210 llvm::ArrayRef<const Attr *> Attrs, const llvm::DebugLoc &StartLoc, 211 const llvm::DebugLoc &EndLoc, bool MustProgress = false);
|
/external/llvm-project/llvm/unittests/CodeGen/ |
D | MachineInstrTest.cpp | 61 auto MI1 = MF->CreateMachineInstr(MCID, DebugLoc()); in TEST() 65 auto MI2 = MF->CreateMachineInstr(MCID, DebugLoc()); in TEST() 81 auto MI3 = MF->CreateMachineInstr(MCID, DebugLoc()); in TEST() 85 auto MI4 = MF->CreateMachineInstr(MCID, DebugLoc()); in TEST() 136 auto VD1VU = MF->CreateMachineInstr(MCID, DebugLoc()); in TEST() 142 auto VD2VU = MF->CreateMachineInstr(MCID, DebugLoc()); in TEST() 148 auto VD1SU = MF->CreateMachineInstr(MCID, DebugLoc()); in TEST() 154 auto VD1SD = MF->CreateMachineInstr(MCID, DebugLoc()); in TEST() 160 auto VD2PU = MF->CreateMachineInstr(MCID, DebugLoc()); in TEST() 166 auto VD2PD = MF->CreateMachineInstr(MCID, DebugLoc()); in TEST() [all …]
|
/external/llvm/include/llvm/CodeGen/ |
D | MachineInstrBuilder.h | 242 inline MachineInstrBuilder BuildMI(MachineFunction &MF, const DebugLoc &DL, in BuildMI() 249 inline MachineInstrBuilder BuildMI(MachineFunction &MF, const DebugLoc &DL, in BuildMI() 260 const DebugLoc &DL, const MCInstrDesc &MCID, in BuildMI() 276 const DebugLoc &DL, const MCInstrDesc &MCID, in BuildMI() 285 const DebugLoc &DL, const MCInstrDesc &MCID, in BuildMI() 295 const DebugLoc &DL, const MCInstrDesc &MCID, in BuildMI() 305 const DebugLoc &DL, in BuildMI() 315 const DebugLoc &DL, in BuildMI() 324 const DebugLoc &DL, in BuildMI() 334 const DebugLoc &DL, in BuildMI() [all …]
|
D | SelectionDAGNodes.h | 172 inline const DebugLoc &getDebugLoc() const; 438 DebugLoc debugLoc; 530 const DebugLoc &getDebugLoc() const { return debugLoc; } 534 void setDebugLoc(DebugLoc dl) { debugLoc = std::move(dl); } 817 SDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTs) 842 DebugLoc DL; 855 const DebugLoc &getDebugLoc() const { return DL; } 904 inline const DebugLoc &SDValue::getDebugLoc() const { 959 BinaryWithFlagsSDNode(unsigned Opc, unsigned Order, const DebugLoc &dl, 975 : SDNode(ISD::HANDLENODE, 0, DebugLoc(), getSDVTList(MVT::Other)) { [all …]
|
/external/clang/lib/CodeGen/ |
D | CGLoopInfo.h | 71 llvm::DebugLoc Location); 104 llvm::DebugLoc Location = llvm::DebugLoc()); 110 llvm::DebugLoc Location = llvm::DebugLoc());
|
/external/llvm-project/llvm/include/llvm/CodeGen/ |
D | MachineInstrBuilder.h | 326 inline MachineInstrBuilder BuildMI(MachineFunction &MF, const DebugLoc &DL, in BuildMI() 333 inline MachineInstrBuilder BuildMI(MachineFunction &MF, const DebugLoc &DL, in BuildMI() 344 const DebugLoc &DL, const MCInstrDesc &MCID, in BuildMI() 360 const DebugLoc &DL, const MCInstrDesc &MCID, in BuildMI() 369 const DebugLoc &DL, const MCInstrDesc &MCID, in BuildMI() 379 const DebugLoc &DL, const MCInstrDesc &MCID, in BuildMI() 389 const DebugLoc &DL, in BuildMI() 399 const DebugLoc &DL, in BuildMI() 408 const DebugLoc &DL, in BuildMI() 418 const DebugLoc &DL, in BuildMI() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | MachineInstrBuilder.h | 316 inline MachineInstrBuilder BuildMI(MachineFunction &MF, const DebugLoc &DL, in BuildMI() 323 inline MachineInstrBuilder BuildMI(MachineFunction &MF, const DebugLoc &DL, in BuildMI() 334 const DebugLoc &DL, const MCInstrDesc &MCID, in BuildMI() 350 const DebugLoc &DL, const MCInstrDesc &MCID, in BuildMI() 359 const DebugLoc &DL, const MCInstrDesc &MCID, in BuildMI() 369 const DebugLoc &DL, const MCInstrDesc &MCID, in BuildMI() 379 const DebugLoc &DL, in BuildMI() 389 const DebugLoc &DL, in BuildMI() 398 const DebugLoc &DL, in BuildMI() 408 const DebugLoc &DL, in BuildMI() [all …]
|