| /llvm-project-15.0.7/llvm/tools/llvm-tapi-diff/ |
| H A D | DiffEngine.cpp | 444 llvm::stable_sort(TargValues, [](const auto &ValA, const auto &ValB) { in sortTargetValues() argument 445 return ValA.getOrder() < ValB.getOrder(); in sortTargetValues() 447 llvm::stable_sort(TargValues, [](const auto &ValA, const auto &ValB) { in sortTargetValues() argument 448 return ValA.getOrder() == ValB.getOrder() && ValA.getVal() < ValB.getVal(); in sortTargetValues() 463 llvm::sort(SortedAttrs, [&](const auto &ValA, const auto &ValB) { in printVecVal() argument 464 return ValA->Targ < ValB->Targ; in printVecVal() 489 llvm::sort(SortedAttrs, [&](const auto &ValA, const auto &ValB) { in printVecVal() argument 490 return ValA->Targ < ValB->Targ; in printVecVal()
|
| /llvm-project-15.0.7/llvm/lib/Analysis/ |
| H A D | CFLSteensAliasAnalysis.cpp | 268 auto *ValA = const_cast<Value *>(LocA.Ptr); in query() local 271 if (!ValA->getType()->isPointerTy() || !ValB->getType()->isPointerTy()) in query() 275 Function *MaybeFnA = const_cast<Function *>(parentFunctionOfValue(ValA)); in query() 299 auto MaybeA = Sets.find(InstantiatedValue{ValA, 0}); in query()
|
| H A D | CFLAndersAliasAnalysis.cpp | 849 auto *ValA = LocA.Ptr; in query() local 852 if (!ValA->getType()->isPointerTy() || !ValB->getType()->isPointerTy()) in query() 855 auto *Fn = parentFunctionOfValue(ValA); in query() 874 if (FunInfo->mayAlias(ValA, LocA.Size, ValB, LocB.Size)) in query()
|
| /llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/bugprone/ |
| H A D | easily-swappable-parameters-prefixsuffixname.cpp | 29 void test4(int ValA, int Valb) {} // NO-WARN. in test4() argument
|
| /llvm-project-15.0.7/llvm/lib/MC/ |
| H A D | MCFragment.cpp | 130 uint64_t ValA; in getSymbolOffsetImpl() local 135 if (!getSymbolOffsetImpl(Layout, A->getSymbol(), ReportError, ValA)) in getSymbolOffsetImpl() 137 Offset += ValA; in getSymbolOffsetImpl()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/Vectorize/ |
| H A D | LoadStoreVectorizer.cpp | 508 Value *ValA = OpA->getOperand(0); in lookThroughComplexAddresses() local 510 if (!OpB || ValA->getType() != OpB->getType()) in lookThroughComplexAddresses() 526 OpA = dyn_cast<Instruction>(ValA); in lookThroughComplexAddresses() 541 unsigned BitWidth = ValA->getType()->getScalarSizeInBits(); in lookThroughComplexAddresses() 549 computeKnownBits(ValA, Known, DL, 0, &AC, OpB, &DT); in lookThroughComplexAddresses() 557 const SCEV *OffsetSCEVA = SE.getSCEV(ValA); in lookThroughComplexAddresses()
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | MachineInstr.cpp | 1239 const Value *ValA = MMOa->getValue(); in MemOperandsHaveAlias() local 1241 bool SameVal = (ValA && ValB && (ValA == ValB)); in MemOperandsHaveAlias() 1247 if (PSVb && ValA && !PSVb->mayAlias(&MFI)) in MemOperandsHaveAlias() 1264 if (!ValA || !ValB) in MemOperandsHaveAlias() 1276 MemoryLocation(ValA, OverlapA, UseTBAA ? MMOa->getAAInfo() : AAMDNodes()), in MemOperandsHaveAlias()
|
| /llvm-project-15.0.7/llvm/unittests/ADT/ |
| H A D | APIntTest.cpp | 1442 APInt ValA(65, -1ULL); in TEST() local 1445 ValC = ValA * ValB; in TEST() 1446 ValA *= ValB; in TEST() 1448 ValA.toString(StrA, 10, false); in TEST() 1534 APInt ValA(8, 0x01); in TEST() local 1535 EXPECT_EQ(ValA, APInt::getSplat(8, ValA)); in TEST() 1536 EXPECT_EQ(APInt(64, 0x0101010101010101ULL), APInt::getSplat(64, ValA)); in TEST()
|
| /llvm-project-15.0.7/llvm/unittests/Support/ |
| H A D | CommandLineTest.cpp | 1980 enum Vals { ValA, ValB, ValC }; in TEST() enumerator 1982 cl::values(clEnumValN(ValA, "enableA", "Enable A"), in TEST() 1999 EXPECT_EQ((1u << ValA) | (1u << ValC), Bits.getBits()); in TEST()
|
| /llvm-project-15.0.7/llvm/lib/Target/AArch64/ |
| H A D | SVEInstrFormats.td | 238 class SVEExactFPImm<string Suffix, string ValA, string ValB> : AsmOperandClass { 242 let PredicateMethod = "isExactFPImm<" # ValA # ", " # ValB # ">"; 243 let RenderMethod = "addExactFPImmOperands<" # ValA # ", " # ValB # ">"; 246 class SVEExactFPImmOperand<string Suffix, string ValA, string ValB> : Operand<i32> { 247 let PrintMethod = "printExactFPImm<" # ValA # ", " # ValB # ">"; 248 let ParserMatchClass = SVEExactFPImm<Suffix, ValA, ValB>;
|