Home
last modified time | relevance | path

Searched refs:V2 (Results 1 – 25 of 196) sorted by relevance

12345678

/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
HDBasicValueFactory.cpp247 const llvm::APSInt& V1, const llvm::APSInt& V2) { in evalAPSInt() argument
253 return &getValue( V1 * V2 ); in evalAPSInt()
256 if (V2 == 0) // Avoid division by zero in evalAPSInt()
258 return &getValue( V1 / V2 ); in evalAPSInt()
261 if (V2 == 0) // Avoid division by zero in evalAPSInt()
263 return &getValue( V1 % V2 ); in evalAPSInt()
266 return &getValue( V1 + V2 ); in evalAPSInt()
269 return &getValue( V1 - V2 ); in evalAPSInt()
275 if (V2.isNegative() || V2.getBitWidth() > 64) in evalAPSInt()
278 uint64_t Amt = V2.getZExtValue(); in evalAPSInt()
[all …]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
HDInstrTypes.h221 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
223 return Create(Instruction::OPC, V1, V2, Name);\
227 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
229 return Create(Instruction::OPC, V1, V2, Name, BB);\
233 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
235 return Create(Instruction::OPC, V1, V2, Name, I);\
239 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
241 return Create(Instruction::OPC, V1, V2, Name, It);\
246 CreateWithCopiedFlags(BinaryOps Opc, Value *V1, Value *V2, Value *CopyO,
249 BinaryOperator *BO = Create(Opc, V1, V2, Name, InsertBefore);
[all …]
HDConstantFold.h40 Constant *V1, Constant *V2);
44 Constant *ConstantFoldShuffleVectorInstruction(Constant *V1, Constant *V2,
52 Constant *V2);
/freebsd-13-stable/sys/contrib/device-tree/Bindings/hwmon/
HDltc2990.txt13 0: V1, V2, TR2
14 1: V1-V2, TR2
15 2: V1-V2, V3, V4
19 6: V1-V2, V3-V4
20 7: V1, V2, V3, V4
26 1: TR1, V1 or V1-V2 only per mode
35 lltc,meas-mode = <7 3>; /* V1, V2, V3, V4 */
/freebsd-13-stable/sys/contrib/device-tree/src/arm64/marvell/
HDarmada-3720-db.dts72 /* Gigabit module on CON19(V2.0)/CON21(V1.4) */
81 /* Gigabit module on CON18(V2.0)/CON20(V1.4) */
129 /* CON15(V2.0)/CON17(V1.4) : PCIe / CON15(V2.0)/CON12(V1.4) :mini-PCIe */
151 /* SD slot module on CON14(V2.0)/CON15(V1.4) */
195 * Exported on the micro USB connector CON30(V2.0)/CON32(V1.4) through
196 * an FTDI (also on CON24(V2.0)/CON26(V1.4)).
204 /* CON26(V2.0)/CON28(V1.4) */
211 /* CON27(V2.0)/CON29(V1.4) */
216 /* CON29(V2.0)/CON31(V1.4) */
HDcn9132-db.dts104 /* SLM-1521-V2, CON9 */
125 /* SLM-1521-V2 - U3 */
153 /* SLM-1521-V2, CON6 */
163 /* SLM-1521-V2, CON8 */
175 /* SLM-1521-V2, CON4 */
214 /* SLM-1521-V2, CON11 */
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
HDFileUtilities.cpp90 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()
HDStringMap.cpp195 StringMapEntryBase *V2 = RemoveKey(StringRef(VStr, V->getKeyLength())); in RemoveKey() local
196 (void)V2; in RemoveKey()
197 assert(V == V2 && "Didn't find key?"); in RemoveKey()
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
HDAPSInt.h357 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; }
HDEquivalenceClasses.h238 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()
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
HDBasicAliasAnalysis.h122 bool isValueEqualInPotentialCycles(const Value *V1, const Value *V2,
130 const Value *V2, LocationSize V2Size,
135 const Value *V2, LocationSize V2Size, AAQueryInfo &AAQI);
138 const Value *V2, LocationSize V2Size,
141 AliasResult aliasCheck(const Value *V1, LocationSize V1Size, const Value *V2,
146 const Value *V2, LocationSize V2Size,
HDAliasAnalysis.h360 AliasResult alias(const Value *V1, LocationSize V1Size, const Value *V2,
362 return alias(MemoryLocation(V1, V1Size), MemoryLocation(V2, V2Size));
366 AliasResult alias(const Value *V1, const Value *V2) {
368 MemoryLocation::getBeforeOrAfter(V2));
378 bool isNoAlias(const Value *V1, LocationSize V1Size, const Value *V2,
380 return isNoAlias(MemoryLocation(V1, V1Size), MemoryLocation(V2, V2Size));
384 bool isNoAlias(const Value *V1, const Value *V2) {
386 MemoryLocation::getBeforeOrAfter(V2));
396 bool isMustAlias(const Value *V1, const Value *V2) {
397 return alias(V1, LocationSize::precise(1), V2, LocationSize::precise(1)) ==
[all …]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
HDBasicAliasAnalysis.cpp193 static bool areBothVScale(const Value *V1, const Value *V2) { in areBothVScale() argument
195 PatternMatch::match(V2, PatternMatch::m_VScale()); in areBothVScale()
1081 const Value *V2, LocationSize V2Size, in aliasGEP() argument
1086 if (!isa<GEPOperator>(V2)) in aliasGEP()
1100 DecomposedGEP DecompGEP2 = DecomposeGEPExpression(V2, DL, &AC, DT); in aliasGEP()
1103 if (DecompGEP1.Base == GEP1 && DecompGEP2.Base == V2) in aliasGEP()
1120 if (isa<GEPOperator>(V2)) { in aliasGEP()
1156 const Value *LeftPtr = V2; in aliasGEP()
1384 const Value *V2, LocationSize V2Size, in aliasSelect() argument
1388 if (const SelectInst *SI2 = dyn_cast<SelectInst>(V2)) in aliasSelect()
[all …]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
HDConstantFold.cpp268 Constant *V1, Constant *V2) { in ConstantFoldSelectInstruction() argument
270 if (Cond->isNullValue()) return V2; in ConstantFoldSelectInstruction()
282 Constant *V2Element = ConstantExpr::getExtractElement(V2, in ConstantFoldSelectInstruction()
308 return V2; in ConstantFoldSelectInstruction()
311 if (V1 == V2) return V1; in ConstantFoldSelectInstruction()
314 return V2; in ConstantFoldSelectInstruction()
315 if (isa<PoisonValue>(V2)) in ConstantFoldSelectInstruction()
339 if (isa<UndefValue>(V1) && NotPoison(V2)) return V2; in ConstantFoldSelectInstruction()
340 if (isa<UndefValue>(V2) && NotPoison(V1)) return V1; in ConstantFoldSelectInstruction()
451 Constant *llvm::ConstantFoldShuffleVectorInstruction(Constant *V1, Constant *V2, in ConstantFoldShuffleVectorInstruction() argument
[all …]
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/orc/tests/unit/
HDerror_test.cpp38 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 __anoncea4eb090111::CustomSubError
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
HDBitTracker.cpp441 const BitValue &V2 = A2[I]; in eADD() local
442 if (!V1.num() || !V2.num()) in eADD()
444 unsigned S = bool(V1) + bool(V2) + Carry; in eADD()
450 const BitValue &V2 = A2[I]; in eADD() local
454 Res[I] = BitValue::ref(V2); in eADD()
455 else if (V2.is(Carry)) in eADD()
474 const BitValue &V2 = A2[I]; in eSUB() local
475 if (!V1.num() || !V2.num()) in eSUB()
477 unsigned S = bool(V1) - bool(V2) - Borrow; in eSUB()
483 const BitValue &V2 = A2[I]; in eSUB() local
[all …]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
HDProvenanceAnalysisEvaluator.cpp51 for (Value *V2 : Values) { in run()
52 StringRef NameV2 = getName(V2); in run()
56 if (PA.related(V1, V2)) in run()
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
HDSystemZInstrFormats.td1209 bits<5> V2;
1216 let Inst{35-32} = V2{3-0};
1222 let Inst{10} = V2{4};
1234 bits<5> V2;
1241 let Inst{35-32} = V2{3-0};
1246 let Inst{10} = V2{4};
1257 bits<5> V2;
1264 let Inst{35-32} = V2{3-0};
1270 let Inst{10} = V2{4};
1282 bits<5> V2;
[all …]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/LoongArch/
HDLoongArchISelLowering.cpp465 MVT VT, SDValue V1, SDValue V2, in lowerVECTOR_SHUFFLE_VREPLVEI() argument
507 MVT VT, SDValue V1, SDValue V2, in lowerVECTOR_SHUFFLE_VSHUF4I() argument
570 MVT VT, SDValue V1, SDValue V2, in lowerVECTOR_SHUFFLE_VPACKEV() argument
575 SDValue OriV1 = V1, OriV2 = V2; in lowerVECTOR_SHUFFLE_VPACKEV()
585 V2 = OriV1; in lowerVECTOR_SHUFFLE_VPACKEV()
587 V2 = OriV2; in lowerVECTOR_SHUFFLE_VPACKEV()
591 return DAG.getNode(LoongArchISD::VPACKEV, DL, VT, V2, V1); in lowerVECTOR_SHUFFLE_VPACKEV()
610 MVT VT, SDValue V1, SDValue V2, in lowerVECTOR_SHUFFLE_VPACKOD() argument
615 SDValue OriV1 = V1, OriV2 = V2; in lowerVECTOR_SHUFFLE_VPACKOD()
625 V2 = OriV1; in lowerVECTOR_SHUFFLE_VPACKOD()
[all …]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Headers/
HDavxintrin.h1242 #define _mm256_permute2f128_pd(V1, V2, M) \ argument
1244 (__v4df)(__m256d)(V2), (int)(M)))
1283 #define _mm256_permute2f128_ps(V1, V2, M) \ argument
1285 (__v8sf)(__m256)(V2), (int)(M)))
1323 #define _mm256_permute2f128_si256(V1, V2, M) \ argument
1325 (__v8si)(__m256i)(V2), (int)(M)))
1352 #define _mm256_blend_pd(V1, V2, M) \ argument
1354 (__v4df)(__m256d)(V2), (int)(M)))
1380 #define _mm256_blend_ps(V1, V2, M) \ argument
1382 (__v8sf)(__m256)(V2), (int)(M)))
[all …]
HDshaintrin.h50 #define _mm_sha1rnds4_epu32(V1, V2, M) \ argument
51 __builtin_ia32_sha1rnds4((__v4si)(__m128i)(V1), (__v4si)(__m128i)(V2), (M))
/freebsd-13-stable/contrib/file/magic/Magdir/
HDpwsafe10 # V2 https://passwordsafe.svn.sourceforge.net/viewvc/passwordsafe/trunk/pwsafe/pwsafe/docs/formatV2…
12 # V2 and V1 have no easy identifier that I can find
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
HDMips16ISelDAGToDAG.cpp75 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()
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
HDIntervalPartition.h60 unsigned V2 = ID2 >= BlockOrder.size() ? 0 : BlockOrder[ID2]; in operator() local
61 return V1 > V2; in operator()
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
HDCodeMoverUtils.cpp90 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()

12345678