| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/ |
| H A D | Reassociate.h | 47 unsigned Rank; member 50 ValueEntry(unsigned R, Value *O) : Rank(R), Op(O) {} in ValueEntry() 54 return LHS.Rank > RHS.Rank; // Sort so that highest rank goes to start.
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | SCCIterator.h | 261 uint32_t Rank = 0; member 285 if (G1->Rank < G1->Rank) in unionGroups() 290 if (G1->Rank == G2->Rank) in unionGroups() 291 G2->Rank++; in unionGroups()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/ |
| H A D | CFGMST.h | 76 if (BB1G->Rank < BB2G->Rank) in unionGroups() 81 if (BB1G->Rank == BB2G->Rank) in unionGroups() 82 BB1G->Rank++; in unionGroups()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | Reassociate.cpp | 89 dbgs() << ", #" << Ops[i].Rank << "] "; in PrintOps() 183 unsigned Rank = 2; in BuildRankMap() local 187 ValueRankMap[&Arg] = ++Rank; in BuildRankMap() 194 unsigned BBRank = RankMap[BB] = ++Rank << 16; in BuildRankMap() 212 if (unsigned Rank = ValueRankMap[I]) in getRank() local 213 return Rank; // Rank already known? in getRank() 221 Rank = std::max(Rank, getRank(I->getOperand(i))); in getRank() 227 ++Rank; in getRank() 232 return ValueRankMap[I] = Rank; in getRank() 1147 unsigned XRank = Ops[i].Rank; in FindInOperandList() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | Sarif.h | 216 float Rank = -1.0f; variable 241 Rank = TheRank; in setRank()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/IR/ |
| H A D | DebugInfoMetadata.cpp | 761 Metadata *Rank, Metadata *Annotations, StorageType Storage, in getImpl() argument 771 Rank, Annotations)); in getImpl() 775 Rank, Annotations}; in getImpl() 789 Metadata *Rank, Metadata *Annotations) { in buildODRType() argument 799 DataLocation, Associated, Allocated, Rank, Annotations); in buildODRType() 815 Rank, Annotations}; in buildODRType() 831 Metadata *Rank, Metadata *Annotations) { in getODRType() argument 841 Allocated, Rank, Annotations); in getODRType()
|
| H A D | LLVMContextImpl.h | 643 Metadata *Rank; 653 Metadata *Allocated, Metadata *Rank, Metadata *Annotations) 660 Associated(Associated), Allocated(Allocated), Rank(Rank), 674 Rank(N->getRawRank()), Annotations(N->getRawAnnotations()) {} 691 Allocated == RHS->getRawAllocated() && Rank == RHS->getRawRank() &&
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Demangle/ |
| H A D | MicrosoftDemangle.cpp | 2132 uint64_t Rank = 0; in demangleArrayType() local 2134 std::tie(Rank, IsNegative) = demangleNumber(MangledName); in demangleArrayType() 2135 if (IsNegative || Rank == 0) { in demangleArrayType() 2144 for (uint64_t I = 0; I < Rank; ++I) { in demangleArrayType() 2152 if (I + 1 < Rank) { in demangleArrayType() 2157 ATy->Dimensions = nodeListToNodeArray(Arena, Head, Rank); in demangleArrayType()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | WinException.cpp | 1088 int Rank = 0; in getTryRank() local 1090 ++Rank; in getTryRank() 1093 return Rank; in getTryRank()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | DebugInfoMetadata.h | 1126 Metadata *Associated, Metadata *Allocated, Metadata *Rank, 1134 Associated, Allocated, Rank, Annotations.get(), Storage, ShouldCreate); 1143 Metadata *Associated, Metadata *Allocated, Metadata *Rank, 1166 Metadata *Allocated = nullptr, Metadata *Rank = nullptr, 1170 Identifier, Discriminator, DataLocation, Associated, Allocated, Rank, 1181 Metadata *Rank = nullptr, Metadata *Annotations = nullptr), 1184 Identifier, Discriminator, DataLocation, Associated, Allocated, Rank, 1204 Metadata *Rank, Metadata *Annotations); 1225 Metadata *Allocated, Metadata *Rank, Metadata *Annotations);
|
| H A D | DIBuilder.h | 563 PointerUnion<DIExpression *, DIVariable *> Rank = nullptr);
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Basic/ |
| H A D | Sarif.cpp | 280 {"rank", R.DefaultConfiguration.Rank}}; in endRun()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Bitcode/Reader/ |
| H A D | MetadataLoader.cpp | 1614 Metadata *Rank = nullptr; in parseOneMetadata() local 1659 Rank = getMDOrNull(Record[20]); in parseOneMetadata() 1671 Allocated, Rank, Annotations); in parseOneMetadata() 1680 Allocated, Rank, Annotations)); in parseOneMetadata()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaOverload.cpp | 127 Rank[] = { in GetConversionRank() local 165 return Rank[(int)Kind]; in GetConversionRank() 231 if (GetConversionRank(First) > Rank) in getRank() 232 Rank = GetConversionRank(First); in getRank() 233 if (GetConversionRank(Second) > Rank) in getRank() 234 Rank = GetConversionRank(Second); in getRank() 235 if (GetConversionRank(Third) > Rank) in getRank() 236 Rank = GetConversionRank(Third); in getRank() 237 return Rank; in getRank() 12258 if (std::tie(LS.KindRank, LS.Rank) != std::tie(RS.KindRank, RS.Rank)) in CompareConversions() [all …]
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/ |
| H A D | mdspan | 20 template<class IndexType, size_t Rank>
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | GCOVProfiling.cpp | 170 uint32_t Rank = 0; member
|
| H A D | PGOInstrumentation.cpp | 493 uint32_t Rank = 0; member
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/AsmParser/ |
| H A D | LLParser.cpp | 5161 Metadata *Rank = nullptr; in parseDICompositeType() local 5163 Rank = ConstantAsMetadata::get(ConstantInt::getSigned( in parseDICompositeType() 5166 Rank = rank.getMDFieldValue(); in parseDICompositeType() 5175 Rank, annotations.Val)) { in parseDICompositeType() 5187 discriminator.Val, dataLocation.Val, associated.Val, allocated.Val, Rank, in parseDICompositeType()
|
| /freebsd-14.2/share/misc/ |
| H A D | pci_vendors | 33999 2c22 Xeon 5500/Core i7 Integrated Memory Controller Channel 0 Rank Registers 34003 2c2a Xeon 5500/Core i7 Integrated Memory Controller Channel 1 Rank Registers 34007 2c32 Xeon 5500/Core i7 Integrated Memory Controller Channel 2 Rank Registers 34039 2ca2 Core Processor Integrated Memory Controller Channel 0 Rank Registers 34043 2caa Core Processor Integrated Memory Controller Channel 1 Rank Registers 34056 2ce2 Xeon C5500/C3500 Integrated Memory Controller Channel 0 Rank 34060 2cea Xeon C5500/C3500 Integrated Memory Controller Channel 1 Rank 34064 2cf2 Xeon C5500/C3500 Integrated Memory Controller Channel 2 Rank 34084 2da2 Xeon 5600 Series Integrated Memory Controller Channel 0 Rank 34088 2daa Xeon 5600 Series Integrated Memory Controller Channel 1 Rank [all …]
|