| /freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/ |
| H A D | Reassociate.h | 49 unsigned Rank; member 52 ValueEntry(unsigned R, Value *O) : Rank(R), Op(O) {} in ValueEntry() 56 return LHS.Rank > RHS.Rank; // Sort so that highest rank goes to start.
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | SCCIterator.h | 261 uint32_t Rank = 0; member 285 if (G1->Rank < G2->Rank) in unionGroups() 290 if (G1->Rank == G2->Rank) in unionGroups() 291 G1->Rank++; in unionGroups()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/ |
| H A D | CFGMST.h | 81 if (BB1G->Rank < BB2G->Rank) in unionGroups() 86 if (BB1G->Rank == BB2G->Rank) in unionGroups() 87 BB1G->Rank++; in unionGroups()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
| H A D | SPIRVUtils.cpp | 603 return It->second.Rank; in GetNodeRank() 627 result = std::max(result, Iterator->second.Rank + 1); in GetNodeRank() 652 size_t Rank = GetNodeRank(BB); in visit() local 653 OrderInfo Info = {Rank, BlockToOrder.size()}; in visit() 686 if (InfoLHS.Rank != InfoRHS.Rank) in compare() 687 return InfoLHS.Rank < InfoRHS.Rank; in compare() 708 if (EndRank.has_value() && BlockToOrder[*It].Rank > *EndRank) in partialOrderVisit() 716 EndRank = BlockToOrder[*It].Rank; in partialOrderVisit()
|
| H A D | SPIRVUtils.h | 77 size_t Rank; member 90 size_t visit(BasicBlock *BB, size_t Rank);
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | Reassociate.cpp | 89 dbgs() << ", #" << Op.Rank << "] "; in PrintOps() 183 unsigned Rank = 2; in BuildRankMap() local 187 ValueRankMap[&Arg] = ++Rank; in BuildRankMap() 188 LLVM_DEBUG(dbgs() << "Calculated Rank[" << Arg.getName() << "] = " << 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() 219 unsigned Rank = 0, MaxRank = RankMap[I->getParent()]; in getRank() local 220 for (unsigned i = 0, e = I->getNumOperands(); i != e && Rank != MaxRank; ++i) in getRank() 221 Rank = std::max(Rank, getRank(I->getOperand(i))); in getRank() [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | Sarif.h | 216 float Rank = -1.0f; variable 241 Rank = TheRank; in setRank()
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | DebugInfoMetadata.cpp | 363 uint64_t Rank = 0; in getMergedLocation() local 384 Rank = UseL1Atom ? L1->getAtomRank() : L2->getAtomRank(); in getMergedLocation() 391 Rank = 1; in getMergedLocation() 394 Group, Rank); in getMergedLocation() 1035 Metadata *Allocated, Metadata *Rank, Metadata *Annotations, in getImpl() argument 1045 Identifier, Discriminator, DataLocation, Associated, Allocated, Rank, in getImpl() 1050 Associated, Allocated, Rank, Annotations, in getImpl() 1066 Metadata *Rank, Metadata *Annotations, Metadata *BitStride) { in buildODRType() argument 1076 Discriminator, DataLocation, Associated, Allocated, Rank, in buildODRType() 1092 Associated, Allocated, Rank, Annotations, in buildODRType() [all …]
|
| H A D | LLVMContextImpl.h | 802 Metadata *Rank; 815 Metadata *Allocated, Metadata *Rank, Metadata *Annotations, 824 Associated(Associated), Allocated(Allocated), Rank(Rank), 839 Rank(N->getRawRank()), Annotations(N->getRawAnnotations()), 859 Allocated == RHS->getRawAllocated() && Rank == RHS->getRawRank() &&
|
| H A D | DebugInfo.cpp | 1366 LLVMMetadataRef Associated, LLVMMetadataRef Allocated, LLVMMetadataRef Rank, in LLVMDIBuilderCreateDynamicArrayType() argument 1374 unwrapExprVar(Allocated), unwrapExprVar(Rank), unwrap(BitStride))); in LLVMDIBuilderCreateDynamicArrayType()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | DebugInfoMetadata.h | 1598 Metadata *Rank, DINodeArray Annotations, Metadata *BitStride, 1609 DataLocation, Associated, Allocated, Rank, Annotations.get(), 1621 Metadata *Allocated, Metadata *Rank, Metadata *Annotations, 1632 Associated, Allocated, Rank, Annotations, Specification, 1644 Metadata *Rank, DINodeArray Annotations, Metadata *BitStride, 1651 Associated, Allocated, Rank, Annotations.get(), Specification, 1662 Metadata *Allocated, Metadata *Rank, Metadata *Annotations, 1689 Metadata *Allocated = nullptr, Metadata *Rank = nullptr, 1695 Discriminator, DataLocation, Associated, Allocated, Rank, Annotations, 1707 Metadata *Rank = nullptr, Metadata *Annotations = nullptr, [all …]
|
| H A D | DIBuilder.h | 692 PointerUnion<DIExpression *, DIVariable *> Rank = nullptr); 722 PointerUnion<DIExpression *, DIVariable *> Rank = nullptr,
|
| /freebsd/contrib/llvm-project/llvm/lib/Demangle/ |
| H A D | MicrosoftDemangle.cpp | 2200 uint64_t Rank = 0; in demangleArrayType() local 2202 std::tie(Rank, IsNegative) = demangleNumber(MangledName); in demangleArrayType() 2203 if (IsNegative || Rank == 0) { in demangleArrayType() 2212 for (uint64_t I = 0; I < Rank; ++I) { in demangleArrayType() 2220 if (I + 1 < Rank) { in demangleArrayType() 2225 ATy->Dimensions = nodeListToNodeArray(Arena, Head, Rank); in demangleArrayType()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | WinException.cpp | 1090 int Rank = 0; in getTryRank() local 1092 ++Rank; in getTryRank() 1095 return Rank; in getTryRank()
|
| H A D | DwarfDebug.cpp | 2445 uint8_t Rank = Loc->getAtomRank(); in computeKeyInstructions() local 2446 if (!Group || !Rank) in computeKeyInstructions() 2465 assert(Rank && "expected nonzero rank"); in computeKeyInstructions() 2468 if (CandidateRank && CandidateRank < Rank) in computeKeyInstructions() 2475 if (CandidateRank == Rank) in computeKeyInstructions() 2479 else if (CandidateRank > Rank) in computeKeyInstructions() 2485 CandidateRank = Rank; in computeKeyInstructions()
|
| /freebsd/contrib/llvm-project/clang/lib/Basic/ |
| H A D | Sarif.cpp | 278 {"rank", R.DefaultConfiguration.Rank}}; in endRun()
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | mdspan | 20 template<class IndexType, size_t Rank> 24 template<size_t Rank, class IndexType = size_t>
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaOverload.cpp | 128 static const ImplicitConversionRank Rank[] = { in GetConversionRank() local 168 static_assert(std::size(Rank) == (int)ICK_Num_Conversion_Kinds); in GetConversionRank() 169 return Rank[(int)Kind]; in GetConversionRank() 175 ImplicitConversionRank Rank = GetConversionRank(Dimension); in GetDimensionConversionRank() local 176 if (Rank == ICR_HLSL_Scalar_Widening) { in GetDimensionConversionRank() 182 if (Rank == ICR_HLSL_Dimension_Reduction) { in GetDimensionConversionRank() 188 return Rank; in GetDimensionConversionRank() 258 ImplicitConversionRank Rank = ICR_Exact_Match; in getRank() local 259 if (GetConversionRank(First) > Rank) in getRank() 260 Rank = GetConversionRank(First); in getRank() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/ |
| H A D | MetadataLoader.cpp | 1713 Metadata *Rank = nullptr; in parseOneMetadata() local 1762 Rank = getMDOrNull(Record[20]); in parseOneMetadata() 1786 Allocated, Rank, Annotations, BitStride); in parseOneMetadata() 1795 DataLocation, Associated, Allocated, Rank, Annotations, in parseOneMetadata()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm-c/ |
| H A D | DebugInfo.h | 751 LLVMMetadataRef Associated, LLVMMetadataRef Allocated, LLVMMetadataRef Rank,
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGDebugInfo.cpp | 132 uint64_t Group, uint8_t Rank) { in addInstSourceAtomMetadata() argument 137 Rank = std::min<uint8_t>(Rank, 7); in addInstSourceAtomMetadata() 144 if (DL->getAtomGroup() && DL->getAtomRank() && DL->getAtomRank() < Rank) { in addInstSourceAtomMetadata() 146 Rank = DL->getAtomRank(); in addInstSourceAtomMetadata() 157 DL.getInlinedAt(), DL.isImplicitCode(), Group, Rank); in addInstSourceAtomMetadata() 190 uint8_t Rank = 3; in addInstToSpecificSourceAtom() local 195 addInstSourceAtomMetadata(BackupI, Group, Rank++); in addInstToSpecificSourceAtom()
|
| H A D | CGDebugInfo.h | 687 uint8_t Rank);
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | GCOVProfiling.cpp | 174 uint32_t Rank = 0; member
|
| H A D | PGOInstrumentation.cpp | 577 uint32_t Rank = 0; member
|
| /freebsd/contrib/llvm-project/llvm/lib/AsmParser/ |
| H A D | LLParser.cpp | 5715 Metadata *Rank = nullptr; in parseDICompositeType() local 5717 Rank = ConstantAsMetadata::get(ConstantInt::getSigned( in parseDICompositeType() 5720 Rank = rank.getMDFieldValue(); in parseDICompositeType() 5734 dataLocation.Val, associated.Val, allocated.Val, Rank, in parseDICompositeType() 5749 allocated.Val, Rank, annotations.Val, specification.Val, in parseDICompositeType()
|