| /llvm-project-15.0.7/llvm/include/llvm/CodeGen/ |
| H A D | MachineRegionInfo.h | 56 bool operator==(const MachineRegion &RN) const { 57 return this == reinterpret_cast<const MachineRegionNode *>(&RN); 68 bool operator==(const MachineRegionNode &RN) const { 69 return &RN == reinterpret_cast<const MachineRegionNode *>(this);
|
| H A D | RDFLiveness.h | 160 MachineBasicBlock *getBlockWithRef(NodeId RN) const;
|
| H A D | RDFRegisters.h | 165 bool aliasMM(RegisterRef RM, RegisterRef RN) const;
|
| /llvm-project-15.0.7/polly/lib/Analysis/ |
| H A D | ScopBuilder.cpp | 164 return RN->isSubRegion() ? RN->getNodeAs<Region>()->getEntry() in getRegionNodeBasicBlock() 171 if (RN->isSubRegion()) { in getRegionNodeSuccessor() 180 if (!RN->isSubRegion()) in containsErrorBlock() 602 if (RN->isSubRegion()) { in propagateDomainConstraints() 888 if (RN->isSubRegion()) { in buildDomainsWithBranchConstraints() 935 if (RN->isSubRegion()) in buildDomainsWithBranchConstraints() 1005 if (RN->isSubRegion()) { in propagateInvalidStmtDomains() 1225 RegionNode *RN; in buildSchedule() local 1228 RN = WorkList.front(); in buildSchedule() 1232 RN = DelayList.front(); in buildSchedule() [all …]
|
| /llvm-project-15.0.7/llvm/include/llvm/ADT/ |
| H A D | SmallSet.h | 268 template <typename T, unsigned LN, unsigned RN, typename C> 269 bool operator==(const SmallSet<T, LN, C> &LHS, const SmallSet<T, RN, C> &RHS) { 280 template <typename T, unsigned LN, unsigned RN, typename C> 281 bool operator!=(const SmallSet<T, LN, C> &LHS, const SmallSet<T, RN, C> &RHS) {
|
| /llvm-project-15.0.7/polly/lib/Support/ |
| H A D | ScopHelper.cpp | 462 unsigned polly::getNumBlocksInRegionNode(RegionNode *RN) { in getNumBlocksInRegionNode() argument 463 if (!RN->isSubRegion()) in getNumBlocksInRegionNode() 466 Region *R = RN->getNodeAs<Region>(); in getNumBlocksInRegionNode() 470 Loop *polly::getRegionNodeLoop(RegionNode *RN, LoopInfo &LI) { in getRegionNodeLoop() argument 471 if (!RN->isSubRegion()) { in getRegionNodeLoop() 472 BasicBlock *BB = RN->getNodeAs<BasicBlock>(); in getRegionNodeLoop() 498 Region *NonAffineSubRegion = RN->getNodeAs<Region>(); in getRegionNodeLoop()
|
| /llvm-project-15.0.7/llvm/include/llvm/Analysis/ |
| H A D | DDG.h | 352 auto *RN = new RootDDGNode(); in createRootNode() local 353 assert(RN && "Failed to allocate memory for DDG root node."); in createRootNode() 354 Graph.addNode(*RN); in createRootNode() 355 return *RN; in createRootNode()
|
| H A D | RegionInfo.h | 884 bool operator==(const Region &RN) const { 885 return this == reinterpret_cast<const RegionNode *>(&RN); 895 bool operator==(const RegionNode &RN) const { 896 return &RN == reinterpret_cast<const RegionNode *>(this);
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Scalar/ |
| H A D | StructurizeCFG.cpp | 525 for (RegionNode *RN : reverse(Order)) { in collectInfos() 527 << (RN->isSubRegion() ? "SubRegion with entry: " : "") in collectInfos() 528 << RN->getEntry()->getName() << "\n"); in collectInfos() 531 gatherPredicates(RN); in collectInfos() 534 Visited.insert(RN->getEntry()); in collectInfos() 537 analyzeLoops(RN); in collectInfos()
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | DeclarationName.cpp | 73 unsigned LN = LHSSelector.getNumArgs(), RN = RHSSelector.getNumArgs(); in compare() local 74 for (unsigned I = 0, N = std::min(LN, RN); I != N; ++I) { in compare() 86 return compareInt(LN, RN); in compare()
|
| /llvm-project-15.0.7/llvm/lib/Target/Hexagon/ |
| H A D | RDFDeadCode.cpp | 71 for (unsigned R = 0, RN = DFG.getTRI().getNumRegs(); R != RN; ++R) { in isLiveInstr() local
|
| H A D | HexagonCommonGEP.cpp | 1083 GepNode *RN = NA[0]; in fabricateGEP() local 1084 assert((RN->Flags & GepNode::Root) && "Creating GEP for non-root"); in fabricateGEP() 1087 Value *Input = RN->BaseVal; in fabricateGEP() 1088 Type *InpTy = RN->PTy; in fabricateGEP() 1113 NewInst->setIsInBounds(RN->Flags & GepNode::InBounds); in fabricateGEP()
|
| H A D | HexagonExpandCondsets.cpp | 230 void renameInRange(RegisterRef RO, RegisterRef RN, unsigned PredR, 909 void HexagonExpandCondsets::renameInRange(RegisterRef RO, RegisterRef RN, in renameInRange() argument 925 Op.setReg(RN.Reg); in renameInRange() 926 Op.setSubReg(RN.Sub); in renameInRange()
|
| /llvm-project-15.0.7/llvm/utils/TableGen/ |
| H A D | CodeGenDAGPatterns.h | 1039 Record *getResult(unsigned RN) const { in getResult() argument 1040 assert(RN < Results.size()); in getResult() 1041 return Results[RN]; in getResult() 1049 Record *getImpResult(unsigned RN) const { in getImpResult() argument 1050 assert(RN < ImpResults.size()); in getImpResult() 1051 return ImpResults[RN]; in getImpResult()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | RDFRegisters.cpp | 202 bool PhysicalRegisterInfo::aliasMM(RegisterRef RM, RegisterRef RN) const { in aliasMM() 203 assert(isRegMaskId(RM.Reg) && isRegMaskId(RN.Reg)); in aliasMM() 206 const uint32_t *BN = getRegMaskBits(RN.Reg); in aliasMM()
|
| /llvm-project-15.0.7/llvm/lib/Target/NVPTX/ |
| H A D | NVPTX.h | 136 RN, enumerator
|
| /llvm-project-15.0.7/flang/include/flang/Common/ |
| H A D | format.h | 42 L, O, P, RC, RD, RN, RP, RU, RZ, S, SP, SS, T, TL, TR, X, Z, Colon, Slash, in ENUM_CLASS() argument 333 Advance(TokenKind::RN); in NextToken() 719 case TokenKind::RN: in Check()
|
| /llvm-project-15.0.7/llvm/lib/Target/AVR/ |
| H A D | AVRISelDAGToDAG.cpp | 327 const RegisterSDNode *RN = dyn_cast<RegisterSDNode>(BasePtr.getOperand(0)); in select() local 329 if (!RN || (RN->getReg() != AVR::SP)) { in select()
|
| /llvm-project-15.0.7/flang/include/flang/Parser/ |
| H A D | format-specification.h | 92 RN, enumerator
|
| /llvm-project-15.0.7/polly/include/polly/Support/ |
| H A D | ScopHelper.h | 426 unsigned getNumBlocksInRegionNode(llvm::RegionNode *RN); 429 llvm::Loop *getRegionNodeLoop(llvm::RegionNode *RN, llvm::LoopInfo &LI);
|
| /llvm-project-15.0.7/llvm/include/llvm/Support/ |
| H A D | GenericDomTree.h | 376 const DomTreeNodeBase<NodeT> *RN = getNode(R); 377 if (!RN) 380 WL.push_back(RN);
|
| /llvm-project-15.0.7/llvm/lib/Target/NVPTX/MCTargetDesc/ |
| H A D | NVPTXInstPrinter.cpp | 134 case NVPTX::PTXCvtMode::RN: in printCvtMode()
|
| /llvm-project-15.0.7/llvm/lib/Bitcode/Reader/ |
| H A D | BitcodeAnalyzer.cpp | 110 for (const std::pair<unsigned, std::string> &RN : Info->RecordNames) in GetCodeName() local 111 if (RN.first == CodeID) in GetCodeName() 112 return RN.second.c_str(); in GetCodeName()
|
| /llvm-project-15.0.7/llvm/lib/Target/PowerPC/ |
| H A D | README_P9.txt | 257 rnd ← bfp_ROUND_TO_BFP128(RO, FPSCR.RN, v) 262 rnd ← bfp_ROUND_TO_BFP128(RO, FPSCR.RN, v) 267 rnd ← bfp_NEGATE(bfp_ROUND_TO_BFP128(RO, FPSCR.RN, v)) 272 rnd ← bfp_NEGATE(bfp_ROUND_TO_BFP128(RO, FPSCR.RN, v))
|
| /llvm-project-15.0.7/polly/include/polly/ |
| H A D | ScopBuilder.h | 762 void buildSchedule(RegionNode *RN, LoopStackTy &LoopStack);
|