| /trueos/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ |
| HD | BasicValueFactory.cpp | 147 const llvm::APSInt& V1, const llvm::APSInt& V2) { in evalAPSInt() argument 154 return &getValue( V1 * V2 ); in evalAPSInt() 157 return &getValue( V1 / V2 ); in evalAPSInt() 160 return &getValue( V1 % V2 ); in evalAPSInt() 163 return &getValue( V1 + V2 ); in evalAPSInt() 166 return &getValue( V1 - V2 ); in evalAPSInt() 180 if (Amt > V1.getBitWidth()) in evalAPSInt() 183 return &getValue( V1.operator<<( (unsigned) Amt )); in evalAPSInt() 198 if (Amt > V1.getBitWidth()) in evalAPSInt() 201 return &getValue( V1.operator>>( (unsigned) Amt )); in evalAPSInt() [all …]
|
| /trueos/contrib/gcc/config/arm/ |
| HD | 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" 128 "cfmul64%?\\t%V0, %V1, %V2" [all …]
|
| /trueos/contrib/llvm/include/llvm/IR/ |
| HD | InstrTypes.h | 176 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \ 178 return Create(Instruction::OPC, V1, V2, Name);\ 182 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \ 184 return Create(Instruction::OPC, V1, V2, Name, BB);\ 188 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \ 190 return Create(Instruction::OPC, V1, V2, Name, I);\ 194 static BinaryOperator *CreateNSW(BinaryOps Opc, Value *V1, Value *V2, 196 BinaryOperator *BO = Create(Opc, V1, V2, Name); 200 static BinaryOperator *CreateNSW(BinaryOps Opc, Value *V1, Value *V2, 202 BinaryOperator *BO = Create(Opc, V1, V2, Name, BB); [all …]
|
| /trueos/contrib/llvm/lib/Support/ |
| HD | FileUtilities.cpp | 86 double V1 = 0.0, V2 = 0.0; in CompareNumbers() local 104 V1 = strtod(F1P, const_cast<char**>(&F1NumEnd)); in CompareNumbers() 113 V1 = strtod(&StrTmp[0], const_cast<char**>(&F1NumEnd)); in CompareNumbers() 140 if (AbsTolerance < std::abs(V1-V2)) { in CompareNumbers() 144 Diff = std::abs(V1/V2 - 1.0); in CompareNumbers() 145 else if (V1) in CompareNumbers() 146 Diff = std::abs(V2/V1 - 1.0); in CompareNumbers() 152 << "Compared: " << V1 << " and " << V2 << '\n' in CompareNumbers() 153 << "abs. diff = " << std::abs(V1-V2) << " rel.diff = " << Diff << '\n' in CompareNumbers()
|
| /trueos/contrib/llvm/tools/clang/lib/CodeGen/ |
| HD | CGValue.h | 41 llvm::PointerIntPair<llvm::Value *, 2, Flavor> V1; variable 46 bool isScalar() const { return V1.getInt() == Scalar; } in isScalar() 47 bool isComplex() const { return V1.getInt() == Complex; } in isComplex() 48 bool isAggregate() const { return V1.getInt() == Aggregate; } in isAggregate() 55 return V1.getPointer(); in getScalarVal() 61 return std::make_pair(V1.getPointer(), V2.getPointer()); in getComplexVal() 67 return V1.getPointer(); in getAggregateAddr() 72 ER.V1.setPointer(V); in get() 73 ER.V1.setInt(Scalar); in get() 77 static RValue getComplex(llvm::Value *V1, llvm::Value *V2) { in getComplex() argument [all …]
|
| /trueos/contrib/llvm/lib/IR/ |
| HD | Use.cpp | 24 Value *V1(Val); in swap() local 26 if (V1 != V2) { in swap() 27 if (V1) { in swap() 39 if (V1) { in swap() 40 RHS.Val = V1; in swap() 41 V1->addUse(RHS); in swap()
|
| HD | ConstantFold.cpp | 698 Constant *V1, Constant *V2) { in ConstantFoldSelectInstruction() argument 701 if (Cond->isAllOnesValue()) return V1; in ConstantFoldSelectInstruction() 707 for (unsigned i = 0, e = V1->getType()->getVectorNumElements(); i != e;++i){ in ConstantFoldSelectInstruction() 711 Constant *V = Cond->isNullValue() ? V2 : V1; in ConstantFoldSelectInstruction() 717 if (Result.size() == V1->getType()->getVectorNumElements()) in ConstantFoldSelectInstruction() 722 if (isa<UndefValue>(V1)) return V1; in ConstantFoldSelectInstruction() 725 if (isa<UndefValue>(V1)) return V2; in ConstantFoldSelectInstruction() 726 if (isa<UndefValue>(V2)) return V1; in ConstantFoldSelectInstruction() 727 if (V1 == V2) return V1; in ConstantFoldSelectInstruction() 729 if (ConstantExpr *TrueVal = dyn_cast<ConstantExpr>(V1)) { in ConstantFoldSelectInstruction() [all …]
|
| HD | ConstantFold.h | 36 Constant *V1, Constant *V2); 40 Constant *ConstantFoldShuffleVectorInstruction(Constant *V1, Constant *V2, 46 Constant *ConstantFoldBinaryInstruction(unsigned Opcode, Constant *V1,
|
| /trueos/contrib/llvm/include/llvm/Analysis/ |
| HD | AliasAnalysis.h | 175 AliasResult alias(const Value *V1, uint64_t V1Size, in alias() argument 177 return alias(Location(V1, V1Size), Location(V2, V2Size)); in alias() 181 AliasResult alias(const Value *V1, const Value *V2) { in alias() argument 182 return alias(V1, UnknownSize, V2, UnknownSize); in alias() 192 bool isNoAlias(const Value *V1, uint64_t V1Size, in isNoAlias() argument 194 return isNoAlias(Location(V1, V1Size), Location(V2, V2Size)); in isNoAlias() 198 bool isNoAlias(const Value *V1, const Value *V2) { in isNoAlias() argument 199 return isNoAlias(Location(V1), Location(V2)); in isNoAlias() 208 bool isMustAlias(const Value *V1, const Value *V2) { in isMustAlias() argument 209 return alias(V1, 1, V2, 1) == MustAlias; in isMustAlias()
|
| /trueos/sys/gnu/dts/arm/ |
| HD | tegra30-colibri.dtsi | 208 /* SW1: +V1.35_VDDIO_DDR */ 218 /* SW CTRL: +V1.0_VDD_CPU */ 226 /* SWIO: +V1.8 */ 238 * +V3.3_AUDIO_AVDD_S, +V3.3 and +V1.8_VDD_LAN 250 /* +V1.2_VDD_RTC */ 270 * +V1.05_AVDD_PLLE: avdd_plle should be 1.05V 280 /* +V1.2_AVDD_PLL */ 288 /* +V1.0_VDD_DDR_HS */ 307 /* SW: +V1.2_VDD_CORE */
|
| HD | tegra30-apalis.dtsi | 5 * Compatible for Revisions 1GB: V1.0A; 2GB: V1.0B, V1.0C 430 /* SW1: +V1.35_VDDIO_DDR */ 438 /* SW2: +V1.05 */ 446 /* SW CTRL: +V1.0_VDD_CPU */ 454 /* SWIO: +V1.8 */ 466 * +V3.3_AUDIO_AVDD_S, +V3.3 and +V1.8_VDD_LAN 476 /* +V1.2_CSI */ 484 /* +V1.2_VDD_RTC */ 504 * +V1.05_AVDD_PLLE: avdd_plle should be 1.05V 514 /* +V1.2_AVDD_PLL */ [all …]
|
| HD | bcm4708-netgear-r6250.dts | 3 * DTS for Netgear R6250 V1 16 model = "Netgear R6250 V1 (BCM4708)";
|
| /trueos/contrib/llvm/lib/Analysis/ |
| HD | BasicAliasAnalysis.cpp | 533 bool isValueEqualInPotentialCycles(const Value *V1, const Value *V2); 544 AliasResult aliasGEP(const GEPOperator *V1, uint64_t V1Size, 563 AliasResult aliasCheck(const Value *V1, uint64_t V1Size, 1192 BasicAliasAnalysis::aliasCheck(const Value *V1, uint64_t V1Size, in aliasCheck() argument 1202 V1 = V1->stripPointerCasts(); in aliasCheck() 1211 if (isValueEqualInPotentialCycles(V1, V2)) in aliasCheck() 1214 if (!V1->getType()->isPointerTy() || !V2->getType()->isPointerTy()) in aliasCheck() 1218 const Value *O1 = GetUnderlyingObject(V1, TD); in aliasCheck() 1275 LocPair Locs(Location(V1, V1Size, V1TBAAInfo), in aliasCheck() 1277 if (V1 > V2) in aliasCheck() [all …]
|
| HD | Lint.cpp | 141 const Value *V1 = 0, const Value *V2 = 0, in CheckFailed() argument 144 WriteValue(V1); in CheckFailed() 164 #define Assert1(C, M, V1) \ argument 165 do { if (!(C)) { CheckFailed(M, V1); return; } } while (0) 166 #define Assert2(C, M, V1, V2) \ argument 167 do { if (!(C)) { CheckFailed(M, V1, V2); return; } } while (0) 168 #define Assert3(C, M, V1, V2, V3) \ argument 169 do { if (!(C)) { CheckFailed(M, V1, V2, V3); return; } } while (0) 170 #define Assert4(C, M, V1, V2, V3, V4) \ argument 171 do { if (!(C)) { CheckFailed(M, V1, V2, V3, V4); return; } } while (0)
|
| /trueos/contrib/llvm/lib/Target/Mips/ |
| HD | MipsCallingConv.td | 23 // i32 are returned in registers V0, V1, A0, A1 24 CCIfType<[i32], CCAssignToReg<[V0, V1, A0, A1]>>, 88 // i32 are returned in registers V0, V1 89 CCIfType<[i32], CCAssignToReg<[V0, V1]>>, 139 // i32 are returned in registers V0, V1 140 CCIfType<[i32], CCAssignToReg<[V0, V1]>>, 196 T7, T8, V1]>>, 214 CCIfType<[i32], CCAssignToReg<[V0, V1, A0, A1]>> 249 CalleeSavedRegs<(add V0, V1, (sequence "A%u", 3, 0), S0, S1)>;
|
| HD | Mips16ISelDAGToDAG.cpp | 75 unsigned V0, V1, V2, GlobalBaseReg = MipsFI->getGlobalBaseReg(); in initGlobalBaseReg() local 80 V1 = RegInfo.createVirtualRegister(RC); in initGlobalBaseReg() 84 addReg(V1, RegState::Define). in initGlobalBaseReg() 90 .addReg(V1).addReg(V2); in initGlobalBaseReg()
|
| /trueos/contrib/llvm/tools/clang/lib/Headers/ |
| HD | avxintrin.h | 292 #define _mm256_permute2f128_pd(V1, V2, M) __extension__ ({ \ argument 293 __m256d __V1 = (V1); \ 297 #define _mm256_permute2f128_ps(V1, V2, M) __extension__ ({ \ argument 298 __m256 __V1 = (V1); \ 302 #define _mm256_permute2f128_si256(V1, V2, M) __extension__ ({ \ argument 303 __m256i __V1 = (V1); \ 308 #define _mm256_blend_pd(V1, V2, M) __extension__ ({ \ argument 309 __m256d __V1 = (V1); \ 313 #define _mm256_blend_ps(V1, V2, M) __extension__ ({ \ argument 314 __m256 __V1 = (V1); \ [all …]
|
| HD | shaintrin.h | 35 #define _mm_sha1rnds4_epu32(V1, V2, M) __extension__ ({ \ argument 36 __builtin_ia32_sha1rnds4((V1), (V2), (M)); })
|
| HD | smmintrin.h | 79 #define _mm_blend_pd(V1, V2, M) __extension__ ({ \ argument 80 __m128d __V1 = (V1); \ 84 #define _mm_blend_ps(V1, V2, M) __extension__ ({ \ argument 85 __m128 __V1 = (V1); \ 110 #define _mm_blend_epi16(V1, V2, M) __extension__ ({ \ argument 111 __m128i __V1 = (V1); \
|
| /trueos/contrib/libreadline/examples/rlfe/ |
| HD | rlfe.c | 138 #define DPRINT1(FMT, V1) (fprintf(logfile, FMT, V1), fflush(logfile)) argument 139 #define DPRINT2(FMT, V1, V2) (fprintf(logfile, FMT, V1, V2), fflush(logfile)) argument 142 #define DPRINT1(FMT, V1) ((void) 0) /* Do nothing */ argument 143 #define DPRINT2(FMT, V1, V2) ((void) 0) /* Do nothing */ argument
|
| /trueos/contrib/llvm/lib/Transforms/InstCombine/ |
| HD | InstCombineShifts.cpp | 406 Value *V1, *V2; in FoldShiftByConstant() local 417 match(Op0BO->getOperand(1), m_Shr(m_Value(V1), in FoldShiftByConstant() 422 Value *X = Builder->CreateBinOp(Op0BO->getOpcode(), YS, V1, in FoldShiftByConstant() 433 m_And(m_OneUse(m_Shr(m_Value(V1), m_Specific(Op1))), in FoldShiftByConstant() 439 Value *XM = Builder->CreateAnd(V1, ConstantExpr::getShl(CC, Op1), in FoldShiftByConstant() 440 V1->getName()+".mask"); in FoldShiftByConstant() 449 match(Op0BO->getOperand(0), m_Shr(m_Value(V1), in FoldShiftByConstant() 454 Value *X = Builder->CreateBinOp(Op0BO->getOpcode(), V1, YS, in FoldShiftByConstant() 464 m_And(m_OneUse(m_Shr(m_Value(V1), m_Value(V2))), in FoldShiftByConstant() 469 Value *XM = Builder->CreateAnd(V1, ConstantExpr::getShl(CC, Op1), in FoldShiftByConstant() [all …]
|
| HD | InstCombineAndOrXor.cpp | 1901 Value *V1 = 0; in FoldOrWithConstants() local 1903 if (!match(Op, m_And(m_Value(V1), m_ConstantInt(CI2)))) return 0; in FoldOrWithConstants() 1908 if (V1 == A || V1 == B) { in FoldOrWithConstants() 1909 Value *NewOp = Builder->CreateAnd((V1 == A) ? B : A, CI1); in FoldOrWithConstants() 1910 return BinaryOperator::CreateOr(NewOp, V1); in FoldOrWithConstants() 1999 Value *V1 = 0, *V2 = 0; in visitOr() local 2008 match(A, m_Add(m_Value(V1), m_Value(V2)))) { in visitOr() 2010 if (V1 == B && MaskedValueIsZero(V2, C2->getValue())) in visitOr() 2012 if (V2 == B && MaskedValueIsZero(V1, C2->getValue())) in visitOr() 2017 match(B, m_Add(m_Value(V1), m_Value(V2)))) { in visitOr() [all …]
|
| /trueos/contrib/file/magic/Magdir/ |
| HD | pwsafe | 11 # V1 http://passwordsafe.svn.sourceforge.net/viewvc/passwordsafe/trunk/pwsafe/pwsafe/docs/notes.txt 12 # V2 and V1 have no easy identifier that I can find
|
| /trueos/contrib/llvm/lib/Transforms/IPO/ |
| HD | MergeFunctions.cpp | 181 bool enumerate(const Value *V1, const Value *V2); 391 bool FunctionComparator::enumerate(const Value *V1, const Value *V2) { in enumerate() argument 395 if (V1 == F1 && V2 == F2) in enumerate() 397 if (V1 == F2 && V2 == F1) in enumerate() 400 if (const Constant *C1 = dyn_cast<Constant>(V1)) { in enumerate() 401 if (V1 == V2) return true; in enumerate() 414 if (isa<InlineAsm>(V1) || isa<InlineAsm>(V2)) in enumerate() 415 return V1 == V2; in enumerate() 422 const Value *&map_elem = id_map[V1]; in enumerate()
|
| /trueos/contrib/llvm/include/llvm/ADT/ |
| HD | APSInt.h | 298 inline bool operator==(int64_t V1, const APSInt& V2) { 299 return V2 == V1; 301 inline bool operator!=(int64_t V1, const APSInt& V2) { 302 return V2 != V1;
|