/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 …]
|
D | DiagnosticInfo.cpp | 198 const Function &Fn, const DebugLoc &DLoc, in emitOptimizationRemark() 205 const DebugLoc &DLoc, in emitOptimizationRemarkMissed() 213 const DebugLoc &DLoc, in emitOptimizationRemarkAnalysis() 222 const DebugLoc &DLoc, in emitOptimizationRemarkAnalysisFPCommute() 231 const DebugLoc &DLoc, in emitOptimizationRemarkAnalysisAliasing() 253 const DebugLoc &DLoc, const Twine &Msg) { in emitLoopVectorizeWarning() 259 const DebugLoc &DLoc, const Twine &Msg) { in emitLoopInterleaveWarning()
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | DebugLoc.h | 27 class DebugLoc { 28 friend struct DenseMapInfo<DebugLoc>; 32 static DebugLoc getEmptyKey() { 33 DebugLoc DL; 40 static DebugLoc getTombstoneKey() { 41 DebugLoc DL; 55 DebugLoc() : LineCol(0), ScopeIdx(0) {} // Defaults to unknown. 59 static DebugLoc get(unsigned Line, unsigned Col, 63 static DebugLoc getFromDILocation(MDNode *N); 66 static DebugLoc getFromDILexicalBlock(MDNode *N); [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/swiftshader/third_party/LLVM/lib/VMCore/ |
D | DebugLoc.cpp | 19 MDNode *DebugLoc::getScope(const LLVMContext &Ctx) const { in getScope() 36 MDNode *DebugLoc::getInlinedAt(const LLVMContext &Ctx) const { in getInlinedAt() 48 void DebugLoc::getScopeAndInlinedAt(MDNode *&Scope, MDNode *&IA, in getScopeAndInlinedAt() 73 DebugLoc DebugLoc::get(unsigned Line, unsigned Col, in get() 75 DebugLoc Result; in get() 99 MDNode *DebugLoc::getAsMDNode(const LLVMContext &Ctx) const { in getAsMDNode() 116 DebugLoc DebugLoc::getFromDILocation(MDNode *N) { in getFromDILocation() 117 if (N == 0 || N->getNumOperands() != 4) return DebugLoc(); in getFromDILocation() 120 if (Scope == 0) return DebugLoc(); in getFromDILocation() 132 DebugLoc DebugLoc::getFromDILexicalBlock(MDNode *N) { in getFromDILexicalBlock() [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/ |
D | SelectionDAG.h | 352 SDValue getGlobalAddress(const GlobalValue *GV, DebugLoc DL, EVT VT, 355 SDValue getTargetGlobalAddress(const GlobalValue *GV, DebugLoc DL, EVT VT, 388 SDValue getBasicBlock(MachineBasicBlock *MBB, DebugLoc dl); 390 SDValue getExternalSymbol(const char *Sym, DebugLoc dl, EVT VT); 395 SDValue getEHLabel(DebugLoc dl, SDValue Root, MCSymbol *Label); 399 SDValue getCopyToReg(SDValue Chain, DebugLoc dl, unsigned Reg, SDValue N) { 407 SDValue getCopyToReg(SDValue Chain, DebugLoc dl, unsigned Reg, SDValue N, 415 SDValue getCopyToReg(SDValue Chain, DebugLoc dl, SDValue Reg, SDValue N, 422 SDValue getCopyFromReg(SDValue Chain, DebugLoc dl, unsigned Reg, EVT VT) { 431 SDValue getCopyFromReg(SDValue Chain, DebugLoc dl, unsigned Reg, EVT VT, [all …]
|
D | SelectionDAGNodes.h | 144 inline const DebugLoc getDebugLoc() const; 341 DebugLoc debugLoc; 412 const DebugLoc getDebugLoc() const { return debugLoc; } 416 void setDebugLoc(const DebugLoc dl) { debugLoc = dl; } 677 SDNode(unsigned Opc, const DebugLoc dl, SDVTList VTs, const SDValue *Ops, 694 SDNode(unsigned Opc, const DebugLoc dl, SDVTList VTs) 802 inline const DebugLoc SDValue::getDebugLoc() const { 830 UnarySDNode(unsigned Opc, DebugLoc dl, SDVTList VTs, SDValue X) 841 BinarySDNode(unsigned Opc, DebugLoc dl, SDVTList VTs, SDValue X, SDValue Y) 852 TernarySDNode(unsigned Opc, DebugLoc dl, SDVTList VTs, SDValue X, SDValue Y, [all …]
|
D | LexicalScopes.h | 71 void getMachineBasicBlocks(DebugLoc DL, 76 bool dominates(DebugLoc DL, MachineBasicBlock *MBB); 80 LexicalScope *findLexicalScope(DebugLoc DL); 94 LexicalScope *findInlinedScope(DebugLoc DL) { in findInlinedScope() 110 LexicalScope *getOrCreateLexicalScope(DebugLoc DL); 137 DenseMap<DebugLoc, LexicalScope *> InlinedLexicalScopeMap;
|
/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/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/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | LexicalScopes.cpp | 66 DebugLoc PrevDL; in extractLexicalScopes() 72 const DebugLoc MIDL = MInsn->getDebugLoc(); in extractLexicalScopes() 116 LexicalScope *LexicalScopes::findLexicalScope(DebugLoc DL) { in findLexicalScope() 129 return InlinedLexicalScopeMap.lookup(DebugLoc::getFromDILocation(IA)); in findLexicalScope() 135 LexicalScope *LexicalScopes::getOrCreateLexicalScope(DebugLoc DL) { in getOrCreateLexicalScope() 164 Parent = getOrCreateLexicalScope(DebugLoc::getFromDILexicalBlock(Scope)); in getOrCreateRegularScope() 181 DebugLoc InlinedLoc = DebugLoc::getFromDILocation(InlinedAt); in getOrCreateInlinedScope() 268 getMachineBasicBlocks(DebugLoc DL, in getMachineBasicBlocks() 292 bool LexicalScopes::dominates(DebugLoc DL, MachineBasicBlock *MBB) { in dominates() 304 DebugLoc IDL = I->getDebugLoc(); in dominates()
|
/external/llvm/include/llvm/CodeGen/ |
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 …]
|
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 …]
|
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/ |
D | PPCISelLowering.h | 384 DebugLoc dl) const; 404 SDValue LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG, DebugLoc dl) const; 419 DebugLoc dl, SelectionDAG &DAG, 421 SDValue FinishCall(CallingConv::ID CallConv, DebugLoc dl, bool isTailCall, 436 DebugLoc dl, SelectionDAG &DAG, 445 DebugLoc dl, SelectionDAG &DAG, 459 DebugLoc dl, SelectionDAG &DAG) const; 465 DebugLoc dl, SelectionDAG &DAG, 471 DebugLoc dl, SelectionDAG &DAG, 480 DebugLoc dl, SelectionDAG &DAG, [all …]
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
D | SDNodeDbgValue.h | 49 DebugLoc DL; 54 SDDbgValue(MDNode *mdP, SDNode *N, unsigned R, uint64_t off, DebugLoc dl, in SDDbgValue() 63 SDDbgValue(MDNode *mdP, const Value *C, uint64_t off, DebugLoc dl, in SDDbgValue() 71 SDDbgValue(MDNode *mdP, unsigned FI, uint64_t off, DebugLoc dl, unsigned O) : in SDDbgValue() 99 DebugLoc getDebugLoc() { return DL; } in getDebugLoc()
|
/external/swiftshader/third_party/LLVM/lib/Target/SystemZ/ |
D | SystemZISelLowering.h | 100 DebugLoc dl, SelectionDAG &DAG, 107 DebugLoc dl, 114 DebugLoc dl, SelectionDAG &DAG, 121 DebugLoc dl, SelectionDAG &DAG, 129 DebugLoc dl, SelectionDAG &DAG, 137 DebugLoc dl, SelectionDAG &DAG) const;
|
/external/clang/lib/CodeGen/ |
D | CGLoopInfo.h | 71 llvm::DebugLoc Location); 104 llvm::DebugLoc Location = llvm::DebugLoc()); 110 llvm::DebugLoc Location = llvm::DebugLoc());
|
/external/swiftshader/third_party/LLVM/lib/Target/PTX/ |
D | PTXInstrInfo.h | 41 MachineBasicBlock::iterator I, DebugLoc DL, 50 DebugLoc DL) const; 88 DebugLoc DL) const; 116 DebugLoc dl, EVT VT, 120 DebugLoc dl, EVT VT,
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SDNodeDbgValue.h | 49 DebugLoc DL; 58 uint64_t off, DebugLoc dl, unsigned O) in SDDbgValue() 68 DebugLoc dl, unsigned O) in SDDbgValue() 76 SDDbgValue(MDNode *Var, MDNode *Expr, unsigned FI, uint64_t off, DebugLoc dl, in SDDbgValue() 112 DebugLoc getDebugLoc() const { return DL; } in getDebugLoc()
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64InstrInfo.h | 117 const DebugLoc &DL) const; 119 const DebugLoc &DL, unsigned DestReg, unsigned SrcReg, 123 const DebugLoc &DL, unsigned DestReg, unsigned SrcReg, 151 const DebugLoc &DL) const override; 157 const DebugLoc &DL, unsigned DstReg, 208 void instantiateCondBranch(MachineBasicBlock &MBB, const DebugLoc &DL, 220 const DebugLoc &DL, unsigned DestReg, unsigned SrcReg,
|
/external/swiftshader/third_party/LLVM/lib/Target/MSP430/ |
D | MSP430ISelLowering.h | 131 DebugLoc dl, SelectionDAG &DAG, 138 DebugLoc dl, 145 DebugLoc dl, SelectionDAG &DAG, 152 DebugLoc dl, SelectionDAG &DAG, 160 DebugLoc dl, SelectionDAG &DAG, 168 DebugLoc dl, SelectionDAG &DAG) const;
|
/external/swiftshader/third_party/LLVM/lib/Target/ARM/ |
D | ARMISelLowering.h | 386 void PassF64ArgInRegs(DebugLoc dl, SelectionDAG &DAG, 395 DebugLoc dl) const; 400 DebugLoc dl, SelectionDAG &DAG, 435 DebugLoc dl, SelectionDAG &DAG, 442 DebugLoc dl, SelectionDAG &DAG, 446 DebugLoc dl, SDValue &Chain, unsigned ArgOffset) 459 DebugLoc dl, SelectionDAG &DAG, 482 DebugLoc dl, SelectionDAG &DAG) const; 489 SDValue &ARMcc, SelectionDAG &DAG, DebugLoc dl) const; 491 SelectionDAG &DAG, DebugLoc dl) const;
|
/external/swiftshader/third_party/LLVM/lib/Target/XCore/ |
D | XCoreISelLowering.h | 115 DebugLoc dl, SelectionDAG &DAG, 123 DebugLoc dl, SelectionDAG &DAG, 128 DebugLoc dl, SelectionDAG &DAG, 174 DebugLoc dl, SelectionDAG &DAG, 184 DebugLoc dl, SelectionDAG &DAG, 192 DebugLoc dl, SelectionDAG &DAG) const;
|
/external/llvm/lib/Target/ARM/ |
D | A15SDOptimizer.cpp | 71 const DebugLoc &DL, unsigned Reg, unsigned Lane, 76 const DebugLoc &DL, unsigned DReg, 81 const DebugLoc &DL, unsigned Ssub0, unsigned Ssub1); 85 const DebugLoc &DL, unsigned Reg1, 90 const DebugLoc &DL, unsigned DReg, 95 const DebugLoc &DL); 428 const DebugLoc &DL, unsigned Reg, in createDupLane() 446 const DebugLoc &DL, unsigned DReg, unsigned Lane, in createExtractSubreg() 461 const DebugLoc &DL, unsigned Reg1, unsigned Reg2) { in createRegSequence() 478 const DebugLoc &DL, unsigned Ssub0, in createVExt() [all …]
|