HomeSort by relevance Sort by last modified time
    Searched refs:AnalyzeBranch (Results 1 - 25 of 40) sorted by null

1 2

  /external/llvm/lib/Target/NVPTX/
NVPTXInstrInfo.h 63 virtual bool AnalyzeBranch(
NVPTXInstrInfo.cpp 144 /// AnalyzeBranch - Analyze the branching code at the end of MBB, returning
167 bool NVPTXInstrInfo::AnalyzeBranch(
  /external/llvm/lib/Target/Mips/
MipsInstrInfo.h 49 virtual bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
64 BranchType AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
MipsInstrInfo.cpp 83 bool MipsInstrInfo::AnalyzeBranch(MachineBasicBlock &MBB,
89 BranchType BT = AnalyzeBranch(MBB, TBB, FBB, Cond, AllowModify, BranchInstrs);
181 AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
  /external/llvm/lib/Target/MSP430/
MSP430InstrInfo.h 76 bool AnalyzeBranch(MachineBasicBlock &MBB,
MSP430InstrInfo.cpp 169 bool MSP430InstrInfo::AnalyzeBranch(MachineBasicBlock &MBB,
  /external/llvm/lib/Target/Sparc/
SparcInstrInfo.h 65 virtual bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
  /external/llvm/lib/Target/XCore/
XCoreInstrInfo.h 52 virtual bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
XCoreInstrInfo.cpp 163 /// AnalyzeBranch - Analyze the branching code at the end of MBB, returning
187 XCoreInstrInfo::AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
  /external/llvm/lib/Target/AArch64/
AArch64InstrInfo.h 57 bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
R600InstrInfo.h 68 bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB, MachineBasicBlock *&FBB,
R600InstrInfo.cpp 177 R600InstrInfo::AnalyzeBranch(MachineBasicBlock &MBB,
183 // Most of the following comes from the ARM implementation of AnalyzeBranch
  /external/mesa3d/src/gallium/drivers/radeon/
R600InstrInfo.h 68 bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB, MachineBasicBlock *&FBB,
  /external/llvm/lib/Target/PowerPC/
PPCInstrInfo.h 114 virtual bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
  /external/llvm/lib/Target/SystemZ/
SystemZInstrInfo.h 122 virtual bool AnalyzeBranch(MachineBasicBlock &MBB,
  /external/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp 374 bool NotAnalyzed = TII->AnalyzeBranch(*Latch, TB, FB, Cond, false);
482 bool NotAnalyzed = TII->AnalyzeBranch(*Latch, TB, FB, Cond, false);
495 // Branches of form "if (!P) ..." cause HexagonInstrInfo::AnalyzeBranch
    [all...]
HexagonInstrInfo.h 59 virtual bool AnalyzeBranch(MachineBasicBlock &MBB,MachineBasicBlock *&TBB,
  /external/llvm/lib/CodeGen/
BranchFolding.cpp 199 if (!TII->AnalyzeBranch(*MBB, TBB, FBB, Cond, true))
466 !TII->AnalyzeBranch(*CurMBB, TBB, FBB, Cond, true)) {
    [all...]
TailDuplication.cpp 652 if (TII->AnalyzeBranch(*PredBB, PredTBB, PredFBB, PredCond, true))
683 if (TII->AnalyzeBranch(*PredBB, PredTBB, PredFBB, PredCond, true))
765 // EH edges are ignored by AnalyzeBranch.
771 if (TII->AnalyzeBranch(*PredBB, PredTBB, PredFBB, PredCond, true))
831 TII->AnalyzeBranch(*PredBB, PredTBB, PredFBB, PredCond, true);
854 // AnalyzeBranch.
856 !TII->AnalyzeBranch(*PrevBB, PriorTBB, PriorFBB, PriorCond, true) &&
    [all...]
MachineBlockPlacement.cpp     [all...]
MachineBasicBlock.cpp 394 bool B = TII->AnalyzeBranch(*this, TBB, FBB, Cond);
643 if (TII->AnalyzeBranch(*this, TBB, FBB, Cond)) {
681 // AnalyzeBranch fails. If this uses a jump table, we won't touch it.
685 if (TII->AnalyzeBranch(*this, TBB, FBB, Cond))
    [all...]
  /external/llvm/lib/Target/R600/
R600InstrInfo.h 142 bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB, MachineBasicBlock *&FBB,
  /external/llvm/include/llvm/Target/
TargetInstrInfo.h 245 /// AnalyzeBranch - Analyze the branching code at the end of MBB, returning
270 virtual bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
278 /// This is only invoked in cases where AnalyzeBranch returns success. It
286 /// returned by AnalyzeBranch. This is only invoked in cases where
287 /// AnalyzeBranch returns success. It returns the number of instructions
291 /// cases where AnalyzeBranch doesn't apply because there was no original
381 /// @param Cond Condition returned by AnalyzeBranch.
400 /// The condition in Cond comes from AnalyzeBranch, and it can be assumed
408 /// @param Cond Condition as computed by AnalyzeBranch.
    [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseInstrInfo.h 61 virtual bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
  /external/llvm/lib/Target/X86/
X86InstrInfo.h 50 // Artificial condition codes. These are used by AnalyzeBranch
229 virtual bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,

Completed in 332 milliseconds

1 2