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

  /external/llvm/lib/Target/PTX/
PTXInstrInfo.h 74 virtual bool isPredicable(MachineInstr *MI) const { return true; }
  /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/Target/Hexagon/
HexagonInstrInfo.cpp 471 bool HexagonInstrInfo::isPredicable(MachineInstr *MI) const {
472 bool isPred = MI->getDesc().isPredicable();
    [all...]
  /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/utils/TableGen/
CodeGenInstruction.h 140 bool isPredicable;
229 bool isPredicable;
  /external/llvm/lib/Target/ARM/
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...]

Completed in 152 milliseconds