HomeSort by relevance Sort by last modified time
    Searched refs:DebugLoc (Results 126 - 150 of 195) sorted by null

1 2 3 4 56 7 8

  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.h 162 DebugLoc dl);
199 DebugLoc dl = Op.getDebugLoc();
209 DebugLoc dl = Op.getDebugLoc();
362 ISD::CondCode &CCCode, DebugLoc dl);
435 ISD::CondCode &CCCode, DebugLoc dl);
491 ISD::CondCode &CCCode, DebugLoc dl);
    [all...]
LegalizeFloatTypes.cpp 177 DebugLoc dl = N->getDebugLoc();
476 DebugLoc dl = N->getDebugLoc();
527 DebugLoc dl = N->getDebugLoc();
544 DebugLoc dl = N->getDebugLoc();
613 ISD::CondCode &CCCode, DebugLoc dl) {
    [all...]
FastISel.cpp 302 DebugLoc OldDL = DL;
304 DL = DebugLoc();
763 DL = DebugLoc();
769 DL = DebugLoc();
773 DL = DebugLoc();
781 FastISel::FastEmitBranch(MachineBasicBlock *MSucc, DebugLoc DL) {
    [all...]
  /external/llvm/lib/Target/CellSPU/
SPUISelLowering.cpp 567 DebugLoc dl = Op.getDebugLoc();
772 DebugLoc dl = Op.getDebugLoc();
    [all...]
  /external/llvm/lib/Target/ARM/
ARMConstantIslandPass.cpp 414 BuildMI(BB, DebugLoc(), TII->get(ARM::CONSTPOOL_ENTRY))
743 BuildMI(OrigBB, DebugLoc(), TII->get(Opc)).addMBB(NewBB);
745 BuildMI(OrigBB, DebugLoc(), TII->get(Opc)).addMBB(NewBB)
    [all...]
ARMISelLowering.cpp     [all...]
ARMLoadStoreOptimizer.cpp 93 DebugLoc dl, SmallVector<std::pair<unsigned, bool>, 8> &Regs);
106 DebugLoc dl,
293 unsigned PredReg, unsigned Scratch, DebugLoc dl,
375 DebugLoc dl,
448 DebugLoc dl = Loc->getDebugLoc();
691 DebugLoc dl = MI->getDebugLoc();
827 DebugLoc dl = MI->getDebugLoc();
    [all...]
ARMFrameLowering.cpp 109 DebugLoc dl, const ARMBaseInstrInfo &TII,
134 DebugLoc dl = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc();
315 DebugLoc dl = MBBI->getDebugLoc();
548 DebugLoc DL;
611 DebugLoc DL = MI->getDebugLoc();
    [all...]
ARMISelDAGToDAG.cpp     [all...]
Thumb2ITBlockPass.cpp 171 DebugLoc dl = MI->getDebugLoc();
  /external/llvm/include/llvm/Target/
TargetLowering.h 31 #include "llvm/Support/DebugLoc.h"
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp 102 SDValue SelectCC(SDValue LHS, SDValue RHS, ISD::CondCode CC, DebugLoc dl);
201 DebugLoc dl;
239 DebugLoc dl;
378 DebugLoc dl = N->getDebugLoc();
447 ISD::CondCode CC, DebugLoc dl) {
610 DebugLoc dl = N->getDebugLoc();
737 DebugLoc dl = N->getDebugLoc();
    [all...]
PPCRegisterInfo.cpp 295 DebugLoc dl = MI->getDebugLoc();
351 DebugLoc dl = MI.getDebugLoc();
461 DebugLoc dl = MI.getDebugLoc();
507 DebugLoc dl = MI.getDebugLoc();
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 762 DebugLoc ScopeLoc) {
816 const std::pair<unsigned, DebugLoc> &VP = VI->second;
    [all...]
  /external/llvm/lib/Target/X86/
X86FloatingPoint.cpp 236 DebugLoc dl = I == MBB->end() ? DebugLoc() : I->getDebugLoc();
256 DebugLoc dl = I == MBB->end() ? DebugLoc() : I->getDebugLoc();
830 DebugLoc dl = MI->getDebugLoc();
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LICM.cpp 617 DebugLoc DL;
624 DebugLoc dl, int alignment)
777 DebugLoc DL = LoopUses[0]->getDebugLoc();
  /external/llvm/lib/Target/Alpha/
AlphaISelDAGToDAG.cpp 211 DebugLoc dl = N->getDebugLoc();
398 DebugLoc dl = N->getDebugLoc();
  /external/llvm/lib/CodeGen/
MachineBasicBlock.cpp 288 DebugLoc dl; // FIXME: this is nowhere
506 DebugLoc dl; // FIXME: this is nowhere
755 /// findDebugLoc - find the next valid DebugLoc starting at MBBI, skipping
757 DebugLoc
759 DebugLoc DL;
762 // Skip debug declarations, we don't want a DebugLoc from them.
MachineRegisterInfo.cpp 232 BuildMI(*EntryMBB, EntryMBB->begin(), DebugLoc(),
TailDuplication.cpp 715 TII->InsertBranch(*PredBB, PredTBB, PredFBB, PredCond, DebugLoc());
797 Copies.push_back(BuildMI(*PredBB, Loc, DebugLoc(),
857 Copies.push_back(BuildMI(*PrevBB, Loc, DebugLoc(),
    [all...]
MachineInstr.cpp 499 /// MachineInstr ctor - As above, but with a DebugLoc.
500 MachineInstr::MachineInstr(const MCInstrDesc &tid, const DebugLoc dl,
503 MemRefs(0), MemRefsEnd(0), Parent(0), debugLoc(dl) {
530 /// MachineInstr ctor - As above, but with a DebugLoc.
532 MachineInstr::MachineInstr(MachineBasicBlock *MBB, const DebugLoc dl,
535 MemRefs(0), MemRefsEnd(0), Parent(0), debugLoc(dl) {
551 Parent(0), debugLoc(MI.getDebugLoc()) {
780 // If DebugLoc does not match then two dbg.values are not identical.
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 360 DebugLoc PrevDL;
450 virtual void processDebugLoc(DebugLoc DL, bool BeforePrintingInsn);
748 void JITEmitter::processDebugLoc(DebugLoc DL, bool BeforePrintingInsn) {
    [all...]
  /external/llvm/lib/Target/MBlaze/
MBlazeISelDAGToDAG.cpp 191 DebugLoc dl = Node->getDebugLoc();
  /external/llvm/lib/Target/MSP430/
MSP430RegisterInfo.cpp 173 DebugLoc dl = MI.getDebugLoc();
  /external/llvm/lib/Target/Sparc/
SparcISelDAGToDAG.cpp 138 DebugLoc dl = N->getDebugLoc();

Completed in 1050 milliseconds

1 2 3 4 56 7 8