Searched refs:V2 (Results 1 - 25 of 83) sorted by relevance

1234

/macosx-10.9.5/llvmCore-3425.0.33/unittests/ADT/
H A DTinyPtrVectorTest.cpp42 VectorT V2; member in class:__anon10739::TinyPtrVectorTest
66 V2.clear();
67 appendValues(V2, Values2);
155 TypeParam Copy2(this->V2);
158 this->expectValues(this->V2, this->testArray(0));
168 this->V = this->V2;
170 this->expectValues(this->V2, this->testArray(0));
172 this->V = std::move(this->V2);
177 this->V = this->V2;
179 this->expectValues(this->V2, thi
[all...]
H A DIntrusiveRefCntPtrTest.cpp23 VirtualRefCounted *V2 = new VirtualRefCounted(*V1); local
24 IntrusiveRefCntPtr<VirtualRefCounted> R2 = V2;
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/Hexagon/
H A DHexagonSubtarget.h36 V1, V2, V3, V4, V5 enumerator in enum:llvm::HexagonSubtarget::HexagonArchEnum
55 bool hasV2TOps () const { return HexagonArchVersion >= V2; }
56 bool hasV2TOpsOnly () const { return HexagonArchVersion == V2; }
66 bool isSubtargetV2() const { return HexagonArchVersion == V2;}
H A DHexagonSubtarget.cpp50 HexagonArchVersion = V2;
/macosx-10.9.5/llvmCore-3425.0.33/lib/VMCore/
H A DUse.cpp25 Value *V2(RHS.Val);
26 if (V1 != V2) {
31 if (V2) {
33 Val = V2;
34 V2->addUse(*this);
H A DConstantFold.h36 Constant *V1, Constant *V2);
40 Constant *ConstantFoldShuffleVectorInstruction(Constant *V1, Constant *V2,
47 Constant *V2);
H A DConstantFold.cpp693 Constant *V1, Constant *V2) {
695 if (Cond->isNullValue()) return V2;
706 Constant *V = Cond->isNullValue() ? V2 : V1;
718 return V2;
720 if (isa<UndefValue>(V1)) return V2;
721 if (isa<UndefValue>(V2)) return V1;
722 if (V1 == V2) return V1;
727 return ConstantExpr::getSelect(Cond, TrueVal->getOperand(1), V2);
729 if (ConstantExpr *FalseVal = dyn_cast<ConstantExpr>(V2)) {
782 Constant *V2,
692 ConstantFoldSelectInstruction(Constant *Cond, Constant *V1, Constant *V2) argument
781 ConstantFoldShuffleVectorInstruction(Constant *V1, Constant *V2, Constant *Mask) argument
1272 evaluateFCmpRelation(Constant *V1, Constant *V2) argument
1340 evaluateICmpRelation(Constant *V1, Constant *V2, bool isSigned) argument
1647 APInt V2 = cast<ConstantInt>(C2)->getValue(); local
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/
H A DInstrTypes.h178 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
180 return Create(Instruction::OPC, V1, V2, Name);\
184 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
186 return Create(Instruction::OPC, V1, V2, Name, BB);\
190 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
192 return Create(Instruction::OPC, V1, V2, Name, I);\
196 static BinaryOperator *CreateNSW(BinaryOps Opc, Value *V1, Value *V2, argument
198 BinaryOperator *BO = Create(Opc, V1, V2, Name);
202 static BinaryOperator *CreateNSW(BinaryOps Opc, Value *V1, Value *V2, argument
204 BinaryOperator *BO = Create(Opc, V1, V2, Nam
208 CreateNSW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, Instruction *I) argument
215 CreateNUW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name = �) argument
221 CreateNUW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, BasicBlock *BB) argument
227 CreateNUW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, Instruction *I) argument
234 CreateExact(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name = �) argument
240 CreateExact(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, BasicBlock *BB) argument
246 CreateExact(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name, Instruction *I) argument
[all...]
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/
H A Dpod_char_traits.h59 template<typename V2>
61 from(const V2& v)
67 template<typename V2>
68 static V2
71 V2 ret = { static_cast<V2>(c.value) };
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A DFileUtilities.cpp86 double V1 = 0.0, V2 = 0.0; local
105 V2 = strtod(F2P, const_cast<char**>(&F2NumEnd));
123 V2 = strtod(&StrTmp[0], const_cast<char**>(&F2NumEnd));
140 if (AbsTolerance < std::abs(V1-V2)) {
143 if (V2)
144 Diff = std::abs(V1/V2 - 1.0);
146 Diff = std::abs(V2/V1 - 1.0);
152 << "Compared: " << V1 << " and " << V2 << '\n'
153 << "abs. diff = " << std::abs(V1-V2) << " rel.diff = " << Diff << '\n'
H A DStringMap.cpp160 StringMapEntryBase *V2 = RemoveKey(StringRef(VStr, V->getKeyLength())); local
161 (void)V2;
162 assert(V == V2 && "Didn't find key?");
/macosx-10.9.5/llvmCore-3425.0.33/utils/TableGen/
H A DDAGISelEmitter.cpp86 MVT::SimpleValueType V1 = LHSSrc->getType(0), V2 = RHSSrc->getType(0); local
87 if (MVT(V1).isVector() != MVT(V2).isVector())
88 return MVT(V2).isVector();
90 if (MVT(V1).isFloatingPoint() != MVT(V2).isFloatingPoint())
91 return MVT(V2).isFloatingPoint();
/macosx-10.9.5/llvmCore-3425.0.33/lib/Analysis/
H A DBasicAliasAnalysis.cpp503 const Value *V2, uint64_t V2Size,
511 const Value *V2, uint64_t V2Size,
517 const Value *V2, uint64_t V2Size,
522 const Value *V2, uint64_t V2Size,
837 /// anything about V2. UnderlyingV1 is GetUnderlyingObject(GEP1, TD),
838 /// UnderlyingV2 is the same for V2.
843 const Value *V2, uint64_t V2Size,
853 if (const GEPOperator *GEP2 = dyn_cast<GEPOperator>(V2)) {
927 V2, V2Size, V2TBAAInfo);
929 // If V2 ma
841 aliasGEP(const GEPOperator *GEP1, uint64_t V1Size, const MDNode *V1TBAAInfo, const Value *V2, uint64_t V2Size, const MDNode *V2TBAAInfo, const Value *UnderlyingV1, const Value *UnderlyingV2) argument
1020 aliasSelect(const SelectInst *SI, uint64_t SISize, const MDNode *SITBAAInfo, const Value *V2, uint64_t V2Size, const MDNode *V2TBAAInfo) argument
1054 aliasPHI(const PHINode *PN, uint64_t PNSize, const MDNode *PNTBAAInfo, const Value *V2, uint64_t V2Size, const MDNode *V2TBAAInfo) argument
1156 aliasCheck(const Value *V1, uint64_t V1Size, const MDNode *V1TBAAInfo, const Value *V2, uint64_t V2Size, const MDNode *V2TBAAInfo) argument
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Analysis/
H A DAliasAnalysis.h176 const Value *V2, uint64_t V2Size) {
177 return alias(Location(V1, V1Size), Location(V2, V2Size));
181 AliasResult alias(const Value *V1, const Value *V2) { argument
182 return alias(V1, UnknownSize, V2, UnknownSize);
193 const Value *V2, uint64_t V2Size) {
194 return isNoAlias(Location(V1, V1Size), Location(V2, V2Size));
198 bool isNoAlias(const Value *V1, const Value *V2) { argument
199 return isNoAlias(Location(V1), Location(V2));
208 bool isMustAlias(const Value *V1, const Value *V2) { argument
209 return alias(V1, 1, V2,
175 alias(const Value *V1, uint64_t V1Size, const Value *V2, uint64_t V2Size) argument
192 isNoAlias(const Value *V1, uint64_t V1Size, const Value *V2, uint64_t V2Size) argument
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/unittests/Support/
H A DAlignOfTest.cpp61 struct V2 { int x; virtual ~V2(); }; struct in namespace:__anon10755
63 struct V4 : virtual V2 { int y; virtual ~V4(); };
66 struct V7 : virtual V2, virtual V6 { virtual ~V7(); };
107 [AlignOf<V2>::Alignment > 0]
147 EXPECT_LE(alignOf<V1>(), alignOf<V2>());
225 EXPECT_EQ(alignOf<V2>(), alignOf<AlignedCharArrayUnion<V2> >());
290 EXPECT_EQ(sizeof(V2), sizeof(AlignedCharArrayUnion<V2>));
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/unittests/Transforms/Utils/
H A DCloning.cpp30 Value *V2 = V1->clone(); local
32 Clones.insert(V2);
33 return cast<T>(V2);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/NVPTX/
H A DNVPTX.h121 V2 = 2, enumerator in enum:llvm::NVPTX::PTXLdStInstCode::VecType
H A DNVPTXUtilities.cpp369 const Value *V2 = V->stripPointerCasts(); local
370 if (V2 != V && processed.find(V2) != processed.end())
372 processed.insert(V2);
374 V = V2;
386 if (V != V2 && processed.find(V) != processed.end())
/macosx-10.9.5/llvmCore-3425.0.33/unittests/VMCore/
H A DMetadataTest.cpp136 Value *const V2 = C2; local
138 MDNode *n2 = MDNode::get(Context, V2);
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/ADT/
H A DAPSInt.h298 inline bool operator==(int64_t V1, const APSInt& V2) { argument
299 return V2 == V1;
301 inline bool operator!=(int64_t V1, const APSInt& V2) { argument
302 return V2 != V1;
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/IPO/
H A DMergeFunctions.cpp172 bool enumerate(const Value *V1, const Value *V2);
377 bool FunctionComparator::enumerate(const Value *V1, const Value *V2) { argument
381 if (V1 == F1 && V2 == F2)
383 if (V1 == F2 && V2 == F1)
387 if (V1 == V2) return true;
388 const Constant *C2 = dyn_cast<Constant>(V2);
400 if (isa<InlineAsm>(V1) || isa<InlineAsm>(V2))
401 return V1 == V2;
403 // Check that V1 maps to V2. If we find a value that V1 maps to then we simply
404 // check whether it's equal to V2
[all...]
/macosx-10.9.5/Heimdal-323.92.1/tests/kdc/
H A Dcheck-digest.in234 echo "Trying MS-CHAP-V2"
238 --type=MS-CHAP-V2 \
245 echo "MS-CHAP-V2 client request"
247 --type=MS-CHAP-V2 \
261 --type=MS-CHAP-V2 \
284 echo "MS-CHAP-V2 response ok"
286 echo "MS-CHAP-V2 response failed"
/macosx-10.9.5/emacs-92/emacs/src/s/
H A Ddgux.h341 #define C_DEBUG_SWITCH -g -V2 -mversion-03.00 -mstandard
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/
H A DLiveInterval.cpp647 /// LiveRanges with the V1 value number with the V2 value number. This can
648 /// cause merging of V1/V2 values numbers and compaction of the value space.
649 VNInfo* LiveInterval::MergeValueNumberInto(VNInfo *V1, VNInfo *V2) {
650 assert(V1 != V2 && "Identical value#'s are always equivalent!");
657 // Make sure V2 is smaller than V1.
658 if (V1->id < V2->id) {
659 V1->copyFrom(*V2);
660 std::swap(V1, V2);
663 // Merge V1 live ranges into V2.
668 // Okay, we found a V1 live range. If it had a previous, touching, V2 liv
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/PowerPC/MCTargetDesc/
H A DPPCBaseInfo.h33 case R2 : case X2 : case F2 : case V2 : case CR2: case CR0EQ: return 2;

Completed in 472 milliseconds

1234