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

  /external/llvm/include/llvm/MC/
MCInstrDesc.h 79 /// the predicate operand that controls an isPredicable() instruction.
260 // isPredicable - Return true if this instruction has a predicate operand that
264 bool isPredicable() const {
524 if (isPredicable()) {
  /external/llvm/lib/Target/PTX/
PTXInstrInfo.h 74 virtual bool isPredicable(MachineInstr *MI) const { return true; }
  /external/llvm/utils/TableGen/
CodeGenInstruction.h 140 bool isPredicable;
229 bool isPredicable;
CodeGenInstruction.cpp 29 isPredicable = false;
95 isPredicable = true;
305 isPredicable = Operands.isPredicable || R->getValueAsBit("isPredicable");
InstrInfoEmitter.cpp 311 if (Inst.isPredicable) OS << "|(1<<MCID::Predicable)";
  /external/llvm/lib/Target/Hexagon/
HexagonInstrInfo.h 110 virtual bool isPredicable(MachineInstr *MI) const;
HexagonInstrInfo.cpp 471 bool HexagonInstrInfo::isPredicable(MachineInstr *MI) const {
472 bool isPred = MI->getDesc().isPredicable();
    [all...]
  /external/llvm/lib/Target/ARM/
Thumb2SizeReduction.cpp 646 if (!NewMCID.isPredicable())
650 SkipPred = !NewMCID.isPredicable();
738 if (!NewMCID.isPredicable())
742 SkipPred = !NewMCID.isPredicable();
796 if (!MCID.isPredicable() && NewMCID.isPredicable())
    [all...]
ARMBaseInstrInfo.h 94 virtual bool isPredicable(MachineInstr *MI) const;
ARMConstantIslandPass.cpp     [all...]
Thumb1RegisterInfo.cpp 721 if (MI.isPredicable()) {
ARMBaseInstrInfo.cpp 519 /// isPredicable - Return true if the specified instruction can be predicated.
522 bool ARMBaseInstrInfo::isPredicable(MachineInstr *MI) const {
523 if (!MI->isPredicable())
607 MI->getOperand(NumOps - (MI->isPredicable() ? 3 : 2));
    [all...]
ARMFastISel.cpp 249 // If we're a thumb2 or not NEON function we were handled via isPredicable.
273 if (TII.isPredicable(MI) || isARMNEONPred(MI))
    [all...]
  /external/llvm/include/llvm/Target/
TargetInstrInfo.h 579 /// isPredicable - Return true if the specified instruction can be predicated.
582 virtual bool isPredicable(MachineInstr *MI) const {
583 return MI->getDesc().isPredicable();
    [all...]
  /external/llvm/lib/CodeGen/
TargetInstrInfoImpl.cpp 159 if (!MI->isPredicable())
173 if (!MI->isPredicable())
MachineInstr.cpp     [all...]
IfConversion.cpp 617 /// in the block are isPredicable(). Also checks if the block contains any
698 if (!TII->isPredicable(I)) {
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430InstrInfo.cpp 164 if (!MI->isPredicable())
  /external/llvm/include/llvm/CodeGen/
MachineInstr.h 396 // isPredicable - Return true if this instruction has a predicate operand that
400 bool isPredicable(QueryType Type = AllInBundle) const {
    [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86InstrInfo.cpp     [all...]

Completed in 624 milliseconds