Home
last modified time | relevance | path

Searched refs:ValA (Results 1 – 5 of 5) sorted by relevance

/openbsd-src/gnu/llvm/llvm/tools/llvm-tapi-diff/
H A DDiffEngine.cpp442 llvm::stable_sort(TargValues, [](const auto &ValA, const auto &ValB) { in sortTargetValues() argument
443 return ValA.getOrder() < ValB.getOrder(); in sortTargetValues()
445 llvm::stable_sort(TargValues, [](const auto &ValA, const auto &ValB) { in sortTargetValues() argument
446 return ValA.getOrder() == ValB.getOrder() && ValA.getVal() < ValB.getVal(); in sortTargetValues()
461 llvm::sort(SortedAttrs, [&](const auto &ValA, const auto &ValB) { in printVecVal() argument
462 return ValA->Targ < ValB->Targ; in printVecVal()
487 llvm::sort(SortedAttrs, [&](const auto &ValA, const auto &ValB) { in printVecVal() argument
488 return ValA->Targ < ValB->Targ; in printVecVal()
/openbsd-src/gnu/llvm/llvm/lib/MC/
H A DMCFragment.cpp130 uint64_t ValA; in getSymbolOffsetImpl() local
135 if (!getSymbolOffsetImpl(Layout, A->getSymbol(), ReportError, ValA)) in getSymbolOffsetImpl()
137 Offset += ValA; in getSymbolOffsetImpl()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DLoadStoreVectorizer.cpp511 Value *ValA = OpA->getOperand(0); in lookThroughComplexAddresses() local
513 if (!OpB || ValA->getType() != OpB->getType()) in lookThroughComplexAddresses()
529 OpA = dyn_cast<Instruction>(ValA); in lookThroughComplexAddresses()
544 unsigned BitWidth = ValA->getType()->getScalarSizeInBits(); in lookThroughComplexAddresses()
552 computeKnownBits(ValA, Known, DL, 0, &AC, OpB, &DT); in lookThroughComplexAddresses()
560 const SCEV *OffsetSCEVA = SE.getSCEV(ValA); in lookThroughComplexAddresses()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DMachineInstr.cpp1294 const Value *ValA = MMOa->getValue(); in MemOperandsHaveAlias() local
1296 bool SameVal = (ValA && ValB && (ValA == ValB)); in MemOperandsHaveAlias()
1302 if (PSVb && ValA && !PSVb->mayAlias(&MFI)) in MemOperandsHaveAlias()
1319 if (!ValA || !ValB) in MemOperandsHaveAlias()
1331 MemoryLocation(ValA, OverlapA, UseTBAA ? MMOa->getAAInfo() : AAMDNodes()), in MemOperandsHaveAlias()
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/
H A DSVEInstrFormats.td254 class SVEExactFPImm<string Suffix, string ValA, string ValB> : AsmOperandClass {
258 let PredicateMethod = "isExactFPImm<" # ValA # ", " # ValB # ">";
259 let RenderMethod = "addExactFPImmOperands<" # ValA # ", " # ValB # ">";
262 class SVEExactFPImmOperand<string Suffix, string ValA, string ValB> : Operand<i32> {
263 let PrintMethod = "printExactFPImm<" # ValA # ", " # ValB # ">";
264 let ParserMatchClass = SVEExactFPImm<Suffix, ValA, ValB>;