Home
last modified time | relevance | path

Searched refs:isPredicatedNew (Results 1 – 21 of 21) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
DHexagonInstrFormatsV4.td59 bits<1> isPredicatedNew = 0;
60 let TSFlags{8} = isPredicatedNew;
DHexagonInstrFormats.td89 bits<1> isPredicatedNew = 0;
90 let TSFlags{11} = isPredicatedNew;
182 let PNewValue = !if(isPredicatedNew, "new", "");
DHexagonDepInstrInfo.td650 let isPredicatedNew = 1;
686 let isPredicatedNew = 1;
725 let isPredicatedNew = 1;
761 let isPredicatedNew = 1;
792 let isPredicatedNew = 1;
819 let isPredicatedNew = 1;
848 let isPredicatedNew = 1;
875 let isPredicatedNew = 1;
904 let isPredicatedNew = 1;
931 let isPredicatedNew = 1;
[all …]
DHexagonInstrInfo.h392 bool isPredicatedNew(const MachineInstr &MI) const;
393 bool isPredicatedNew(unsigned Opcode) const;
DHexagonInstrInfo.cpp2080 if (isNewValueInst(MI) || (isPredicated(MI) && isPredicatedNew(MI))) in isDotNewInst()
2385 bool HexagonInstrInfo::isPredicatedNew(const MachineInstr &MI) const { in isPredicatedNew() function in HexagonInstrInfo
2391 bool HexagonInstrInfo::isPredicatedNew(unsigned Opcode) const { in isPredicatedNew() function in HexagonInstrInfo
2424 (isPredicatedNew(Opcode) || isNewValue(Opcode))); in isPredictedTaken()
3619 if (isPredicated(NewOp) && isPredicatedNew(NewOp)) { // Get predicate old form in getDotOldOp()
4324 if (EnableBranchPrediction && isPredicatedNew(MI)) { in invertAndChangeJumpTarget()
DHexagonPseudo.td283 let isPredicatedNew = isPredNew;
DHexagonVLIWPacketizer.cpp1240 if (HII->isPredicated(MI) && HII->isPredicatedNew(MI) && HII->isJumpR(MI)) in hasControlDependence()
/external/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonMCChecker.cpp72 if (HexagonMCInstrInfo::isPredicatedNew(MCII, MCI)) in init()
203 if (HexagonMCInstrInfo::isPredicatedNew(MCII, MCI)) in init()
288 HexagonMCInstrInfo::isPredicatedNew(MCII, MCI)) in checkBranches()
294 HexagonMCInstrInfo::isPredicatedNew(MCII, MCI)) { in checkBranches()
DHexagonMCInstrInfo.h247 bool isPredicatedNew(MCInstrInfo const &MCII, MCInst const &MCI);
DHexagonMCInstrInfo.cpp563 bool HexagonMCInstrInfo::isPredicatedNew(MCInstrInfo const &MCII, in isPredicatedNew() function in llvm::HexagonMCInstrInfo
/external/llvm/lib/Target/Hexagon/
DHexagonIsetDx.td93 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…
536 …0, R31], isCodeGenOnly = 1, isPredicated = 1, isPredicatedFalse = 1, isPredicatedNew = 1, isBranch…
609 let Uses = [P0], isCodeGenOnly = 1, isPredicated = 1, isPredicatedFalse = 1, isPredicatedNew = 1, h…
696 …1, R29, R30], Uses = [R30, P0], isCodeGenOnly = 1, isPredicated = 1, isPredicatedNew = 1, mayLoad …
706 …30, P0], isCodeGenOnly = 1, isPredicated = 1, isPredicatedFalse = 1, isPredicatedNew = 1, mayLoad …
DHexagonInstrFormatsV4.td71 bits<1> isPredicatedNew = 0;
72 let TSFlags{8} = isPredicatedNew;
DHexagonInstrInfo.h330 bool isPredicatedNew(const MachineInstr &MI) const;
331 bool isPredicatedNew(unsigned Opcode) const;
DHexagonInstrFormats.td119 bits<1> isPredicatedNew = 0;
120 let TSFlags{10} = isPredicatedNew;
196 let PNewValue = !if(isPredicatedNew, "new", "");
DHexagonInstrInfoV4.td577 let isPredicatedNew = isPredNew;
900 let isPredicatedNew = isPredNew;
962 let isPredicatedNew = isPredNew;
1111 let isPredicatedNew = isPredNew;
1308 let isPredicatedNew = isPredNew;
1463 let isPredicatedNew = isPredNew;
3233 let isPredicatedNew = isPredNew;
3380 let isPredicatedNew = isNew;
3484 let isPredicatedNew = isNew;
3704 let isPredicatedNew = isPredNew;
[all …]
DHexagonInstrInfo.cpp1746 !isPredicatedNew(*MI)); in isCondInst()
2017 if (isNewValueInst(MI) || (isPredicated(*MI) && isPredicatedNew(*MI))) in isDotNewInst()
2382 bool HexagonInstrInfo::isPredicatedNew(const MachineInstr &MI) const { in isPredicatedNew() function in HexagonInstrInfo
2389 bool HexagonInstrInfo::isPredicatedNew(unsigned Opcode) const { in isPredicatedNew() function in HexagonInstrInfo
2427 (isPredicatedNew(Opcode) || isNewValue(Opcode))); in isPredictedTaken()
3620 if (isPredicated(NewOp) && isPredicatedNew(NewOp)) { // Get predicate old form in getDotOldOp()
4239 if (EnableBranchPrediction && isPredicatedNew(*MI)) { in invertAndChangeJumpTarget()
DHexagonInstrInfo.td150 let isPredicatedNew = PredNew;
360 let isPredicatedNew = PredNew;
523 let isPredicatedNew = isPredNew;
573 let isPredicatedNew = PredNew;
605 let isPredicatedNew = PredNew;
785 let isPredicatedNew = 1 in
1469 let isPredicatedNew = isPredNew;
1525 let isPredicatedNew = isPredNew;
1693 let isPredicatedNew = isPredNew;
1877 let isPredicatedNew = isPredNew;
[all …]
DHexagonVLIWPacketizer.cpp1094 if (HII->isPredicated(*MI) && HII->isPredicatedNew(*MI) && HII->isJumpR(MI)) in hasControlDependence()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonMCChecker.cpp76 if (HexagonMCInstrInfo::isPredicatedNew(MCII, MCI)) in initReg()
183 if (HexagonMCInstrInfo::isPredicatedNew(MCII, MCI)) in init()
DHexagonMCInstrInfo.h269 bool isPredicatedNew(MCInstrInfo const &MCII, MCInst const &MCI);
DHexagonMCInstrInfo.cpp647 bool HexagonMCInstrInfo::isPredicatedNew(MCInstrInfo const &MCII, in isPredicatedNew() function in HexagonMCInstrInfo