HomeSort by relevance Sort by last modified time
    Searched refs:isPredicated (Results 1 - 18 of 18) sorted by null

  /external/llvm/lib/Target/PTX/
PTXInstrInfo.h 58 virtual bool isPredicated(const MachineInstr *MI) const;
PTXInstrInfo.cpp 113 bool PTXInstrInfo::isPredicated(const MachineInstr *MI) const {
119 return !isPredicated(MI) && MI->isTerminator();
  /external/llvm/lib/Target/Hexagon/
HexagonInstrInfo.h 125 virtual bool isPredicated(const MachineInstr *MI) const;
HexagonPeephole.cpp 188 if (QII->isPredicated(MI)) {
HexagonInstrInfo.cpp 149 if (isPredicated(Term) && !AnalyzeBranch(MBB, NewTBB, NewFBB, Cond,
    [all...]
  /external/llvm/lib/CodeGen/
CriticalAntiDepBreaker.cpp 199 TII->isPredicated(MI);
253 if (!TII->isPredicated(MI)) {
594 TII->isPredicated(MI))
IfConversion.cpp 657 bool isPredicated = TII->isPredicated(I);
661 if (!isPredicated) {
678 if (BBI.ClobbersPred && !isPredicated) {
    [all...]
RegisterScavenging.cpp 148 bool isPred = TII->isPredicated(MI);
AggressiveAntiDepBreaker.cpp 388 TII->isPredicated(MI)) {
456 TII->isPredicated(MI);
    [all...]
TargetInstrInfoImpl.cpp 161 return !isPredicated(MI);
MachineVerifier.cpp 470 !TII->isPredicated(&MBB->back())) {
614 if (MI->isTerminator() && !TII->isPredicated(MI)) {
    [all...]
BranchFolding.cpp     [all...]
MachineBasicBlock.cpp 573 // is possible. The isPredicated check is needed because this code can be
576 return empty() || !back().isBarrier() || TII->isPredicated(&back());
    [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseInstrInfo.h 75 bool isPredicated(const MachineInstr *MI) const;
ARMBaseInstrInfo.cpp 440 bool ARMBaseInstrInfo::isPredicated(const MachineInstr *MI) const {
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430InstrInfo.cpp 166 return !isPredicated(MI);
  /external/llvm/include/llvm/Target/
TargetInstrInfo.h 547 /// isPredicated - Returns true if the instruction is already predicated.
549 virtual bool isPredicated(const MachineInstr *MI) const {
    [all...]
  /external/llvm/lib/Target/X86/
X86InstrInfo.cpp     [all...]

Completed in 344 milliseconds