/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Core/ |
H A D | BasicValueFactory.cpp | 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() 307 if (Amt >= V1.getBitWidth()) in evalAPSInt() 334 return &getValue( V1 & V2 ); in evalAPSInt() [all …]
|
/openbsd/gnu/gcc/gcc/config/arm/ |
H A D | cirrus.md | 236 "cfabs64%?\\t%V0, %V1" 246 "cfneg64%?\\t%V0, %V1" 262 "cfnegs%?\\t%V0, %V1" 270 "cfnegd%?\\t%V0, %V1" 288 "cfabss%?\\t%V0, %V1" 296 "cfabsd%?\\t%V0, %V1" 386 case 4: return \"cfmvr64l%?\\t%Q0, %V1\;cfmvr64h%?\\t%R0, %V1\"; 414 cfcpys%?\\t%V0, %V1 417 cfmvrs%?\\t%0, %V1 418 cfstrs%?\\t%V1, %0 [all …]
|
/openbsd/gnu/llvm/llvm/lib/Target/SystemZ/ |
H A D | SystemZInstrFormats.td | 1018 bits<5> V1; 1037 bits<5> V1; 1058 bits<5> V1; 1079 bits<5> V1; 1104 bits<5> V1; 1127 bits<5> V1; 1152 bits<5> V1; 1175 bits<5> V1; 1194 bits<5> V1; 1218 bits<5> V1; [all …]
|
/openbsd/gnu/llvm/compiler-rt/lib/orc/tests/unit/ |
H A D | error_test.cpp | 26 CustomError(int V1) : V1(V1) {} in CustomError() argument 28 return "CustomError V1 = " + std::to_string(V1); in toString() 30 int getV1() const { return V1; } in getV1() 33 int V1; member in __anond5d4f0bd0111::CustomError 38 CustomSubError(int V1, std::string V2) in CustomSubError() argument 39 : RTTIExtends<CustomSubError, CustomError>(V1), V2(std::move(V2)) {} in CustomSubError() 41 return "CustomSubError V1 = " + std::to_string(V1) + ", " + V2; in toString()
|
/openbsd/regress/usr.bin/mandoc/roff/esc/ |
H A 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)
|
H A 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]
|
H A 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/gnu/llvm/clang/lib/CodeGen/ |
H A 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() 63 return V1.getPointer(); in getScalarVal() 81 return V1.getPointer(); in getAggregatePointer() 91 ER.V1.setPointer(V); in get() 92 ER.V1.setInt(Scalar); in get() 98 ER.V1.setPointer(V1); in getComplex() 100 ER.V1.setInt(Complex); in getComplex() 112 ER.V1.setPointer(addr.getPointer()); [all …]
|
/openbsd/gnu/llvm/llvm/include/llvm/ADT/ |
H A 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; }
|
H A 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/gnu/llvm/llvm/include/llvm/IR/ |
H A D | InstrTypes.h | 231 return Create(Instruction::OPC, V1, V2, Name);\ 237 return Create(Instruction::OPC, V1, V2, Name, BB);\ 243 return Create(Instruction::OPC, V1, V2, Name, I);\ 284 BinaryOperator *BO = Create(Opc, V1, V2, Name); 290 BinaryOperator *BO = Create(Opc, V1, V2, Name, BB); 296 BinaryOperator *BO = Create(Opc, V1, V2, Name, I); 303 BinaryOperator *BO = Create(Opc, V1, V2, Name); 309 BinaryOperator *BO = Create(Opc, V1, V2, Name, BB); 315 BinaryOperator *BO = Create(Opc, V1, V2, Name, I); 322 BinaryOperator *BO = Create(Opc, V1, V2, Name); [all …]
|
H A D | ConstantFold.h | 40 Constant *V1, Constant *V2); 44 Constant *ConstantFoldShuffleVectorInstruction(Constant *V1, Constant *V2, 51 Constant *ConstantFoldBinaryInstruction(unsigned Opcode, Constant *V1,
|
/openbsd/gnu/llvm/llvm/lib/Support/ |
H A 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()
|
H A 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/gnu/llvm/llvm/lib/Target/Hexagon/ |
H A D | BitTracker.cpp | 453 if (V1.is(Carry)) in eADD() 484 if (V1.is(Borrow)) { in eSUB() 556 if (V1.is(1)) in eAND() 562 else if (V1 == V2) in eAND() 563 Res[i] = V1; in eAND() 578 if (V1.is(1) || V2.is(1)) in eORL() 580 else if (V1.is(0)) in eORL() 584 else if (V1 == V2) in eORL() 585 Res[i] = V1; in eORL() 600 if (V1.is(0)) in eXOR() [all …]
|
/openbsd/gnu/llvm/llvm/lib/IR/ |
H A D | ConstantFold.cpp | 525 if (Cond->isAllOnesValue()) return 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() 594 if (isa<UndefValue>(V2) && NotPoison(V1)) return V1; in ConstantFoldSelectInstruction() 1328 if (!isa<ConstantExpr>(V1)) { in evaluateFCmpRelation() 1413 if (V1 == V2) return ICmpInst::ICMP_EQ; in evaluateICmpRelation() 1415 if (!isa<ConstantExpr>(V1) && !isa<GlobalValue>(V1) && in evaluateICmpRelation() [all …]
|
/openbsd/gnu/llvm/llvm/lib/Transforms/ObjCARC/ |
H A 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/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.robertl/ |
H A D | eb76.C | 7 V1 enumerator 16 if( v.t != V1 ) { // complains about taking address of bitfield in f()
|
/openbsd/gnu/llvm/llvm/include/llvm/Analysis/ |
H A 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) { 656 bool isMustAlias(const Value *V1, const Value *V2) { [all …]
|
H A 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,
|
H A 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/gnu/llvm/llvm/lib/Target/Mips/ |
H A 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()
|
/openbsd/gnu/llvm/llvm/lib/Transforms/Vectorize/ |
H A D | VectorCombine.cpp | 572 Value *V0, *V1; in foldExtractExtract() local 576 V0->getType() != V1->getType()) in foldExtractExtract() 761 Value *V0 = nullptr, *V1 = nullptr; in scalarizeBinopOrCmp() local 773 bool IsConst1 = !V1; in scalarizeBinopOrCmp() 782 auto *I1 = dyn_cast_or_null<Instruction>(V1); in scalarizeBinopOrCmp() 838 IsCmp ? Builder.CreateCmp(Pred, V0, V1) in scalarizeBinopOrCmp() 1458 SmallVector<std::pair<int, int>> V1, V2; in foldSelectShuffle() local 1499 if (It != V1.end()) in foldSelectShuffle() 1503 V1.emplace_back(Mask[I], V1.size()); in foldSelectShuffle() 1530 if (V1.empty() || V2.empty() || in foldSelectShuffle() [all …]
|
/openbsd/gnu/llvm/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | 8040 V1 = peekThroughBitcasts(V1); in computeZeroableShuffleElements() 8133 V1 = peekThroughBitcasts(V1); in getTargetShuffleAndZeroables() 9130 V1 = DAG.getBitcast(VT, V1); in LowerBuildVectorv4x32() 12430 V1 = DAG.getBitcast(VT, V1); in lowerShuffleWithUNPCK256() 12803 if (MatchPACK(V1, V1, PackVT)) in matchShuffleWithPACK() 13127 V1 = DAG.getBitcast(BlendVT, V1); in lowerShuffleAsBlend() 18773 V1 = DAG.getBitcast(FpVT, V1); in lower256BitShuffle() 18780 V1 = DAG.getBitcast(IVT, V1); in lower256BitShuffle() 30795 V1 = DAG.getBitcast(VT, V1); in LowerShift() 30804 V1 = DAG.getBitcast(VT, V1); in LowerShift() [all …]
|
/openbsd/gnu/llvm/clang/lib/Headers/ |
H A D | avxintrin.h | 1229 #define _mm256_permute2f128_pd(V1, V2, M) \ argument 1270 #define _mm256_permute2f128_ps(V1, V2, M) \ argument 1310 #define _mm256_permute2f128_si256(V1, V2, M) \ argument 1339 #define _mm256_blend_pd(V1, V2, M) \ argument 1367 #define _mm256_blend_ps(V1, V2, M) \ argument 1368 ((__m256)__builtin_ia32_blendps256((__v8sf)(__m256)(V1), \ 1465 #define _mm256_dp_ps(V1, V2, M) \ argument 1466 ((__m256)__builtin_ia32_dpps256((__v8sf)(__m256)(V1), \ 4639 #define _mm256_insertf128_ps(V1, V2, M) \ argument 4677 #define _mm256_insertf128_pd(V1, V2, M) \ argument [all …]
|