/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() 279 if (V2.isSigned() && V2.isNegative()) in evalAPSInt() 302 if (V2.isSigned() && V2.isNegative()) in evalAPSInt() 334 return &getValue( V1 & V2 ); in evalAPSInt() 337 return &getValue( V1 | V2 ); in evalAPSInt() 340 return &getValue( V1 ^ V2 ); in evalAPSInt() [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() 269 return It != member_end() && It == findLeader(V2); 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, 52 Constant *V2);
|
/openbsd/gnu/gcc/libstdc++-v3/include/ext/ |
H A D | pod_char_traits.h | 59 template<typename V2> 61 from(const V2& v) in from() 67 template<typename V2> 68 static V2 71 V2 ret = { static_cast<V2>(c.value) }; in to()
|
/openbsd/gnu/llvm/llvm/lib/Support/ |
H A D | xxhash.cpp | 80 uint64_t V2 = Seed + PRIME64_2; in xxHash64() local 87 V2 = round(V2, endian::read64le(P)); in xxHash64() 95 H64 = rotl64(V1, 1) + rotl64(V2, 7) + rotl64(V3, 12) + rotl64(V4, 18); in xxHash64() 97 H64 = mergeRound(H64, V2); in xxHash64()
|
H A D | FileUtilities.cpp | 90 double V1 = 0.0, V2 = 0.0; in CompareNumbers() local 109 V2 = strtod(F2P, const_cast<char**>(&F2NumEnd)); in CompareNumbers() 127 V2 = strtod(&StrTmp[0], const_cast<char**>(&F2NumEnd)); in CompareNumbers() 144 if (AbsTolerance < std::abs(V1-V2)) { in CompareNumbers() 147 if (V2) in CompareNumbers() 148 Diff = std::abs(V1/V2 - 1.0); 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()
|
H A D | StringMap.cpp | 183 StringMapEntryBase *V2 = RemoveKey(StringRef(VStr, V->getKeyLength())); in RemoveKey() local 184 (void)V2; in RemoveKey() 185 assert(V == V2 && "Didn't find key?"); in RemoveKey()
|
/openbsd/gnu/llvm/llvm/include/llvm/Analysis/ |
H A D | BasicAliasAnalysis.h | 118 bool isValueEqualInPotentialCycles(const Value *V1, const Value *V2, 126 const Value *V2, LocationSize V2Size, 131 const Value *V2, LocationSize V2Size, AAQueryInfo &AAQI); 134 const Value *V2, LocationSize V2Size, 137 AliasResult aliasCheck(const Value *V1, LocationSize V1Size, const Value *V2, 142 const Value *V2, LocationSize V2Size,
|
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) { 352 MemoryLocation::getBeforeOrAfter(V2)); 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) { 370 MemoryLocation::getBeforeOrAfter(V2)); 380 bool isMustAlias(const Value *V1, const Value *V2) { 656 bool isMustAlias(const Value *V1, const Value *V2) { [all …]
|
/openbsd/gnu/llvm/llvm/lib/IR/ |
H A D | ConstantFold.cpp | 524 if (Cond->isNullValue()) return V2; in ConstantFoldSelectInstruction() 562 return V2; in ConstantFoldSelectInstruction() 565 if (V1 == V2) return V1; in ConstantFoldSelectInstruction() 568 return V2; in ConstantFoldSelectInstruction() 569 if (isa<PoisonValue>(V2)) in ConstantFoldSelectInstruction() 593 if (isa<UndefValue>(V1) && NotPoison(V2)) return V2; in ConstantFoldSelectInstruction() 1329 if (!isa<ConstantExpr>(V2)) { in evaluateFCmpRelation() 1417 if (!isa<GlobalValue>(V2) && !isa<ConstantExpr>(V2) && in evaluateICmpRelation() 1418 !isa<BlockAddress>(V2)) { in evaluateICmpRelation() 1459 } else if (isa<BlockAddress>(V2)) { in evaluateICmpRelation() [all …]
|
/openbsd/gnu/llvm/llvm/lib/Analysis/ |
H A D | BasicAliasAnalysis.cpp | 1017 const Value *V2, LocationSize V2Size, in aliasGEP() argument 1022 if (!isa<GEPOperator>(V2)) in aliasGEP() 1052 if (isa<GEPOperator>(V2)) { in aliasGEP() 1087 const Value *LeftPtr = V2; in aliasGEP() 1309 if (const PHINode *PN2 = dyn_cast<PHINode>(V2)) in aliasPHI() 1430 V2 = V2->stripPointerCastsForAliasAnalysis(); in aliasCheck() 1434 if (isa<UndefValue>(V1) || isa<UndefValue>(V2)) in aliasCheck() 1443 if (isValueEqualInPotentialCycles(V1, V2, AAQI)) in aliasCheck() 1556 const bool Swapped = V1 > V2; in aliasCheck() 1613 const Value *V2, LocationSize V2Size, in aliasCheckRecursive() argument [all …]
|
/openbsd/gnu/llvm/compiler-rt/lib/orc/tests/unit/ |
H A D | error_test.cpp | 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() 43 const std::string &getV2() const { return V2; } in getV2() 46 std::string V2; member in __anond5d4f0bd0111::CustomSubError
|
/openbsd/gnu/llvm/llvm/lib/Target/Hexagon/ |
H A D | BitTracker.cpp | 441 const BitValue &V2 = A2[I]; in eADD() local 442 if (!V1.num() || !V2.num()) in eADD() 455 else if (V2.is(Carry)) in eADD() 488 if (V2.is(Borrow)) in eSUB() 558 else if (V2.is(1)) in eAND() 562 else if (V1 == V2) in eAND() 578 if (V1.is(1) || V2.is(1)) in eORL() 582 else if (V2.is(0)) in eORL() 584 else if (V1 == V2) in eORL() 602 else if (V2.is(0)) in eXOR() [all …]
|
/openbsd/gnu/llvm/llvm/lib/Transforms/ObjCARC/ |
H A D | ProvenanceAnalysisEvaluator.cpp | 51 for (Value *V2 : Values) { in run() 52 StringRef NameV2 = getName(V2); in run() 56 if (PA.related(V1, V2)) in run()
|
/openbsd/gnu/llvm/llvm/lib/Target/SystemZ/ |
H A D | SystemZInstrFormats.td | 1080 bits<5> V2; 1105 bits<5> V2; 1128 bits<5> V2; 1153 bits<5> V2; 1219 bits<5> V2; 1249 bits<5> V2; 1278 bits<5> V2; 1308 bits<5> V2; 1338 bits<5> V2; 1401 bits<5> V2; [all …]
|
/openbsd/gnu/llvm/clang/lib/CodeGen/ |
H A D | CGValue.h | 49 llvm::PointerIntPair<llvm::Value *, 1, bool> V2; variable 58 bool isVolatileQualified() const { return V2.getInt(); } in isVolatileQualified() 69 return std::make_pair(V1.getPointer(), V2.getPointer()); in getComplexVal() 75 auto align = reinterpret_cast<uintptr_t>(V2.getPointer()) >> AggAlignShift; in getAggregateAddress() 93 ER.V2.setInt(false); in get() 96 static RValue getComplex(llvm::Value *V1, llvm::Value *V2) { in getComplex() argument 99 ER.V2.setPointer(V2); in getComplex() 101 ER.V2.setInt(false); in getComplex() 117 ER.V2.setPointer(reinterpret_cast<llvm::Value*>(align << AggAlignShift)); 118 ER.V2.setInt(isVolatile);
|
/openbsd/gnu/gcc/gcc/config/arm/ |
H A 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" 163 "cfmuls%?\\t%V0, %V1, %V2" [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 1369 (__v8sf)(__m256)(V2), (int)(M))) 1465 #define _mm256_dp_ps(V1, V2, M) \ argument 1467 (__v8sf)(__m256)(V2), (M))) 4639 #define _mm256_insertf128_ps(V1, V2, M) \ argument 4677 #define _mm256_insertf128_pd(V1, V2, M) \ argument [all …]
|
H A D | shaintrin.h | 20 #define _mm_sha1rnds4_epu32(V1, V2, M) \ argument 21 __builtin_ia32_sha1rnds4((__v4si)(__m128i)(V1), (__v4si)(__m128i)(V2), (M))
|
/openbsd/gnu/llvm/llvm/lib/Target/Mips/ |
H A D | Mips16ISelDAGToDAG.cpp | 75 Register V0, V1, V2, GlobalBaseReg = MipsFI->getGlobalBaseReg(MF); in initGlobalBaseReg() local 80 V2 = RegInfo.createVirtualRegister(RC); in initGlobalBaseReg() 88 BuildMI(MBB, I, DL, TII.get(Mips::SllX16), V2).addReg(V0).addImm(16); in initGlobalBaseReg() 91 .addReg(V2); in initGlobalBaseReg()
|
/openbsd/gnu/llvm/llvm/lib/Transforms/Utils/ |
H A D | CodeMoverUtils.cpp | 90 static bool isEquivalent(const Value &V1, const Value &V2); 91 static bool isInverse(const Value &V1, const Value &V2); 210 bool ControlConditions::isEquivalent(const Value &V1, const Value &V2) { in isEquivalent() argument 211 return &V1 == &V2; in isEquivalent() 214 bool ControlConditions::isInverse(const Value &V1, const Value &V2) { in isInverse() argument 216 if (const CmpInst *Cmp2 = dyn_cast<CmpInst>(&V2)) { in isInverse()
|
/openbsd/gnu/llvm/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | 8041 V2 = peekThroughBitcasts(V2); in computeZeroableShuffleElements() 8134 V2 = peekThroughBitcasts(V2); in getTargetShuffleAndZeroables() 13128 V2 = DAG.getBitcast(BlendVT, V2); in lowerShuffleAsBlend() 13329 V2 = DAG.getBitcast(UnpackVT, V2); in lowerShuffleAsPermuteAndUnpack() 14614 V2 = DAG.getBitcast(VT, V2); in lowerShuffleAsElementInsertion() 14630 V2 = DAG.getBitcast(VT, V2); in lowerShuffleAsElementInsertion() 15260 V2 = DAG.getBitcast(MVT::v2f64, V2); in lowerV2I64Shuffle() 16356 V2 = DAG.getBitcast(MVT::v8i16, V2); in lowerV8F16Shuffle() 18774 V2 = DAG.getBitcast(FpVT, V2); in lower256BitShuffle() 18781 V2 = DAG.getBitcast(IVT, V2); in lower256BitShuffle() [all …]
|
/openbsd/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/Event/ |
H A D | V2.t | 7 use Test2::Event::V2(); 9 my $CLASS = 'Test2::Event::V2'; 14 [Test2::Event::V2->non_facet_keys],
|