Home
last modified time | relevance | path

Searched refs:isPredicated (Results 1 – 25 of 94) sorted by relevance

1234

/external/llvm/lib/Target/Hexagon/
DHexagonIsetDx.td32 let Defs = [PC], Uses = [P0, R31], isCodeGenOnly = 1, isPredicated = 1, isPredicatedFalse = 1, isBr…
53 let Defs = [PC, R31, R29, R30], Uses = [R30, P0], isCodeGenOnly = 1, isPredicated = 1, isPredicated…
93 let Uses = [P0], isCodeGenOnly = 1, isPredicated = 1, isPredicatedNew = 1, hasSideEffects = 0, hasN…
122 let Defs = [PC], Uses = [P0, R31], isCodeGenOnly = 1, isPredicated = 1, isPredicatedNew = 1, isBran…
211 let Defs = [PC, R31, R29, R30], Uses = [R30, P0], isCodeGenOnly = 1, isPredicated = 1, mayLoad = 1,…
409 let Uses = [P0], isCodeGenOnly = 1, isPredicated = 1, isPredicatedFalse = 1, hasSideEffects = 0, ha…
536 let Defs = [PC], Uses = [P0, R31], isCodeGenOnly = 1, isPredicated = 1, isPredicatedFalse = 1, isPr…
547 let Uses = [P0], isCodeGenOnly = 1, isPredicated = 1, hasSideEffects = 0, hasNewValue = 1, opNewVal…
599 let Defs = [PC], Uses = [P0, R31], isCodeGenOnly = 1, isPredicated = 1, isBranch = 1, isIndirectBra…
609 let Uses = [P0], isCodeGenOnly = 1, isPredicated = 1, isPredicatedFalse = 1, isPredicatedNew = 1, h…
[all …]
DHexagonVLIWPacketizer.cpp447 if (!HII->isPredicated(MI)) in getPredicateSense()
579 if (HII->isPredicated(*PacketMI)) { in canPromoteToNewValueStore()
580 if (!HII->isPredicated(*MI)) in canPromoteToNewValueStore()
802 if (!HII->isPredicated(*I)) in restrictingDepExistInPacket()
830 assert(QII->isPredicated(MI) && "Must be predicated instruction"); in getPredicatedRegister()
1054 if (HII->isPredicated(*I) || HII->isPredicated(*J)) in hasDeadDependence()
1094 if (HII->isPredicated(*MI) && HII->isPredicatedNew(*MI) && HII->isJumpR(MI)) in hasControlDependence()
1284 if (HII->isPredicated(*I) && HII->isPredicated(*J) && in isLegalToPacketizeTogether()
DHexagonExpandCondsets.cpp372 if (HII->isPredicated(*DefI)) in updateKillFlags()
460 if (HII->isPredicated(*DefI)) in updateDeadsInRange()
512 if (!HII->isPredicated(*DefI)) in updateDeadsInRange()
719 if (HII->isPredicated(*MI) || !HII->isPredicable(*MI)) in isPredicable()
755 if (PredValid && HII->isPredicated(*MI)) { in getReachingDefForPred()
924 if (!HII->isPredicated(*MI)) in renameInRange()
998 if (PredValid && HII->isPredicated(*MI) && MI->readsRegister(PredR)) in predicate()
DHexagonInstrFormatsV4.td67 bits<1> isPredicated = 0;
68 let TSFlags{6} = isPredicated;
DHexagonInstrInfo.h206 bool isPredicated(const MachineInstr &MI) const override;
334 bool isPredicated(unsigned Opcode) const;
DHexagon.td224 let RowFields = ["BaseOpcode", "PNewValue", "PredSense", "isBranch", "isPredicated"];
232 let RowFields = ["BaseOpcode", "PNewValue", "PredSense", "isBranch", "isPredicated"];
DHexagonInstrInfo.cpp589 if (Term != MBB.end() && isPredicated(*Term) && in InsertBranch()
1354 bool HexagonInstrInfo::isPredicated(const MachineInstr &MI) const { in isPredicated() function in HexagonInstrInfo
1740 return (MI->isBranch() && isPredicated(*MI)) || in isCondInst()
1745 (MI->mayStore() && isPredicated(*MI) && !isNewValueStore(MI) && in isCondInst()
1811 if (!MI->getDesc().mayLoad() || !isPredicated(*MI)) in isConditionalLoad()
2017 if (isNewValueInst(MI) || (isPredicated(*MI) && isPredicatedNew(*MI))) in isDotNewInst()
2352 return isNewValue(Opcode) && get(Opcode).isBranch() && isPredicated(Opcode); in isNewValueJump()
2384 assert(isPredicated(MI)); in isPredicatedNew()
2391 assert(isPredicated(Opcode)); in isPredicatedNew()
2412 bool HexagonInstrInfo::isPredicated(unsigned Opcode) const { in isPredicated() function in HexagonInstrInfo
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
DHexagonDepInstrInfo.td630 let isPredicated = 1;
646 let isPredicated = 1;
662 let isPredicated = 1;
682 let isPredicated = 1;
703 let isPredicated = 1;
722 let isPredicated = 1;
743 let isPredicated = 1;
758 let isPredicated = 1;
774 let isPredicated = 1;
788 let isPredicated = 1;
[all …]
DHexagonVLIWPacketizer.cpp357 return HII->isPredicated(MI) && HII->getDotNewPredOp(MI, nullptr) > 0; in isNewifiable()
559 if (!HII->isPredicated(MI)) in getPredicateSense()
690 if (HII->isPredicated(PacketMI)) { in canPromoteToNewValueStore()
691 if (!HII->isPredicated(MI)) in canPromoteToNewValueStore()
919 if (!HII->isPredicated(*I)) in restrictingDepExistInPacket()
946 assert(QII->isPredicated(MI) && "Must be predicated instruction"); in getPredicatedRegister()
1200 if (HII->isPredicated(I) || HII->isPredicated(J)) in hasDeadDependence()
1240 if (HII->isPredicated(MI) && HII->isPredicatedNew(MI) && HII->isJumpR(MI)) in hasControlDependence()
1461 if (HII->isPredicated(I) && HII->isPredicated(J) && in isLegalToPacketizeTogether()
DHexagonInstrFormatsV4.td55 bits<1> isPredicated = 0;
56 let TSFlags{6} = isPredicated;
DHexagonInstrFormats.td85 bits<1> isPredicated = 0;
86 let TSFlags{9} = isPredicated;
180 let PredSense = !if(isPredicated, !if(isPredicatedFalse, "false", "true"),
DHexagonExpandCondsets.cpp343 if (HII->isPredicated(*DefI)) in updateKillFlags()
421 if (HII->isPredicated(*DefI)) in updateDeadsInRange()
491 if (!HII->isPredicated(*DefI)) in updateDeadsInRange()
723 if (HII->isPredicated(*MI) || !HII->isPredicable(*MI)) in isPredicable()
758 if (PredValid && HII->isPredicated(*MI)) { in getReachingDefForPred()
923 if (!HII->isPredicated(*MI)) in renameInRange()
996 if (PredValid && HII->isPredicated(*MI) && MI->readsRegister(PredR)) in predicate()
DHexagonInstrInfo.h233 bool isPredicated(const MachineInstr &MI) const override;
396 bool isPredicated(unsigned Opcode) const;
DHexagon.td273 let RowFields = ["BaseOpcode", "PNewValue", "PredSense", "isBranch", "isPredicated"];
281 let RowFields = ["BaseOpcode", "PNewValue", "PredSense", "isBranch", "isPredicated"];
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARC/
DARCInstrInfo.cpp169 while (isPredicated(*I) || I->isTerminator() || I->isDebugValue()) { in analyzeBranch()
201 CantAnalyze = !isPredicated(*I); in analyzeBranch()
209 if (!isPredicated(*I) && (isUncondBranchOpcode(I->getOpcode()) || in analyzeBranch()
/external/llvm/lib/CodeGen/
DIfConversion.cpp715 bool isPredicated = TII->isPredicated(MI); in ScanInstructions() local
722 if (!isPredicated) { in ScanInstructions()
737 if (BBI.ClobbersPred && !isPredicated) { in ScanInstructions()
1530 if (BBI1T != BBI1->BB->end() && TII->isPredicated(*BBI1T) && in IfConvertDiamond()
1531 BBI2T != BBI2->BB->end() && !TII->isPredicated(*BBI2T)) in IfConvertDiamond()
1554 if (TI != BBI.BB->end() && TII->isPredicated(*TI)) in IfConvertDiamond()
1620 if (I.isDebugValue() || TII->isPredicated(I)) in PredicateBlock()
1675 if (!TII->isPredicated(I) && !MI->isDebugValue()) { in CopyAndPredicateBlock()
1733 if (FromTI != FromBBI.BB->end() && !TII->isPredicated(*FromTI)) in MergeBlocks()
DCriticalAntiDepBreaker.cpp167 MI.isCall() || MI.hasExtraSrcRegAllocReq() || TII->isPredicated(MI); in PrescanInstruction()
242 if (!TII->isPredicated(MI)) { in ScanInstruction()
589 if (MI.isCall() || MI.hasExtraDefRegAllocReq() || TII->isPredicated(MI)) in BreakAntiDependencies()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DIfConversion.cpp988 bool isPredicated = TII->isPredicated(MI); in ScanInstructions() local
1000 if (!isPredicated) { in ScanInstructions()
1015 if (BBI.ClobbersPred && !isPredicated) { in ScanInstructions()
1856 bool BB1Predicated = BBI1T != MBB1.end() && TII->isPredicated(*BBI1T); in IfConvertDiamondCommon()
1857 bool BB2NonPredicated = BBI2T != MBB2.end() && !TII->isPredicated(*BBI2T); in IfConvertDiamondCommon()
1948 if (TI != BBI.BB->end() && TII->isPredicated(*TI)) in IfConvertDiamond()
2006 if (I.isDebugInstr() || TII->isPredicated(I)) in PredicateBlock()
2062 if (!TII->isPredicated(I) && !MI->isDebugInstr()) { in CopyAndPredicateBlock()
2116 if (FromTI != FromMBB.end() && !TII->isPredicated(*FromTI)) in MergeBlocks()
DCriticalAntiDepBreaker.cpp184 MI.isCall() || MI.hasExtraSrcRegAllocReq() || TII->isPredicated(MI); in PrescanInstruction()
259 if (!TII->isPredicated(MI)) { in ScanInstruction()
604 if (MI.isCall() || MI.hasExtraDefRegAllocReq() || TII->isPredicated(MI)) in BreakAntiDependencies()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonMCInstrInfo.h267 bool isPredicated(MCInstrInfo const &MCII, MCInst const &MCI);
301 bool isPredicated() const;
DHexagonMCChecker.cpp70 if (HexagonMCInstrInfo::isPredicated(MCII, MCI) && isPredicateRegister(R)) { in initReg()
427 if (std::get<2>(Producer).isPredicated() && in checkNewValues()
428 (!Consumer.isPredicated() || in checkNewValues()
/external/swiftshader/third_party/llvm-7.0/configs/common/lib/Target/ARM/
DARMGenSubtargetInfo.inc16700 if ((TII->isPredicated(*MI)))
16714 if ((TII->isPredicated(*MI)))
16720 if ((TII->isPredicated(*MI)))
16750 if ((TII->isPredicated(*MI)))
16758 if ((TII->isPredicated(*MI)))
16766 if ((TII->isPredicated(*MI)))
16773 && (TII->isPredicated(*MI)))
16776 && (TII->isPredicated(*MI)))
16784 if ((TII->isPredicated(*MI)))
16842 if ((TII->isPredicated(*MI)))
[all …]
/external/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonMCChecker.cpp66 if (HexagonMCInstrInfo::isPredicated(MCII, MCI) && isPredicateRegister(R)) { in init()
293 if (HexagonMCInstrInfo::isPredicated(MCII, MCI) || in checkBranches()
/external/llvm/lib/Target/PowerPC/
DPPCInstrInfo.h232 bool isPredicated(const MachineInstr &MI) const override;
/external/llvm/lib/Target/ARM/
DARMBaseInstrInfo.cpp308 while (isPredicated(*I) || I->isTerminator() || I->isDebugValue()) { in analyzeBranch()
341 CantAnalyze = !isPredicated(*I); in analyzeBranch()
349 if (!isPredicated(*I) && in analyzeBranch()
457 bool ARMBaseInstrInfo::isPredicated(const MachineInstr &MI) const { in isPredicated() function in ARMBaseInstrInfo
2400 if (!isSuitableForMask(MI, SrcReg, CmpMask, false) || isPredicated(*MI)) { in optimizeCompareInstr()
2409 isPredicated(*PotentialAND)) in optimizeCompareInstr()
2477 if (isPredicated(*MI)) in optimizeCompareInstr()
2624 assert(!isPredicated(*MI) && "Can't use flags from predicated instruction"); in optimizeCompareInstr()
4190 if (MI.getOpcode() == ARM::VMOVD && !isPredicated(MI)) in getExecutionDomain()
4195 if (Subtarget.useNEONForFPMovs() && !isPredicated(MI) && in getExecutionDomain()
[all …]

1234