Home
last modified time | relevance | path

Searched defs:V (Results 1 – 25 of 986) sorted by relevance

12345678910>>...40

/openbsd-src/gnu/llvm/llvm/lib/XRay/
H A DFDRRecords.cpp18 Error BufferExtents::apply(RecordVisitor &V) { return V.visit(*this); } in apply()
19 Error WallclockRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply()
20 Error NewCPUIDRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply()
21 Error TSCWrapRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply()
22 Error CustomEventRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply()
23 Error CallArgRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply()
24 Error PIDRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply()
25 Error NewBufferRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply()
26 Error EndBufferRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply()
27 Error FunctionRecord::apply(RecordVisitor &V) { return V.visit(*this); } in apply()
[all …]
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSVals.h217 static bool classof(SVal V) { return V.getBaseKind() == UndefinedValKind; } in classof()
227 static bool classof(SVal V) { return !V.isUndef(); } in classof()
239 static bool classof(SVal V) { return V.getBaseKind() == UnknownValKind; } in classof()
250 static bool classof(SVal V) { return !V.isUnknownOrUndef(); } in classof()
260 KnownSVal(const DefinedSVal &V) : SVal(V) {} in KnownSVal()
261 KnownSVal(const UndefinedVal &V) : SVal(V) {} in KnownSVal()
262 static bool classof(SVal V) { return !V.isUnknown(); } in classof()
278 static bool classof(SVal V) { return V.getBaseKind() == NonLocKind; } in classof()
294 static bool classof(SVal V) { return V.getBaseKind() == LocKind; } in classof()
321 static bool classof(SVal V) { in classof()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DIntrinsicInst.h122 static bool classof(const Value *V) { in classof()
146 static bool classof(const Value *V) { in classof()
174 static bool classof(const Value *V) { in classof()
337 static bool classof(const Value *V) { in classof()
362 static bool classof(const Value *V) { in classof()
382 static bool classof(const Value *V) { in classof()
405 static bool classof(const Value *V) { in classof()
456 static bool classof(const Value *V) { in classof()
476 static bool classof(const Value *V) { in classof()
534 static bool classof(const Value *V) { in classof()
[all …]
H A DIRBuilder.h447 ConstantInt *getInt1(bool V) { in getInt1()
1010 ReturnInst *CreateRet(Value *V) { in CreateRet()
1022 Value *V = PoisonValue::get(getCurrentFunctionReturnType()); in CreateAggregateRet() local
1244 if (Value *V = variable
1261 if (Value *V = variable
1278 if (Value *V = variable
1295 if (Value *V = Folder.FoldExactBinOp(Instruction::UDiv, LHS, RHS, isExact)) variable
1308 if (Value *V = Folder.FoldExactBinOp(Instruction::SDiv, LHS, RHS, isExact)) variable
1320 if (Value *V = Folder.FoldBinOp(Instruction::URem, LHS, RHS)) variable
1326 if (Value *V = Folder.FoldBinOp(Instruction::SRem, LHS, RHS)) variable
[all …]
H A DConstants.h68 static bool classof(const Value *V) { in classof()
167 bool equalsInt(uint64_t V) const { return Val == V; } in equalsInt()
248 static bool classof(const Value *V) { in classof()
320 bool isExactlyValue(double V) const { in isExactlyValue()
328 static bool classof(const Value *V) { in classof()
369 static bool classof(const Value *V) { in classof()
394 static bool classof(const Value *V) { in classof()
/openbsd-src/gnu/gcc/gcc/
H A Dvec.h148 #define VEC_length(T,V) (VEC_OP(T,base,length)(VEC_BASE(V))) argument
156 #define VEC_empty(T,V) (VEC_length (T,V) == 0) argument
166 #define VEC_last(T,V) (VEC_OP(T,base,last)(VEC_BASE(V) VEC_CHECK_INFO)) argument
175 #define VEC_index(T,V,I) (VEC_OP(T,base,index)(VEC_BASE(V),I VEC_CHECK_INFO)) argument
189 #define VEC_iterate(T,V,I,P) (VEC_OP(T,base,iterate)(VEC_BASE(V),I,&(P))) argument
204 #define VEC_free(T,A,V) (VEC_OP(T,A,free)(&V)) argument
223 #define VEC_copy(T,A,V) (VEC_OP(T,A,copy)(VEC_BASE(V) MEM_STAT_INFO)) argument
235 #define VEC_space(T,V,R) \ argument
246 #define VEC_reserve(T,A,V,R) \ argument
257 #define VEC_reserve_exact(T,A,V,R) \ argument
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFFormValue.h64 DWARFFormValue(dwarf::Form F, ValueType V) : Form(F), Value(V) {} in DWARFFormValue()
176 toString(const std::optional<DWARFFormValue> &V) { in toString()
212 inline const char *toString(const std::optional<DWARFFormValue> &V, in toString()
225 toUnsigned(const std::optional<DWARFFormValue> &V) { in toUnsigned()
237 inline uint64_t toUnsigned(const std::optional<DWARFFormValue> &V, in toUnsigned()
248 toReference(const std::optional<DWARFFormValue> &V) { in toReference()
260 inline uint64_t toReference(const std::optional<DWARFFormValue> &V, in toReference()
270 inline std::optional<int64_t> toSigned(const std::optional<DWARFFormValue> &V) { in toSigned()
282 inline int64_t toSigned(const std::optional<DWARFFormValue> &V, in toSigned()
293 toAddress(const std::optional<DWARFFormValue> &V) { in toAddress()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Coroutines/
H A DCoroInstr.h64 static bool classof(const Value *V) { in classof()
76 static bool classof(const Value *V) { in classof()
107 static bool classof(const Value *V) { in classof()
197 static bool classof(const Value *V) { in classof()
245 static bool classof(const Value *V) { in classof()
258 static bool classof(const Value *V) { in classof()
271 static bool classof(const Value *V) { in classof()
322 static bool classof(const Value *V) { in classof()
341 static bool classof(const Value *V) { in classof()
360 static bool classof(const Value *V) { in classof()
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/cp/
H A Dlex.h58 #define RIDBIT_SETP(N, V) ((V) & RIDBIT_OF (N)) argument
59 #define RIDBIT_NOTSETP(N, V) (! ((V) & RIDBIT_OF (N))) argument
60 #define RIDBIT_ANY_SET(V) (V) argument
62 #define RIDBIT_SET(N, V) do { (V) |= RIDBIT_OF (N); } while (0) argument
63 #define RIDBIT_RESET(N, V) do { (V) &= ~RIDBIT_OF (N); } while (0) argument
64 #define RIDBIT_RESET_ALL(V) do { (V) = 0; } while (0) argument
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.jason/
H A Dtemporary7.C3 struct V { struct
5 V() : n(0) { } in V() function
6 V(int x) : n(x) { } in V() function
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DInstructionSimplify.cpp129 static bool isSameCompare(Value *V, CmpInst::Predicate Pred, Value *LHS, in isSameCompare()
194 if (Value *V = simplifyAndInst(Cond, TCmp, Q, MaxRecurse)) in handleOtherCmpSelSimplifications() local
199 if (Value *V = simplifyOrInst(Cond, FCmp, Q, MaxRecurse)) in handleOtherCmpSelSimplifications() local
204 if (Value *V = simplifyXorInst( in handleOtherCmpSelSimplifications() local
211 static bool valueDominatesPHI(Value *V, PHINode *P, const DominatorTree *DT) { in valueDominatesPHI()
239 static Value *expandBinOp(Instruction::BinaryOps Opcode, Value *V, in expandBinOp()
282 if (Value *V = expandBinOp(Opcode, L, R, OpcodeToExpand, Q, MaxRecurse)) in expandCommutativeBinOp() local
284 if (Value *V = expandBinOp(Opcode, R, L, OpcodeToExpand, Q, MaxRecurse)) in expandCommutativeBinOp() local
311 if (Value *V = simplifyBinOp(Opcode, B, C, Q, MaxRecurse)) { in simplifyAssociativeBinOp() local
331 if (Value *V = simplifyBinOp(Opcode, A, B, Q, MaxRecurse)) { in simplifyAssociativeBinOp() local
[all …]
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DTypePromotion.cpp206 bool TypePromotionImpl::EqualTypeSize(Value *V) { in EqualTypeSize()
210 bool TypePromotionImpl::LessOrEqualTypeSize(Value *V) { in LessOrEqualTypeSize()
214 bool TypePromotionImpl::GreaterThanTypeSize(Value *V) { in GreaterThanTypeSize()
218 bool TypePromotionImpl::LessThanTypeSize(Value *V) { in LessThanTypeSize()
229 bool TypePromotionImpl::isSource(Value *V) { in isSource()
250 bool TypePromotionImpl::isSink(Value *V) { in isSink()
382 bool TypePromotionImpl::shouldPromote(Value *V) { in shouldPromote()
439 auto InsertZExt = [&](Value *V, Instruction *InsertPt) { in ExtendSources()
460 for (auto *V : Sources) { in ExtendSources() local
479 for (auto *V : Visited) { in PromoteTree() local
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/MC/MCParser/
H A DMCAsmLexer.h152 void setAllowHashInIdentifier(bool V) { AllowHashInIdentifier = V; } in setAllowHashInIdentifier()
160 void setLexMasmIntegers(bool V) { LexMasmIntegers = V; } in setLexMasmIntegers()
164 void useMasmDefaultRadix(bool V) { UseMasmDefaultRadix = V; } in useMasmDefaultRadix()
170 void setLexMasmHexFloats(bool V) { LexMasmHexFloats = V; } in setLexMasmHexFloats()
174 void setLexMasmStrings(bool V) { LexMasmStrings = V; } in setLexMasmStrings()
178 void setLexMotorolaIntegers(bool V) { LexMotorolaIntegers = V; } in setLexMotorolaIntegers()
181 void setLexHLASMIntegers(bool V) { LexHLASMIntegers = V; } in setLexHLASMIntegers()
186 void setLexHLASMStrings(bool V) { LexHLASMStrings = V; } in setLexHLASMStrings()
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DTinyPtrVector.h46 if (VecTy *V = Val.template dyn_cast<VecTy*>()) in ~TinyPtrVector() local
47 delete V; in ~TinyPtrVector() local
51 if (VecTy *V = Val.template dyn_cast<VecTy*>()) in TinyPtrVector() local
98 if (VecTy *V = Val.template dyn_cast<VecTy*>()) { variable
105 delete V; variable
253 EltTy V = Val.template get<EltTy>(); in push_back() local
320 EltTy V = Val.template get<EltTy>(); in insert() local
347 EltTy V = Val.template get<EltTy>(); in insert() local
H A DDenseSet.h97 size_type count(const_arg_type_t<ValueT> V) const { in count()
101 bool erase(const ValueT &V) { in erase()
179 iterator find(const_arg_type_t<ValueT> V) { return Iterator(TheMap.find(V)); } in find()
180 const_iterator find(const_arg_type_t<ValueT> V) const { in find()
185 bool contains(const_arg_type_t<ValueT> V) const { in contains()
206 std::pair<iterator, bool> insert(const ValueT &V) { in insert()
211 std::pair<iterator, bool> insert(ValueT &&V) { in insert()
219 std::pair<iterator, bool> insert_as(const ValueT &V, in insert_as()
224 std::pair<iterator, bool> insert_as(ValueT &&V, const LookupKeyT &LookupKey) { in insert_as()
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86InstCombineIntrinsic.cpp29 static Constant *getNegativeIsTrueBoolVec(Constant *V) { in getNegativeIsTrueBoolVec()
805 auto *V = dyn_cast<Constant>(II.getArgOperand(1)); in simplifyX86pshufb() local
850 auto *V = dyn_cast<Constant>(II.getArgOperand(1)); in simplifyX86vpermilvar() local
897 auto *V = dyn_cast<Constant>(II.getArgOperand(1)); in simplifyX86vpermv() local
1106 if (Value *V = SimplifyDemandedVectorEltsLow(Arg, VWidth, 1)) { in instCombineIntrinsic() local
1119 if (Value *V = simplifyX86movmsk(II, IC.Builder)) { in instCombineIntrinsic() local
1158 if (Value *V = SimplifyDemandedVectorEltsLow(Arg0, VWidth, 1)) { in instCombineIntrinsic() local
1162 if (Value *V = SimplifyDemandedVectorEltsLow(Arg1, VWidth, 1)) { in instCombineIntrinsic() local
1187 Value *V; in instCombineIntrinsic() local
1232 Value *V; in instCombineIntrinsic() local
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DObjCARCAnalysisUtils.h69 inline const Value *GetUnderlyingObjCPtr(const Value *V) { in GetUnderlyingObjCPtr()
82 const Value *V, in GetUnderlyingObjCPtrCached()
110 inline const Value *GetRCIdentityRoot(const Value *V) { in GetRCIdentityRoot()
124 inline Value *GetRCIdentityRoot(Value *V) { in GetRCIdentityRoot()
135 inline bool IsNullOrUndef(const Value *V) { in IsNullOrUndef()
186 inline bool IsObjCIdentifiedObject(const Value *V) { in IsObjCIdentifiedObject()
/openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/
H A Datomic_helpers.h65 typename T::Type V; in atomic_load() local
71 inline void atomic_store(volatile T *A, typename T::Type V, memory_order MO) { in atomic_store()
79 inline typename T::Type atomic_fetch_add(volatile T *A, typename T::Type V, in atomic_fetch_add()
86 inline typename T::Type atomic_fetch_sub(volatile T *A, typename T::Type V, in atomic_fetch_sub()
93 inline typename T::Type atomic_fetch_and(volatile T *A, typename T::Type V, in atomic_fetch_and()
100 inline typename T::Type atomic_fetch_or(volatile T *A, typename T::Type V, in atomic_fetch_or()
107 inline typename T::Type atomic_exchange(volatile T *A, typename T::Type V, in atomic_exchange()
131 inline void atomic_store_relaxed(volatile T *A, typename T::Type V) { in atomic_store_relaxed()
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Checkers/
H A DSValExplainer.h60 std::string VisitUnknownVal(UnknownVal V) { in VisitUnknownVal()
64 std::string VisitUndefinedVal(UndefinedVal V) { in VisitUndefinedVal()
68 std::string VisitLocMemRegionVal(loc::MemRegionVal V) { in VisitLocMemRegionVal()
79 std::string VisitLocConcreteInt(loc::ConcreteInt V) { in VisitLocConcreteInt()
87 std::string VisitNonLocSymbolVal(nonloc::SymbolVal V) { in VisitNonLocSymbolVal()
91 std::string VisitNonLocConcreteInt(nonloc::ConcreteInt V) { in VisitNonLocConcreteInt()
100 std::string VisitNonLocLazyCompoundVal(nonloc::LazyCompoundVal V) { in VisitNonLocLazyCompoundVal()
107 if (auto V = dyn_cast<VarRegion>(R)) in VisitSymbolRegionValue() local
276 std::string VisitSVal(SVal V) { in VisitSVal()
/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DEndian.h387 template <typename T> inline void write(void *P, T V, endianness E) { in write()
391 template <typename T, endianness E> inline void write(void *P, T V) { in write()
395 inline void write16(void *P, uint16_t V, endianness E) { in write16()
398 inline void write32(void *P, uint32_t V, endianness E) { in write32()
401 inline void write64(void *P, uint64_t V, endianness E) { in write64()
405 template <endianness E> inline void write16(void *P, uint16_t V) { in write16()
408 template <endianness E> inline void write32(void *P, uint32_t V) { in write32()
411 template <endianness E> inline void write64(void *P, uint64_t V) { in write64()
415 inline void write16le(void *P, uint16_t V) { write16<little>(P, V); } in write16le()
416 inline void write32le(void *P, uint32_t V) { write32<little>(P, V); } in write32le()
[all …]
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DExprEngineC.cpp141 SVal V = state->getSVal(LHS, LCtx); in VisitBinaryOperator() local
203 SVal V = svalBuilder.getBlockPointer(BD, T, in VisitBlockExpr() local
272 SVal V = svalBuilder.evalCast(OrigV, T, ExTy); in handleLValueBitCast() local
346 SVal V = state->getSVal(Ex, LCtx); in VisitCast() local
353 SVal V = state->getSVal(Ex, LCtx); in VisitCast() local
374 SVal V = state->getSVal(Ex, LCtx); in VisitCast() local
419 SVal V = state->getSVal(Ex, LCtx); in VisitCast() local
450 if (std::optional<SVal> V = in VisitCast() local
488 std::optional<SVal> V = getStoreManager().evalBaseToDerived(val, T); in VisitCast() local
503 SVal V = svalBuilder.makeNullWithType(CastE->getType()); in VisitCast() local
[all …]
H A DRegionStore.cpp267 const SVal *V = lookup(R, BindingKey::Direct); in getDirectBinding() local
273 const SVal *V = lookup(R, BindingKey::Default); in getDefaultBinding() local
440 StoreRef Bind(Store store, Loc LV, SVal V) override { in Bind()
449 SVal V) override { in BindDefaultInitial()
476 SVal V = svalBuilder.makeZeroVal(Ctx.CharTy); in BindDefaultZero() local
1027 void InvalidateRegionsWorker::VisitBinding(SVal V) { in VisitBinding()
1043 for (SVal V : RM.getInterestingValues(*LCS)) in VisitBinding() local
1110 SVal V = RM.getBinding(B, loc::MemRegionVal(VR)); in VisitCluster() local
1135 DefinedOrUnknownSVal V = in VisitCluster() local
1157 DefinedOrUnknownSVal V = svalBuilder.conjureSymbolVal(baseR, Ex, LCtx, in VisitCluster() local
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DJSON.cpp41 if (auto *V = get(K)) in getNull() local
46 if (auto *V = get(K)) in getBoolean() local
51 if (auto *V = get(K)) in getNumber() local
56 if (auto *V = get(K)) in getInteger() local
61 if (auto *V = get(K)) in getString() local
66 if (auto *V = get(K)) in getObject() local
71 if (auto *V = get(K)) in getObject() local
76 if (auto *V = get(K)) in getArray() local
81 if (auto *V = get(K)) in getArray() local
98 for (const Value &V : Elements) { in Array() local
[all …]
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DValueSymbolTable.cpp43 ValueName *ValueSymbolTable::makeUniqueName(Value *V, in makeUniqueName()
72 void ValueSymbolTable::reinsertValue(Value *V) { in reinsertValue()
93 void ValueSymbolTable::removeValueName(ValueName *V) { in removeValueName()
102 ValueName *ValueSymbolTable::createValueName(StringRef Name, Value *V) { in createValueName()
H A DConstantsContext.h61 static bool classof(const Value *V) { in classof()
88 static bool classof(const Value *V) { in classof()
114 static bool classof(const Value *V) { in classof()
141 static bool classof(const Value *V) { in classof()
169 static bool classof(const Value *V) { in classof()
205 static bool classof(const Value *V) { in classof()
238 static bool classof(const Value *V) { in classof()
267 static bool classof(const Value *V) { in classof()

12345678910>>...40