Searched refs:V1 (Results 1 - 25 of 96) sorted by relevance

1234

/freebsd-11.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DBasicValueFactory.cpp147 const llvm::APSInt& V1, const llvm::APSInt& V2) {
154 return &getValue( V1 * V2 );
159 return &getValue( V1 / V2 );
164 return &getValue( V1 % V2 );
167 return &getValue( V1 + V2 );
170 return &getValue( V1 - V2 );
184 if (Amt >= V1.getBitWidth())
187 return &getValue( V1.operator<<( (unsigned) Amt ));
202 if (Amt >= V1.getBitWidth())
205 return &getValue( V1
146 evalAPSInt(BinaryOperator::Opcode Op, const llvm::APSInt& V1, const llvm::APSInt& V2) argument
266 getPersistentSValPair(const SVal& V1, const SVal& V2) argument
[all...]
/freebsd-11.0-release/contrib/llvm/lib/IR/
H A DConstantFold.h36 Constant *V1, Constant *V2);
40 Constant *ConstantFoldShuffleVectorInstruction(Constant *V1, Constant *V2,
46 Constant *ConstantFoldBinaryInstruction(unsigned Opcode, Constant *V1,
H A DConstantFold.cpp727 Constant *V1, Constant *V2) {
730 if (Cond->isAllOnesValue()) return V1;
736 for (unsigned i = 0, e = V1->getType()->getVectorNumElements(); i != e;++i){
738 Constant *V1Element = ConstantExpr::getExtractElement(V1,
755 if (Result.size() == V1->getType()->getVectorNumElements())
760 if (isa<UndefValue>(V1)) return V1;
763 if (isa<UndefValue>(V1)) return V2;
764 if (isa<UndefValue>(V2)) return V1;
765 if (V1
726 ConstantFoldSelectInstruction(Constant *Cond, Constant *V1, Constant *V2) argument
830 ConstantFoldShuffleVectorInstruction(Constant *V1, Constant *V2, Constant *Mask) argument
1330 evaluateFCmpRelation(Constant *V1, Constant *V2) argument
1418 evaluateICmpRelation(Constant *V1, Constant *V2, bool isSigned) argument
1732 APInt V1 = cast<ConstantInt>(C1)->getValue(); local
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Transforms/ObjCARC/
H A DProvenanceAnalysisEvaluator.cpp71 for (Value *V1 : Values) {
72 StringRef NameV1 = getName(V1);
78 if (PA.related(V1, V2, DL))
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGValue.h46 llvm::PointerIntPair<llvm::Value *, 2, Flavor> V1; member in class:clang::CodeGen::RValue
51 bool isScalar() const { return V1.getInt() == Scalar; }
52 bool isComplex() const { return V1.getInt() == Complex; }
53 bool isAggregate() const { return V1.getInt() == Aggregate; }
60 return V1.getPointer();
66 return std::make_pair(V1.getPointer(), V2.getPointer());
73 return Address(V1.getPointer(), CharUnits::fromQuantity(align));
77 return V1.getPointer();
87 ER.V1.setPointer(V);
88 ER.V1
92 getComplex(llvm::Value *V1, llvm::Value *V2) argument
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Support/
H A DFileUtilities.cpp85 double V1 = 0.0, V2 = 0.0; local
103 V1 = strtod(F1P, const_cast<char**>(&F1NumEnd));
112 V1 = strtod(&StrTmp[0], const_cast<char**>(&F1NumEnd));
139 if (AbsTolerance < std::abs(V1-V2)) {
143 Diff = std::abs(V1/V2 - 1.0);
144 else if (V1)
145 Diff = std::abs(V2/V1 - 1.0);
151 << "Compared: " << V1 << " and " << V2 << '\n'
152 << "abs. diff = " << std::abs(V1-V2) << " rel.diff = " << Diff << '\n'
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Headers/
H A Dshaintrin.h34 #define _mm_sha1rnds4_epu32(V1, V2, M) __extension__ ({ \
35 __builtin_ia32_sha1rnds4((__v4si)(__m128i)(V1), (__v4si)(__m128i)(V2), (M)); })
H A Davxintrin.h296 #define _mm256_permute2f128_pd(V1, V2, M) __extension__ ({ \
297 (__m256d)__builtin_ia32_vperm2f128_pd256((__v4df)(__m256d)(V1), \
300 #define _mm256_permute2f128_ps(V1, V2, M) __extension__ ({ \
301 (__m256)__builtin_ia32_vperm2f128_ps256((__v8sf)(__m256)(V1), \
304 #define _mm256_permute2f128_si256(V1, V2, M) __extension__ ({ \
305 (__m256i)__builtin_ia32_vperm2f128_si256((__v8si)(__m256i)(V1), \
309 #define _mm256_blend_pd(V1, V2, M) __extension__ ({ \
310 (__m256d)__builtin_shufflevector((__v4df)(__m256d)(V1), \
317 #define _mm256_blend_ps(V1, V2, M) __extension__ ({ \
318 (__m256)__builtin_shufflevector((__v8sf)(__m256)(V1), \
[all...]
H A Dsmmintrin.h74 #define _mm_blend_pd(V1, V2, M) __extension__ ({ \
75 (__m128d)__builtin_shufflevector((__v2df)(__m128d)(V1), \
80 #define _mm_blend_ps(V1, V2, M) __extension__ ({ \
81 (__m128)__builtin_shufflevector((__v4sf)(__m128)(V1), (__v4sf)(__m128)(V2), \
108 #define _mm_blend_epi16(V1, V2, M) __extension__ ({ \
109 (__m128i)__builtin_shufflevector((__v8hi)(__m128i)(V1), \
/freebsd-11.0-release/contrib/llvm/include/llvm/ADT/
H A DAPSInt.h328 inline bool operator==(int64_t V1, const APSInt &V2) { return V2 == V1; } argument
329 inline bool operator!=(int64_t V1, const APSInt &V2) { return V2 != V1; } argument
330 inline bool operator<=(int64_t V1, const APSInt &V2) { return V2 >= V1; } argument
331 inline bool operator>=(int64_t V1, const APSInt &V2) { return V2 <= V1; } argument
332 inline bool operator<(int64_t V1, const APSInt &V2) { return V2 > V1; } argument
333 operator >(int64_t V1, const APSInt &V2) argument
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm/IR/
H A DInstrTypes.h371 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
373 return Create(Instruction::OPC, V1, V2, Name);\
377 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
379 return Create(Instruction::OPC, V1, V2, Name, BB);\
383 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
385 return Create(Instruction::OPC, V1, V2, Name, I);\
389 static BinaryOperator *CreateNSW(BinaryOps Opc, Value *V1, Value *V2, argument
391 BinaryOperator *BO = Create(Opc, V1, V2, Name);
395 static BinaryOperator *CreateNSW(BinaryOps Opc, Value *V1, Value *V2, argument
397 BinaryOperator *BO = Create(Opc, V1, V
401 CreateNSW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, Instruction *I) argument
408 CreateNUW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name = �) argument
414 CreateNUW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, BasicBlock *BB) argument
420 CreateNUW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, Instruction *I) argument
427 CreateExact(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name = �) argument
433 CreateExact(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, BasicBlock *BB) argument
439 CreateExact(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, Instruction *I) argument
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Target/Hexagon/
H A DBitTracker.cpp441 const BitValue &V1 = A1[I];
443 if (!V1.num() || !V2.num())
445 unsigned S = bool(V1) + bool(V2) + Carry;
450 const BitValue &V1 = A1[I];
454 if (V1.is(Carry))
457 Res[I] = BitValue::ref(V1);
475 const BitValue &V1 = A1[I];
477 if (!V1.num() || !V2.num())
479 unsigned S = bool(V1) - bool(V2) - Borrow;
484 const BitValue &V1
[all...]
/freebsd-11.0-release/contrib/dtc/
H A Ddtc-lexer.l26 %s V1
65 #define BEGIN_DEFAULT() DPRINT("<V1>\n"); \
66 BEGIN(V1); \
154 <V1>([0-9]+|0[xX][0-9a-fA-F]+)(U|L|UL|LL|ULL)? {
/freebsd-11.0-release/contrib/ncurses/include/
H A DMKkey_defs.sh65 key_event kv1 str V1 KEY_EVENT + ----- We were interrupted by an event
/freebsd-11.0-release/contrib/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp901 /// We know that V1 is a GEP, but we don't know anything about V2.
1297 AliasResult BasicAAResult::aliasCheck(const Value *V1, uint64_t V1Size, argument
1306 V1 = V1->stripPointerCasts();
1309 // If V1 or V2 is undef, the result is NoAlias because we can always pick a
1311 if (isa<UndefValue>(V1) || isa<UndefValue>(V2))
1320 if (isValueEqualInPotentialCycles(V1, V2))
1323 if (!V1->getType()->isPointerTy() || !V2->getType()->isPointerTy())
1327 const Value *O1 = GetUnderlyingObject(V1, DL, MaxLookupSearchDepth);
1340 // If V1/V
1548 const Value *V1 = GetLinearExpression(Var1.V, V1Scale, V1Offset, V1ZExtBits, local
[all...]
H A DAliasAnalysisEvaluator.cpp92 static void PrintResults(const char *Msg, bool P, const Value *V1, argument
98 V1->printAsOperand(os1, true, M);
130 PrintLoadStoreResults(const char *Msg, bool P, const Value *V1, argument
133 errs() << " " << Msg << ": " << *V1
/freebsd-11.0-release/contrib/libreadline/examples/rlfe/
H A Drlfe.c138 #define DPRINT1(FMT, V1) (fprintf(logfile, FMT, V1), fflush(logfile))
139 #define DPRINT2(FMT, V1, V2) (fprintf(logfile, FMT, V1, V2), fflush(logfile))
142 #define DPRINT1(FMT, V1) ((void) 0) /* Do nothing */
143 #define DPRINT2(FMT, V1, V2) ((void) 0) /* Do nothing */
/freebsd-11.0-release/contrib/llvm/lib/Target/Mips/
H A DMips16ISelDAGToDAG.cpp77 unsigned V0, V1, V2, GlobalBaseReg = MipsFI->getGlobalBaseReg(); local
81 V1 = RegInfo.createVirtualRegister(RC);
85 addReg(V1, RegState::Define).
91 .addReg(V1).addReg(V2);
/freebsd-11.0-release/usr.bin/truss/
H A Dmips-freebsd.c122 retval[1] = regs.r_regs[V1];
/freebsd-11.0-release/contrib/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp3057 static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1, argument
3064 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
3948 SDValue V1, unsigned TargetMask,
3957 return DAG.getNode(Opc, dl, VT, V1,
3963 SDValue V1, SDValue V2, SelectionDAG &DAG) {
3975 return DAG.getNode(Opc, dl, VT, V1, V2);
4698 static SDValue Concat128BitVectors(SDValue V1, SDValue V2, EVT VT, argument
4701 SDValue V = Insert128BitVector(DAG.getUNDEF(VT), V1, 0, DAG, dl);
4705 static SDValue Concat256BitVectors(SDValue V1, SDValue V2, EVT VT, argument
4708 SDValue V = Insert256BitVector(DAG.getUNDEF(VT), V1,
3947 getTargetShuffleNode(unsigned Opc, SDLoc dl, MVT VT, SDValue V1, unsigned TargetMask, SelectionDAG &DAG) argument
3962 getTargetShuffleNode(unsigned Opc, SDLoc dl, MVT VT, SDValue V1, SDValue V2, SelectionDAG &DAG) argument
4743 getUnpackl(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1, SDValue V2) argument
4755 getUnpackh(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1, SDValue V2) argument
4775 SDValue V1 = IsZero local
5273 SDValue V1 = FirstNonZero.getOperand(0); local
5420 SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr, local
5929 isHorizontalBinOp(const BuildVectorSDNode *N, unsigned Opcode, SelectionDAG &DAG, unsigned BaseIdx, unsigned LastIdx, SDValue &V0, SDValue &V1) argument
6043 ExpandHorizontalBinOp(const SDValue &V0, const SDValue &V1, SDLoc DL, SelectionDAG &DAG, unsigned X86Opcode, bool Mode, bool isUndefLO, bool isUndefHI) argument
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm/Analysis/
H A DBasicAliasAnalysis.h158 bool isValueEqualInPotentialCycles(const Value *V1, const Value *V2);
163 AliasResult aliasGEP(const GEPOperator *V1, uint64_t V1Size,
176 AliasResult aliasCheck(const Value *V1, uint64_t V1Size, AAMDNodes V1AATag,
H A DAliasAnalysis.h188 AliasResult alias(const Value *V1, uint64_t V1Size, const Value *V2, argument
190 return alias(MemoryLocation(V1, V1Size), MemoryLocation(V2, V2Size));
194 AliasResult alias(const Value *V1, const Value *V2) { argument
195 return alias(V1, MemoryLocation::UnknownSize, V2,
206 bool isNoAlias(const Value *V1, uint64_t V1Size, const Value *V2, argument
208 return isNoAlias(MemoryLocation(V1, V1Size), MemoryLocation(V2, V2Size));
212 bool isNoAlias(const Value *V1, const Value *V2) { argument
213 return isNoAlias(MemoryLocation(V1), MemoryLocation(V2));
223 bool isMustAlias(const Value *V1, const Value *V2) { argument
224 return alias(V1,
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp416 Value *V1, *V2; local
427 match(Op0BO->getOperand(1), m_Shr(m_Value(V1),
432 Value *X = Builder->CreateBinOp(Op0BO->getOpcode(), YS, V1,
447 m_And(m_OneUse(m_Shr(m_Value(V1), m_Specific(Op1))),
453 Value *XM = Builder->CreateAnd(V1, ConstantExpr::getShl(CC, Op1),
454 V1->getName()+".mask");
463 match(Op0BO->getOperand(0), m_Shr(m_Value(V1),
468 Value *X = Builder->CreateBinOp(Op0BO->getOpcode(), V1, YS,
482 m_And(m_OneUse(m_Shr(m_Value(V1), m_Value(V2))),
487 Value *XM = Builder->CreateAnd(V1, ConstantExp
[all...]
H A DInstCombineAndOrXor.cpp2013 Value *V1 = nullptr;
2015 if (!match(Op, m_And(m_Value(V1), m_ConstantInt(CI2)))) return nullptr;
2020 if (V1 == A || V1 == B) {
2021 Value *NewOp = Builder->CreateAnd((V1 == A) ? B : A, CI1);
2022 return BinaryOperator::CreateOr(NewOp, V1);
2043 Value *V1 = nullptr;
2045 if (!match(Op, m_And(m_Value(V1), m_ConstantInt(CI2))))
2052 if (V1 == A || V1
2173 Value *V1 = nullptr, *V2 = nullptr; local
[all...]
/freebsd-11.0-release/sys/mips/include/
H A Dregnum.h53 #define V1 3 macro

Completed in 370 milliseconds

1234