Home
last modified time | relevance | path

Searched refs:V (Results 1 – 25 of 2410) sorted by relevance

12345678910>>...97

/openbsd/src/gnu/usr.bin/binutils-2.17/include/opcode/
Dconvex.h41 #define V 1 macro
92 {0,0,rrr,V,S,S}, /* mov */
93 {0,0,rrr,S,S,V}, /* mov */
94 {1,1,rrr,V,V,V}, /* merg.t */
95 {2,1,rrr,V,V,V}, /* mask.t */
96 {1,2,rrr,V,S,V}, /* merg.f */
97 {2,2,rrr,V,S,V}, /* mask.f */
98 {1,1,rrr,V,S,V}, /* merg.t */
99 {2,1,rrr,V,S,V}, /* mask.t */
100 {3,3,rrr,V,V,V}, /* mul.s */
[all …]
/openbsd/src/gnu/usr.bin/binutils/include/opcode/
Dconvex.h41 #define V 1 macro
92 {0,0,rrr,V,S,S}, /* mov */
93 {0,0,rrr,S,S,V}, /* mov */
94 {1,1,rrr,V,V,V}, /* merg.t */
95 {2,1,rrr,V,V,V}, /* mask.t */
96 {1,2,rrr,V,S,V}, /* merg.f */
97 {2,2,rrr,V,S,V}, /* mask.f */
98 {1,1,rrr,V,S,V}, /* merg.t */
99 {2,1,rrr,V,S,V}, /* mask.t */
100 {3,3,rrr,V,V,V}, /* mul.s */
[all …]
/openbsd/src/gnu/usr.bin/binutils/gdb/config/djgpp/
Dfnchange.lst1 @V@/COPYING.LIBGLOSS @V@/COPYING.GLOSS
2 @V@/bfd/ChangeLog-9193 @V@/bfd/ChangeLog.9193
3 @V@/bfd/ChangeLog-9495 @V@/bfd/ChangeLog.9495
4 @V@/bfd/ChangeLog-9697 @V@/bfd/ChangeLog.9697
5 @V@/bfd/ChangeLog-9899 @V@/bfd/ChangeLog.9899
6 @V@/bfd/ChangeLog-0001 @V@/bfd/ChangeLog.0001
7 @V@/bfd/ChangeLog-0203 @V@/bfd/ChangeLog.0203
8 @V@/bfd/doc/ChangeLog-9103 @V@/bfd/ChangeLog.9103
9 @V@/bfd/coff-tic30.c @V@/bfd/cofftic30.c
10 @V@/bfd/coff-tic4x.c @V@/bfd/cofftic40.c
[all …]
/openbsd/src/gnu/llvm/clang/lib/AST/Interp/
DIntegral.h62 ReprT V;
69 template <typename T> explicit Integral(T V) : V(V) {}
73 Integral() : V(0) {}
77 explicit Integral(Integral<SrcBits, SrcSign> V) : V(V.V) {}
80 explicit Integral(const APSInt &V)
81 : V(V.isSigned() ? V.getSExtValue() : V.getZExtValue()) {}
83 bool operator<(Integral RHS) const { return V < RHS.V; }
84 bool operator>(Integral RHS) const { return V > RHS.V; }
85 bool operator<=(Integral RHS) const { return V <= RHS.V; }
86 bool operator>=(Integral RHS) const { return V >= RHS.V; }
[all …]
DBoolean.h28 bool V;
31 explicit Boolean(bool V) : V(V) {} in Boolean() argument
35 Boolean() : V(false) {} in Boolean()
37 bool operator<(Boolean RHS) const { return V < RHS.V; }
38 bool operator>(Boolean RHS) const { return V > RHS.V; }
39 bool operator<=(Boolean RHS) const { return V <= RHS.V; }
40 bool operator>=(Boolean RHS) const { return V >= RHS.V; }
41 bool operator==(Boolean RHS) const { return V == RHS.V; }
42 bool operator!=(Boolean RHS) const { return V != RHS.V; }
44 bool operator>(unsigned RHS) const { return static_cast<unsigned>(V) > RHS; }
[all …]
/openbsd/src/gnu/llvm/llvm/lib/Target/ARM/MCTargetDesc/
DARMAddressingModes.h180 inline bool isSOImmTwoPartVal(unsigned V) { in isSOImmTwoPartVal() argument
182 V = rotr32(~255U, getSOImmValRotate(V)) & V; in isSOImmTwoPartVal()
183 if (V == 0) in isSOImmTwoPartVal()
187 V = rotr32(~255U, getSOImmValRotate(V)) & V; in isSOImmTwoPartVal()
188 return V == 0; in isSOImmTwoPartVal()
193 inline unsigned getSOImmTwoPartFirst(unsigned V) { in getSOImmTwoPartFirst() argument
194 return rotr32(255U, getSOImmValRotate(V)) & V; in getSOImmTwoPartFirst()
199 inline unsigned getSOImmTwoPartSecond(unsigned V) { in getSOImmTwoPartSecond() argument
201 V = rotr32(~255U, getSOImmValRotate(V)) & V; in getSOImmTwoPartSecond()
204 assert(V == (rotr32(255U, getSOImmValRotate(V)) & V)); in getSOImmTwoPartSecond()
[all …]
/openbsd/src/gnu/usr.bin/gcc/gcc/cp/
Dlex.h38 #define RIDBIT_SETP(N, V) (((unsigned long)1 << (int) ((N)%32)) \
39 & (V).idata[(N)/32])
41 #define RIDBIT_SET(N, V) do { \
42 (V).idata[(N)/32] \
45 #define RIDBIT_RESET(N, V) do { \
46 (V).idata[(N)/32] \
49 #define RIDBIT_RESET_ALL(V) do { \
50 (V).idata[0] = 0; \
51 (V).idata[1] = 0; \
53 #define RIDBIT_ANY_SET(V) ((V).idata[0] || (V).idata[1])
[all …]
/openbsd/src/gnu/llvm/llvm/include/llvm/DebugInfo/DWARF/
DDWARFFormValue.h44 ValueType(int64_t V) : sval(V) {} in ValueType()
45 ValueType(uint64_t V) : uval(V) {} in ValueType()
46 ValueType(const char *V) : cstr(V) {} in ValueType()
64 DWARFFormValue(dwarf::Form F, ValueType V) : Form(F), Value(V) {} in DWARFFormValue() argument
69 static DWARFFormValue createFromSValue(dwarf::Form F, int64_t V);
70 static DWARFFormValue createFromUValue(dwarf::Form F, uint64_t V);
71 static DWARFFormValue createFromPValue(dwarf::Form F, const char *V);
176 toString(const std::optional<DWARFFormValue> &V) { in toString() argument
177 if (!V) in toString()
179 Expected<const char*> E = V->getAsCString(); in toString()
[all …]
/openbsd/src/gnu/llvm/llvm/lib/Transforms/Coroutines/
DCoroInstr.h64 static bool classof(const Value *V) { in classof() argument
65 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof()
76 static bool classof(const Value *V) { in classof() argument
77 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof()
107 static bool classof(const Value *V) { in classof() argument
108 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof()
197 static bool classof(const Value *V) { in classof() argument
198 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof()
245 static bool classof(const Value *V) { in classof() argument
246 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof()
[all …]
/openbsd/src/gnu/llvm/llvm/lib/CodeGen/
DTypePromotion.cpp147 bool EqualTypeSize(Value *V);
149 bool LessOrEqualTypeSize(Value *V);
151 bool GreaterThanTypeSize(Value *V);
153 bool LessThanTypeSize(Value *V);
155 bool isSource(Value *V);
157 bool isSink(Value *V);
160 bool shouldPromote(Value *V);
165 bool isSupportedType(Value *V);
168 bool isSupportedValue(Value *V);
171 bool isLegalToPromote(Value *V);
[all …]
DIntrinsicLowering.cpp53 static Value *LowerBSWAP(LLVMContext &Context, Value *V, Instruction *IP) { in LowerBSWAP() argument
54 assert(V->getType()->isIntOrIntVectorTy() && "Can't bswap a non-integer type!"); in LowerBSWAP()
56 unsigned BitSize = V->getType()->getScalarSizeInBits(); in LowerBSWAP()
63 Value *Tmp1 = Builder.CreateShl(V, ConstantInt::get(V->getType(), 8), in LowerBSWAP()
65 Value *Tmp2 = Builder.CreateLShr(V, ConstantInt::get(V->getType(), 8), in LowerBSWAP()
67 V = Builder.CreateOr(Tmp1, Tmp2, "bswap.i16"); in LowerBSWAP()
71 Value *Tmp4 = Builder.CreateShl(V, ConstantInt::get(V->getType(), 24), in LowerBSWAP()
73 Value *Tmp3 = Builder.CreateShl(V, ConstantInt::get(V->getType(), 8), in LowerBSWAP()
75 Value *Tmp2 = Builder.CreateLShr(V, ConstantInt::get(V->getType(), 8), in LowerBSWAP()
77 Value *Tmp1 = Builder.CreateLShr(V,ConstantInt::get(V->getType(), 24), in LowerBSWAP()
[all …]
/openbsd/src/gnu/llvm/llvm/lib/XRay/
DFDRRecords.cpp18 Error BufferExtents::apply(RecordVisitor &V) { return V.visit(*this); } in apply() argument
19 Error WallclockRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply() argument
20 Error NewCPUIDRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply() argument
21 Error TSCWrapRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply() argument
22 Error CustomEventRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply() argument
23 Error CallArgRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply() argument
24 Error PIDRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply() argument
25 Error NewBufferRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply() argument
26 Error EndBufferRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply() argument
27 Error FunctionRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply() argument
[all …]
/openbsd/src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DSVals.h209 inline raw_ostream &operator<<(raw_ostream &os, clang::ento::SVal V) {
210 V.dumpToStream(os);
217 static bool classof(SVal V) { return V.getBaseKind() == UndefinedValKind; } in classof() argument
227 static bool classof(SVal V) { return !V.isUndef(); } in classof() argument
239 static bool classof(SVal V) { return V.getBaseKind() == UnknownValKind; } in classof() argument
250 static bool classof(SVal V) { return !V.isUnknownOrUndef(); } in classof() argument
260 KnownSVal(const DefinedSVal &V) : SVal(V) {} in KnownSVal() argument
261 KnownSVal(const UndefinedVal &V) : SVal(V) {} in KnownSVal() argument
262 static bool classof(SVal V) { return !V.isUnknown(); } in classof() argument
278 static bool classof(SVal V) { return V.getBaseKind() == NonLocKind; } in classof() argument
[all …]
/openbsd/src/gnu/llvm/compiler-rt/lib/scudo/standalone/tests/
Dvector_test.cpp14 scudo::Vector<int> V; in TEST() local
15 EXPECT_EQ(V.size(), 0U); in TEST()
16 V.push_back(42); in TEST()
17 EXPECT_EQ(V.size(), 1U); in TEST()
18 EXPECT_EQ(V[0], 42); in TEST()
19 V.push_back(43); in TEST()
20 EXPECT_EQ(V.size(), 2U); in TEST()
21 EXPECT_EQ(V[0], 42); in TEST()
22 EXPECT_EQ(V[1], 43); in TEST()
26 scudo::Vector<scudo::uptr> V; in TEST() local
[all …]
/openbsd/src/gnu/llvm/llvm/include/llvm/IR/
DIntrinsicInst.h122 static bool classof(const Value *V) { in classof() argument
123 return isa<CallInst>(V) && classof(cast<CallInst>(V)); in classof()
146 static bool classof(const Value *V) { in classof() argument
147 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof()
174 static bool classof(const Value *V) { in classof() argument
175 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof()
285 any_of(location_ops(), [](Value *V) { return isa<UndefValue>(V); }); in isKillLocation()
337 static bool classof(const Value *V) { in classof() argument
338 return isa<IntrinsicInst>(V) && classof(cast<IntrinsicInst>(V)); in classof()
362 static bool classof(const Value *V) { in classof() argument
[all …]
/openbsd/src/gnu/llvm/llvm/include/llvm/ADT/
DPriorityWorklist.h68 return V.empty(); in empty()
85 return V.back(); in back()
92 auto InsertResult = M.insert({X, V.size()}); in insert()
95 V.push_back(X); in insert()
100 assert(V[Index] == X && "Value not actually at index in map!"); in insert()
101 if (Index != (ptrdiff_t)(V.size() - 1)) { in insert()
103 V[Index] = T(); in insert()
104 Index = (ptrdiff_t)V.size(); in insert()
105 V.push_back(X); in insert()
120 ptrdiff_t StartIndex = V.size(); in insert()
[all …]
DScopedHashTable.h41 template <typename K, typename V, typename KInfo = DenseMapInfo<K>,
45 template <typename K, typename V>
50 V Val;
52 ScopedHashTableVal(const K &key, const V &val) : Key(key), Val(val) {} in ScopedHashTableVal()
56 const V &getValue() const { return Val; } in getValue()
57 V &getValue() { return Val; } in getValue()
66 const K &key, const V &val, in Create()
83 template <typename K, typename V, typename KInfo = DenseMapInfo<K>,
87 ScopedHashTable<K, V, KInfo, AllocatorTy> &HT;
94 ScopedHashTableVal<K, V> *LastValInScope;
[all …]
/openbsd/src/gnu/llvm/llvm/include/llvm/Analysis/
DObjCARCAnalysisUtils.h69 inline const Value *GetUnderlyingObjCPtr(const Value *V) { in GetUnderlyingObjCPtr() argument
71 V = getUnderlyingObject(V); in GetUnderlyingObjCPtr()
72 if (!IsForwarding(GetBasicARCInstKind(V))) in GetUnderlyingObjCPtr()
74 V = cast<CallInst>(V)->getArgOperand(0); in GetUnderlyingObjCPtr()
77 return V; in GetUnderlyingObjCPtr()
82 const Value *V, in GetUnderlyingObjCPtrCached() argument
85 auto InCache = Cache.lookup(V); in GetUnderlyingObjCPtrCached()
89 const Value *Computed = GetUnderlyingObjCPtr(V); in GetUnderlyingObjCPtrCached()
90 Cache[V] = in GetUnderlyingObjCPtrCached()
91 std::make_pair(const_cast<Value *>(V), const_cast<Value *>(Computed)); in GetUnderlyingObjCPtrCached()
[all …]
/openbsd/src/gnu/llvm/llvm/lib/Target/PowerPC/
DPPCBoolRetToInt.cpp72 static SmallPtrSet<Value *, 8> findAllDefs(Value *V) { in findAllDefs() argument
75 WorkList.push_back(V); in findAllDefs()
76 Defs.insert(V); in findAllDefs()
91 Value *translate(Value *V) { in translate() argument
92 assert(V->getType() == Type::getInt1Ty(V->getContext()) && in translate()
95 Type *IntTy = ST->isPPC64() ? Type::getInt64Ty(V->getContext()) in translate()
96 : Type::getInt32Ty(V->getContext()); in translate()
98 if (auto *C = dyn_cast<Constant>(V)) in translate()
100 if (auto *P = dyn_cast<PHINode>(V)) { in translate()
111 auto *A = dyn_cast<Argument>(V); in translate()
[all …]
/openbsd/src/gnu/llvm/llvm/docs/
DSPIRVUsage.rst2 User Guide for SPIR-V Target
14 The SPIR-V target provides code generation for the SPIR-V binary format described
15 in `the official SPIR-V specification <https://www.khronos.org/registry/SPIR-V/>`_.
22 For cross-compilation into SPIR-V use option
28 .. table:: SPIR-V Architectures
33 ``spirv32`` SPIR-V with 32-bit pointer width.
34 ``spirv64`` SPIR-V with 64-bit pointer width.
37 .. table:: SPIR-V Subarchitectures
42 *<empty>* SPIR-V version deduced by tools based on the compiled input.
43 ``v1.0`` SPIR-V version 1.0.
[all …]
/openbsd/src/lib/libcrypto/sha/asm/
Dsha1-armv4-large.pl72 @V=($a,$b,$c,$d,$e);
175 &BODY_00_15(@V); unshift(@V,pop(@V));
182 &BODY_00_15(@V); unshift(@V,pop(@V));
183 &BODY_16_19(@V); unshift(@V,pop(@V));
184 &BODY_16_19(@V); unshift(@V,pop(@V));
185 &BODY_16_19(@V); unshift(@V,pop(@V));
186 &BODY_16_19(@V); unshift(@V,pop(@V));
194 &BODY_20_39(@V); unshift(@V,pop(@V));
206 &BODY_40_59(@V); unshift(@V,pop(@V));
/openbsd/src/gnu/llvm/llvm/include/llvm/FuzzMutate/
DOpDescriptor.h65 Constant *V = UndefValue::get(T); in SourcePred() local
66 if (Pred(Cur, V)) in SourcePred()
95 auto Pred = [Only](ArrayRef<Value *>, const Value *V) { in onlyType()
96 return V->getType() == Only; in onlyType()
105 auto Pred = [](ArrayRef<Value *>, const Value *V) { in anyType()
106 return !V->getType()->isVoidTy(); in anyType()
113 auto Pred = [](ArrayRef<Value *>, const Value *V) { in anyIntType()
114 return V->getType()->isIntegerTy(); in anyIntType()
121 auto Pred = [](ArrayRef<Value *>, const Value *V) { in anyFloatType()
122 return V->getType()->isFloatingPointTy(); in anyFloatType()
[all …]
/openbsd/src/gnu/llvm/llvm/include/llvm/CodeGen/
DValueTypes.h36 MVT V = MVT::INVALID_SIMPLE_VALUE_TYPE;
41 constexpr EVT(MVT::SimpleValueType SVT) : V(SVT) {} in EVT()
42 constexpr EVT(MVT S) : V(S) {} in EVT()
48 if (V.SimpleTy != VT.V.SimpleTy)
50 if (V.SimpleTy == MVT::INVALID_SIMPLE_VALUE_TYPE)
75 MVT M = MVT::getVectorVT(VT.V, NumElements, IsScalable);
84 MVT M = MVT::getVectorVT(VT.V, EC); in getVectorVT()
130 return V.SimpleTy != MVT::INVALID_SIMPLE_VALUE_TYPE; in isSimple()
140 return isSimple() ? V.isFloatingPoint() : isExtendedFloatingPoint(); in isFloatingPoint()
145 return isSimple() ? V.isInteger() : isExtendedInteger(); in isInteger()
[all …]
/openbsd/src/gnu/llvm/llvm/lib/IR/
DValueSymbolTable.cpp43 ValueName *ValueSymbolTable::makeUniqueName(Value *V, in makeUniqueName() argument
50 if (auto *GV = dyn_cast<GlobalValue>(V)) { in makeUniqueName()
64 auto IterBool = vmap.insert(std::make_pair(UniqueName.str(), V)); in makeUniqueName()
72 void ValueSymbolTable::reinsertValue(Value *V) { in reinsertValue() argument
73 assert(V->hasName() && "Can't insert nameless Value into symbol table"); in reinsertValue()
76 if (vmap.insert(V->getValueName())) { in reinsertValue()
83 SmallString<256> UniqueName(V->getName().begin(), V->getName().end()); in reinsertValue()
87 V->getValueName()->Destroy(Allocator); in reinsertValue()
89 ValueName *VN = makeUniqueName(V, UniqueName); in reinsertValue()
90 V->setValueName(VN); in reinsertValue()
[all …]
DValue.cpp258 static bool getSymTab(Value *V, ValueSymbolTable *&ST) { in getSymTab() argument
260 if (Instruction *I = dyn_cast<Instruction>(V)) { in getSymTab()
264 } else if (BasicBlock *BB = dyn_cast<BasicBlock>(V)) { in getSymTab()
267 } else if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) { in getSymTab()
270 } else if (Argument *A = dyn_cast<Argument>(V)) { in getSymTab()
274 assert(isa<Constant>(V) && "Unknown value type!"); in getSymTab()
381 void Value::takeName(Value *V) { in takeName() argument
382 assert(V != this && "Illegal call to this->takeName(this)!"); in takeName()
390 if (V->hasName()) V->setName(""); in takeName()
403 if (!V->hasName()) return; in takeName()
[all …]

12345678910>>...97