Searched defs:isPredicable (Results 1 - 5 of 5) sorted by relevance

/external/llvm/include/llvm/MC/
H A DMCInstrDesc.h79 /// the predicate operand that controls an isPredicable() instruction.
261 // isPredicable - Return true if this instruction has a predicate operand that
265 bool isPredicable() const { function in class:llvm::MCInstrDesc
531 if (isPredicable()) {
/external/llvm/utils/TableGen/
H A DCodeGenInstruction.h140 bool isPredicable; member in class:llvm::CGIOperandList
233 bool isPredicable; member in class:llvm::CodeGenInstruction
/external/llvm/include/llvm/Target/
H A DTargetInstrInfo.h676 /// isPredicable - Return true if the specified instruction can be predicated.
679 virtual bool isPredicable(MachineInstr *MI) const { function in class:llvm::TargetInstrInfo
680 return MI->getDesc().isPredicable();
/external/llvm/lib/Target/Hexagon/
H A DHexagonInstrInfo.cpp1311 bool HexagonInstrInfo::isPredicable(MachineInstr *MI) const { function in class:HexagonInstrInfo
1312 bool isPred = MI->getDesc().isPredicable();
2229 assert (isPredicable(MI) && "Expected predicable instruction");
/external/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.cpp519 /// isPredicable - Return true if the specified instruction can be predicated.
522 bool ARMBaseInstrInfo::isPredicable(MachineInstr *MI) const { function in class:ARMBaseInstrInfo
523 if (!MI->isPredicable())
607 MI->getOperand(NumOps - (MI->isPredicable() ? 3 : 2));
1595 if (!MI->isPredicable())

Completed in 120 milliseconds