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

/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DAMDGPUInstrInfo.cpp227 bool AMDGPUInstrInfo::isPredicable(MachineInstr *MI) const { function in class:AMDGPUInstrInfo
229 return MI->getDesc().isPredicable();
H A DR600InstrInfo.cpp360 R600InstrInfo::isPredicable(MachineInstr *MI) const function in class:R600InstrInfo
362 return AMDGPUInstrInfo::isPredicable(MI);
/external/mesa3d/src/gallium/drivers/radeon/
H A DAMDGPUInstrInfo.cpp227 bool AMDGPUInstrInfo::isPredicable(MachineInstr *MI) const { function in class:AMDGPUInstrInfo
229 return MI->getDesc().isPredicable();
H A DR600InstrInfo.cpp360 R600InstrInfo::isPredicable(MachineInstr *MI) const function in class:R600InstrInfo
362 return AMDGPUInstrInfo::isPredicable(MI);
/external/llvm/lib/Target/R600/
H A DAMDGPUInstrInfo.cpp258 bool AMDGPUInstrInfo::isPredicable(MachineInstr *MI) const { function in class:AMDGPUInstrInfo
260 return MI->getDesc().isPredicable();
/external/llvm/utils/TableGen/
H A DCodeGenInstruction.h140 bool isPredicable; member in class:llvm::CGIOperandList
238 bool isPredicable : 1;
/external/llvm/include/llvm/MC/
H A DMCInstrDesc.h82 /// the predicate operand that controls an isPredicable() instruction.
310 bool isPredicable() const { function in class:llvm::MCInstrDesc
590 if (isPredicable()) {
/external/llvm/include/llvm/Target/
H A DTargetInstrInfo.h727 /// isPredicable - Return true if the specified instruction can be predicated.
730 virtual bool isPredicable(MachineInstr *MI) const { function in class:llvm::TargetInstrInfo
731 return MI->getDesc().isPredicable();
/external/llvm/lib/Target/SystemZ/
H A DSystemZInstrInfo.cpp506 bool SystemZInstrInfo::isPredicable(MachineInstr *MI) const { function in class:SystemZInstrInfo
/external/llvm/lib/Target/Hexagon/
H A DHexagonInstrInfo.cpp642 bool HexagonInstrInfo::isPredicable(MachineInstr *MI) const { function in class:HexagonInstrInfo
643 bool isPred = MI->getDesc().isPredicable();
808 assert (isPredicable(MI) && "Expected predicable instruction");
/external/llvm/lib/Target/PowerPC/
H A DPPCInstrInfo.cpp1088 // here), always return false. In doing so, we let isPredicable() be the
1266 bool PPCInstrInfo::isPredicable(MachineInstr *MI) const { function in class:PPCInstrInfo
/external/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.cpp521 /// isPredicable - Return true if the specified instruction can be predicated.
524 bool ARMBaseInstrInfo::isPredicable(MachineInstr *MI) const { function in class:ARMBaseInstrInfo
525 if (!MI->isPredicable())
626 MI->getOperand(NumOps - (MI->isPredicable() ? 3 : 2));
1694 if (!MI->isPredicable())

Completed in 2107 milliseconds