Home
last modified time | relevance | path

Searched refs:isPredicable (Results 1 – 25 of 44) sorted by relevance

12

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonPseudo.td161 let isCall = 1, hasSideEffects = 1, isPredicable = 0,
178 isPredicable = 0 in
207 let isPredicable = 0; // !if(isPred, 0, 1);
220 isPredicable = 1, hasSideEffects = 0, InputType = "reg",
234 isCodeGenOnly = 1, Defs = [PC], Uses = [R28], isPredicable = 0 in
238 let isPseudo = 1, isCall = 1, isReturn = 1, isBarrier = 1, isPredicable = 0,
244 let isPseudo = 1, isCall = 1, isReturn = 1, isBarrier = 1, isPredicable = 0,
337 isPredicable = 1,
353 Defs = [R29, R30, R31, PC], isPredicable = 0, isAsmParserOnly = 1 in {
H A DHexagonExpandCondsets.cpp221 bool isPredicable(MachineInstr *MI);
723 bool HexagonExpandCondsets::isPredicable(MachineInstr *MI) { in isPredicable() function in HexagonExpandCondsets
724 if (HII->isPredicated(*MI) || !HII->isPredicable(*MI)) in isPredicable()
961 if (!DefI || !isPredicable(DefI)) in predicate()
1228 if (!RDef || !HII->isPredicable(*RDef)) { in coalesceSegments()
1239 if (!RDef || !HII->isPredicable(*RDef)) { in coalesceSegments()
H A DHexagonEarlyIfConv.cpp482 if (!HII->isPredicable(*Def1) || !HII->isPredicable(*Def3)) in computePhiCost()
681 return MI->mayStore() && HII->isPredicable(const_cast<MachineInstr&>(*MI)); in isPredicableStore()
H A DHexagonDepInstrInfo.td57 let isPredicable = 1;
221 let isPredicable = 1;
307 let isPredicable = 1;
345 let isPredicable = 1;
357 let isPredicable = 1;
432 let isPredicable = 1;
592 let isPredicable = 1;
1068 let isPredicable = 1;
1403 let isPredicable = 1;
1415 let isPredicable = 1;
[all …]
H A DHexagonInstrInfo.h247 bool isPredicable(const MachineInstr &MI) const override;
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCInstrDesc.h329 bool isPredicable() const { return Flags & (1ULL << MCID::Predicable); } in isPredicable() function
622 if (isPredicable()) { in findFirstPredOperandIdx()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DThumb2SizeReduction.cpp806 if (!NewMCID.isPredicable()) in ReduceTo2Addr()
810 SkipPred = !NewMCID.isPredicable(); in ReduceTo2Addr()
899 if (!NewMCID.isPredicable()) in ReduceToNarrow()
903 SkipPred = !NewMCID.isPredicable(); in ReduceToNarrow()
968 if (!MCID.isPredicable() && NewMCID.isPredicable()) in ReduceToNarrow()
H A DARMInstrCDE.td65 let isPredicable = 0;
77 let isPredicable = acc;
H A DThumbRegisterInfo.cpp561 if (MI.isPredicable()) in eliminateFrameIndex()
H A DARMConstantIslandPass.cpp623 MI->getOperand(NumOps - (MI->isPredicable() ? 2 : 1)); in doInitialJumpTablePlacement()
2185 unsigned JTOpIdx = NumOps - (MI->isPredicable() ? 2 : 1); in optimizeThumb2JumpTables()
2379 unsigned JTOpIdx = NumOps - (MI->isPredicable() ? 2 : 1); in reorderThumb2JumpTables()
H A DARMBaseInstrInfo.h181 bool isPredicable(const MachineInstr &MI) const override;
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DCodeGenInstruction.h152 bool isPredicable; variable
256 bool isPredicable : 1; variable
H A DCodeGenInstruction.cpp28 isPredicable = false; in CGIOperandList()
109 isPredicable = true; in CGIOperandList()
385 isPredicable = !R->getValueAsBit("isUnpredicable") && ( in CodeGenInstruction()
386 Operands.isPredicable || R->getValueAsBit("isPredicable")); in CodeGenInstruction()
H A DInstrDocsEmitter.cpp118 FLAG(isPredicable) in EmitInstrDocs()
H A DInstrInfoEmitter.cpp964 if (Inst.isPredicable) OS << "|(1ULL<<MCID::Predicable)"; in emitRecord()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DR600InstrInfo.h182 bool isPredicable(const MachineInstr &MI) const override;
H A DR600InstrInfo.cpp854 bool R600InstrInfo::isPredicable(const MachineInstr &MI) const { in isPredicable() function in R600InstrInfo
872 return TargetInstrInfo::isPredicable(MI); in isPredicable()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZInstrInfo.h247 bool isPredicable(const MachineInstr &MI) const override;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/CSKY/
H A DCSKYInstrInfo.td307 let isBarrier = 1, isPredicable = 1 in
346 let isPredicable = 1;
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DTargetInstrInfo.h1471 virtual bool isPredicable(const MachineInstr &MI) const { in isPredicable() function
1472 return MI.getDesc().isPredicable(); in isPredicable()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DImplicitNullChecks.cpp374 if (!MI.mayLoadOrStore() || MI.isPredicable()) in isSuitableMemoryOp()
H A DTargetInstrInfo.cpp326 if (!MI.isPredicable()) in isUnpredicatedTerminator()
339 if (!MI.isPredicable()) in PredicateInstruction()
H A DEarlyIfConversion.cpp328 if (!TII->isPredicable(*I) || TII->isPredicated(*I)) { in canPredicateInstrs()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/
H A DLanaiInstrInfo.cpp467 if (!MI->isPredicable()) in canFoldIntoSelect()
/netbsd-src/external/apache2/llvm/dist/llvm/docs/TableGen/
H A Dindex.rst127 bit isPredicable = 0;

12