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

/external/swiftshader/third_party/LLVM/lib/Target/PTX/
H A DPTXInstrInfo.h74 virtual bool isPredicable(MachineInstr *MI) const { return true; } function in class:llvm::PTXInstrInfo
/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/utils/TableGen/
H A DCodeGenInstruction.h140 bool isPredicable; member in class:llvm::CGIOperandList
238 bool isPredicable : 1;
/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DMCInstrDesc.h79 /// the predicate operand that controls an isPredicable() instruction.
305 if (isPredicable()) {
353 // isPredicable - Return true if this instruction has a predicate operand that
357 bool isPredicable() const { function in class:llvm::MCInstrDesc
/external/swiftshader/third_party/LLVM/include/llvm/Target/
H A DTargetInstrInfo.h562 /// isPredicable - Return true if the specified instruction can be predicated.
565 virtual bool isPredicable(MachineInstr *MI) const { function in class:llvm::TargetInstrInfo
566 return MI->getDesc().isPredicable();
/external/swiftshader/third_party/LLVM/utils/TableGen/
H A DCodeGenInstruction.h140 bool isPredicable; member in class:llvm::CGIOperandList
229 bool isPredicable; member in class:llvm::CodeGenInstruction
/external/llvm/include/llvm/MC/
H A DMCInstrDesc.h81 /// operand that controls an isPredicable() instruction.
264 bool isPredicable() const { return Flags & (1 << MCID::Predicable); } function in class:llvm::MCInstrDesc
538 if (isPredicable()) {
/external/llvm/include/llvm/Target/
H A DTargetInstrInfo.h1111 virtual bool isPredicable(MachineInstr &MI) const { function in class:llvm::TargetInstrInfo
1112 return MI.getDesc().isPredicable();
/external/llvm/lib/Target/Hexagon/
H A DHexagonExpandCondsets.cpp256 bool isPredicable(MachineInstr *MI);
718 bool HexagonExpandCondsets::isPredicable(MachineInstr *MI) { function in class:HexagonExpandCondsets
719 if (HII->isPredicated(*MI) || !HII->isPredicable(*MI))
969 if (!DefI || !isPredicable(DefI))
1234 if (!RDef || !HII->isPredicable(*RDef))
1240 if (!RDef || !HII->isPredicable(*RDef))
H A DHexagonInstrInfo.cpp1368 assert (isPredicable(MI) && "Expected predicable instruction");
1436 bool HexagonInstrInfo::isPredicable(MachineInstr &MI) const { function in class:HexagonInstrInfo
1437 return MI.getDesc().isPredicable();
/external/llvm/lib/Target/SystemZ/
H A DSystemZInstrInfo.cpp541 bool SystemZInstrInfo::isPredicable(MachineInstr &MI) const { function in class:SystemZInstrInfo
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
H A DARMBaseInstrInfo.cpp510 /// isPredicable - Return true if the specified instruction can be predicated.
513 bool ARMBaseInstrInfo::isPredicable(MachineInstr *MI) const { function in class:ARMBaseInstrInfo
515 if (!MCID.isPredicable())
597 MI->getOperand(NumOps - (MCID.isPredicable() ? 3 : 2));
/external/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.cpp571 /// isPredicable - Return true if the specified instruction can be predicated.
574 bool ARMBaseInstrInfo::isPredicable(MachineInstr &MI) const { function in class:ARMBaseInstrInfo
575 if (!MI.isPredicable())
1839 if (!MI->isPredicable())

Completed in 269 milliseconds