| /openbsd/src/gnu/llvm/clang/lib/StaticAnalyzer/Core/ |
| D | BasicValueFactory.cpp | 251 const llvm::APSInt& V1, const llvm::APSInt& V2) { in evalAPSInt() argument 257 return &getValue( V1 * V2 ); in evalAPSInt() 262 return &getValue( V1 / V2 ); in evalAPSInt() 267 return &getValue( V1 % V2 ); in evalAPSInt() 270 return &getValue( V1 + V2 ); in evalAPSInt() 273 return &getValue( V1 - V2 ); in evalAPSInt() 284 if (Amt >= V1.getBitWidth()) in evalAPSInt() 288 if (V1.isSigned() && V1.isNegative()) in evalAPSInt() 291 if (V1.isSigned() && Amt > V1.countLeadingZeros()) in evalAPSInt() 295 return &getValue( V1.operator<<( (unsigned) Amt )); in evalAPSInt() [all …]
|
| /openbsd/src/gnu/gcc/gcc/config/arm/ |
| D | cirrus.md | 38 "cfadd64%?\\t%V0, %V1, %V2" 48 "cfadd32%?\\t%V0, %V1, %V2" 58 "cfadds%?\\t%V0, %V1, %V2" 68 "cfaddd%?\\t%V0, %V1, %V2" 78 "cfsub64%?\\t%V0, %V1, %V2" 88 "cfsub32%?\\t%V0, %V1, %V2" 98 "cfsubs%?\\t%V0, %V1, %V2" 108 "cfsubd%?\\t%V0, %V1, %V2" 118 "cfmul32%?\\t%V0, %V1, %V2" 128 "cfmul64%?\\t%V0, %V1, %V2" [all …]
|
| /openbsd/src/gnu/llvm/llvm/lib/Target/SystemZ/ |
| D | SystemZInstrFormats.td | 1018 bits<5> V1; 1023 let Inst{39-36} = V1{3-0}; 1027 let Inst{11} = V1{4}; 1037 bits<5> V1; 1043 let Inst{39-36} = V1{3-0}; 1048 let Inst{11} = V1{4}; 1058 bits<5> V1; 1064 let Inst{39-36} = V1{3-0}; 1068 let Inst{11} = V1{4}; 1079 bits<5> V1; [all …]
|
| /openbsd/src/regress/usr.bin/mandoc/roff/esc/ |
| D | V1.out_ascii | 1 ESC-V1(1) General Commands Manual ESC-V1(1) 4 esc-V1 - interpolate environment variables 11 OpenBSD May 31, 2022 ESC-V1(1)
|
| D | V1.out_lint | 1 mandoc: V1.in:6:25: UNSUPP: unsupported feature: \VN 2 mandoc: V1.in:8:25: UNSUPP: unsupported feature: \V(VN 3 mandoc: V1.in:10:24: UNSUPP: unsupported feature: \V[VARNAME]
|
| D | Makefile | 5 REGRESS_TARGETS += l O1 o p r V1 w z 8 LINT_TARGETS = comment A1 B h l O1 o r V1 w ignore invalid unsupp 20 SKIP_GROFF += V1
|
| /openbsd/src/gnu/llvm/clang/lib/CodeGen/ |
| D | CGValue.h | 47 llvm::PointerIntPair<llvm::Value *, 2, Flavor> V1; variable 54 bool isScalar() const { return V1.getInt() == Scalar; } in isScalar() 55 bool isComplex() const { return V1.getInt() == Complex; } in isComplex() 56 bool isAggregate() const { return V1.getInt() == Aggregate; } in isAggregate() 63 return V1.getPointer(); in getScalarVal() 69 return std::make_pair(V1.getPointer(), V2.getPointer()); in getComplexVal() 77 V1.getPointer(), ElementType, CharUnits::fromQuantity(align)); in getAggregateAddress() 81 return V1.getPointer(); in getAggregatePointer() 91 ER.V1.setPointer(V); in get() 92 ER.V1.setInt(Scalar); in get() [all …]
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/ADT/ |
| D | APSInt.h | 357 inline bool operator==(int64_t V1, const APSInt &V2) { return V2 == V1; } 358 inline bool operator!=(int64_t V1, const APSInt &V2) { return V2 != V1; } 359 inline bool operator<=(int64_t V1, const APSInt &V2) { return V2 >= V1; } 360 inline bool operator>=(int64_t V1, const APSInt &V2) { return V2 <= V1; } 361 inline bool operator<(int64_t V1, const APSInt &V2) { return V2 > V1; } 362 inline bool operator>(int64_t V1, const APSInt &V2) { return V2 < V1; }
|
| D | EquivalenceClasses.h | 238 member_iterator unionSets(const ElemTy &V1, const ElemTy &V2) { in unionSets() argument 239 iterator V1I = insert(V1), V2I = insert(V2); in unionSets() 264 bool isEquivalent(const ElemTy &V1, const ElemTy &V2) const { in isEquivalent() argument 266 if (V1 == V2) in isEquivalent() 268 auto It = findLeader(V1); in isEquivalent()
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/IR/ |
| D | InstrTypes.h | 229 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \ 231 return Create(Instruction::OPC, V1, V2, Name);\ 235 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \ 237 return Create(Instruction::OPC, V1, V2, Name, BB);\ 241 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \ 243 return Create(Instruction::OPC, V1, V2, Name, I);\ 248 CreateWithCopiedFlags(BinaryOps Opc, Value *V1, Value *V2, Instruction *CopyO, 251 BinaryOperator *BO = Create(Opc, V1, V2, Name, InsertBefore); 256 static BinaryOperator *CreateFAddFMF(Value *V1, Value *V2, 259 return CreateWithCopiedFlags(Instruction::FAdd, V1, V2, FMFSource, Name); [all …]
|
| D | ConstantFold.h | 40 Constant *V1, Constant *V2); 44 Constant *ConstantFoldShuffleVectorInstruction(Constant *V1, Constant *V2, 51 Constant *ConstantFoldBinaryInstruction(unsigned Opcode, Constant *V1,
|
| /openbsd/src/gnu/llvm/llvm/lib/Support/ |
| D | xxhash.cpp | 79 uint64_t V1 = Seed + PRIME64_1 + PRIME64_2; in xxHash64() local 85 V1 = round(V1, endian::read64le(P)); in xxHash64() 95 H64 = rotl64(V1, 1) + rotl64(V2, 7) + rotl64(V3, 12) + rotl64(V4, 18); in xxHash64() 96 H64 = mergeRound(H64, V1); in xxHash64()
|
| D | FileUtilities.cpp | 90 double V1 = 0.0, V2 = 0.0; in CompareNumbers() local 108 V1 = strtod(F1P, const_cast<char**>(&F1NumEnd)); in CompareNumbers() 117 V1 = strtod(&StrTmp[0], const_cast<char**>(&F1NumEnd)); in CompareNumbers() 144 if (AbsTolerance < std::abs(V1-V2)) { in CompareNumbers() 148 Diff = std::abs(V1/V2 - 1.0); in CompareNumbers() 149 else if (V1) in CompareNumbers() 150 Diff = std::abs(V2/V1 - 1.0); in CompareNumbers() 156 << "Compared: " << V1 << " and " << V2 << '\n' in CompareNumbers() 157 << "abs. diff = " << std::abs(V1-V2) << " rel.diff = " << Diff << '\n' in CompareNumbers()
|
| /openbsd/src/gnu/llvm/llvm/lib/Target/Hexagon/ |
| D | BitTracker.cpp | 440 const BitValue &V1 = A1[I]; in eADD() local 442 if (!V1.num() || !V2.num()) in eADD() 444 unsigned S = bool(V1) + bool(V2) + Carry; in eADD() 449 const BitValue &V1 = A1[I]; in eADD() local 453 if (V1.is(Carry)) in eADD() 456 Res[I] = BitValue::ref(V1); in eADD() 473 const BitValue &V1 = A1[I]; in eSUB() local 475 if (!V1.num() || !V2.num()) in eSUB() 477 unsigned S = bool(V1) - bool(V2) - Borrow; in eSUB() 482 const BitValue &V1 = A1[I]; in eSUB() local [all …]
|
| /openbsd/src/gnu/llvm/llvm/lib/IR/ |
| D | ConstantFold.cpp | 522 Constant *V1, Constant *V2) { in ConstantFoldSelectInstruction() argument 525 if (Cond->isAllOnesValue()) return V1; in ConstantFoldSelectInstruction() 534 Constant *V1Element = ConstantExpr::getExtractElement(V1, in ConstantFoldSelectInstruction() 558 return PoisonValue::get(V1->getType()); in ConstantFoldSelectInstruction() 561 if (isa<UndefValue>(V1)) return V1; in ConstantFoldSelectInstruction() 565 if (V1 == V2) return V1; in ConstantFoldSelectInstruction() 567 if (isa<PoisonValue>(V1)) in ConstantFoldSelectInstruction() 570 return V1; in ConstantFoldSelectInstruction() 593 if (isa<UndefValue>(V1) && NotPoison(V2)) return V2; in ConstantFoldSelectInstruction() 594 if (isa<UndefValue>(V2) && NotPoison(V1)) return V1; in ConstantFoldSelectInstruction() [all …]
|
| /openbsd/src/gnu/llvm/llvm/lib/Transforms/ObjCARC/ |
| D | ProvenanceAnalysisEvaluator.cpp | 49 for (Value *V1 : Values) { in run() 50 StringRef NameV1 = getName(V1); in run() 56 if (PA.related(V1, V2)) in run()
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.robertl/ |
| D | eb76.C | 7 V1 enumerator 16 if( v.t != V1 ) { // complains about taking address of bitfield in f()
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/Analysis/ |
| D | AliasAnalysis.h | 344 AliasResult alias(const Value *V1, LocationSize V1Size, const Value *V2, 346 return alias(MemoryLocation(V1, V1Size), MemoryLocation(V2, V2Size)); 350 AliasResult alias(const Value *V1, const Value *V2) { 351 return alias(MemoryLocation::getBeforeOrAfter(V1), 362 bool isNoAlias(const Value *V1, LocationSize V1Size, const Value *V2, 364 return isNoAlias(MemoryLocation(V1, V1Size), MemoryLocation(V2, V2Size)); 368 bool isNoAlias(const Value *V1, const Value *V2) { 369 return isNoAlias(MemoryLocation::getBeforeOrAfter(V1), 380 bool isMustAlias(const Value *V1, const Value *V2) { 381 return alias(V1, LocationSize::precise(1), V2, LocationSize::precise(1)) == [all …]
|
| D | BasicAliasAnalysis.h | 118 bool isValueEqualInPotentialCycles(const Value *V1, const Value *V2, 125 AliasResult aliasGEP(const GEPOperator *V1, LocationSize V1Size, 137 AliasResult aliasCheck(const Value *V1, LocationSize V1Size, const Value *V2, 141 AliasResult aliasCheckRecursive(const Value *V1, LocationSize V1Size,
|
| D | InstSimplifyFolder.h | 107 Value *FoldShuffleVector(Value *V1, Value *V2, in FoldShuffleVector() argument 110 cast<VectorType>(V1->getType())->getElementType(), Mask.size(), in FoldShuffleVector() 111 isa<ScalableVectorType>(V1->getType())); in FoldShuffleVector() 112 return simplifyShuffleVectorInst(V1, V2, Mask, RetTy, SQ); in FoldShuffleVector()
|
| /openbsd/src/gnu/llvm/llvm/lib/Target/Mips/ |
| D | MipsMachineFunction.cpp | 84 Register V1 = RegInfo.createVirtualRegister(RC); in initGlobalBaseReg() local 96 BuildMI(MBB, I, DL, TII.get(Mips::DADDu), V1).addReg(V0) in initGlobalBaseReg() 98 BuildMI(MBB, I, DL, TII.get(Mips::DADDiu), GlobalBaseReg).addReg(V1) in initGlobalBaseReg() 125 BuildMI(MBB, I, DL, TII.get(Mips::ADDu), V1).addReg(V0).addReg(Mips::T9); in initGlobalBaseReg() 126 BuildMI(MBB, I, DL, TII.get(Mips::ADDiu), GlobalBaseReg).addReg(V1) in initGlobalBaseReg()
|
| D | Mips16ISelDAGToDAG.cpp | 75 Register V0, V1, V2, GlobalBaseReg = MipsFI->getGlobalBaseReg(MF); in initGlobalBaseReg() local 79 V1 = RegInfo.createVirtualRegister(RC); in initGlobalBaseReg() 85 BuildMI(MBB, I, DL, TII.get(Mips::AddiuRxPcImmX16), V1) in initGlobalBaseReg() 90 .addReg(V1) in initGlobalBaseReg()
|
| /openbsd/src/gnu/llvm/llvm/lib/Transforms/Vectorize/ |
| D | VectorCombine.cpp | 528 Value *V0 = Ext0->getVectorOperand(), *V1 = Ext1->getVectorOperand(); in foldExtExtCmp() local 529 Value *VecCmp = Builder.CreateCmp(Pred, V0, V1); in foldExtExtCmp() 546 Value *V0 = Ext0->getVectorOperand(), *V1 = Ext1->getVectorOperand(); in foldExtExtBinop() local 548 Builder.CreateBinOp(cast<BinaryOperator>(&I)->getOpcode(), V0, V1); in foldExtExtBinop() 572 Value *V0, *V1; in foldExtractExtract() local 575 !match(I1, m_ExtractElt(m_Value(V1), m_ConstantInt(C1))) || in foldExtractExtract() 576 V0->getType() != V1->getType()) in foldExtractExtract() 761 Value *V0 = nullptr, *V1 = nullptr; in scalarizeBinopOrCmp() local 767 if (!match(Ins1, m_InsertElt(m_Constant(VecC1), m_Value(V1), in scalarizeBinopOrCmp() 773 bool IsConst1 = !V1; in scalarizeBinopOrCmp() [all …]
|
| /openbsd/src/gnu/llvm/llvm/lib/Target/X86/ |
| D | X86ISelLowering.cpp | 4392 static SDValue getMOVL(SelectionDAG &DAG, const SDLoc &dl, MVT VT, SDValue V1, in getMOVL() argument 4399 return DAG.getVectorShuffle(VT, dl, V1, V2, Mask); in getMOVL() 7017 static SDValue concatSubVectors(SDValue V1, SDValue V2, SelectionDAG &DAG, in concatSubVectors() argument 7019 assert(V1.getValueType() == V2.getValueType() && "subvector type mismatch"); in concatSubVectors() 7020 EVT SubVT = V1.getValueType(); in concatSubVectors() 7025 SDValue V = insertSubVector(DAG.getUNDEF(VT), V1, 0, DAG, dl, SubVectorWidth); in concatSubVectors() 7129 SDValue V1, SDValue V2, ArrayRef<int> Mask) { in getVectorShuffle() argument 7130 if ((ISD::isBuildVectorOfConstantSDNodes(V1.getNode()) || V1.isUndef()) && in getVectorShuffle() 7137 SDValue V = (M < NumElts) ? V1 : V2; in getVectorShuffle() 7145 return DAG.getVectorShuffle(VT, dl, V1, V2, Mask); in getVectorShuffle() [all …]
|
| /openbsd/src/gnu/llvm/clang/lib/Headers/ |
| D | avxintrin.h | 1229 #define _mm256_permute2f128_pd(V1, V2, M) \ argument 1230 ((__m256d)__builtin_ia32_vperm2f128_pd256((__v4df)(__m256d)(V1), \ 1270 #define _mm256_permute2f128_ps(V1, V2, M) \ argument 1271 ((__m256)__builtin_ia32_vperm2f128_ps256((__v8sf)(__m256)(V1), \ 1310 #define _mm256_permute2f128_si256(V1, V2, M) \ argument 1311 ((__m256i)__builtin_ia32_vperm2f128_si256((__v8si)(__m256i)(V1), \ 1339 #define _mm256_blend_pd(V1, V2, M) \ argument 1340 ((__m256d)__builtin_ia32_blendpd256((__v4df)(__m256d)(V1), \ 1367 #define _mm256_blend_ps(V1, V2, M) \ argument 1368 ((__m256)__builtin_ia32_blendps256((__v8sf)(__m256)(V1), \ [all …]
|