Home
last modified time | relevance | path

Searched refs:SimpleType (Results 1 – 19 of 19) sorted by relevance

/openbsd/gnu/llvm/llvm/include/llvm/IR/
H A DTrackingMDRef.h146 using SimpleType = Metadata *;
148 static SimpleType getSimplifiedValue(TrackingMDRef &MD) { return MD.get(); }
152 using SimpleType = Metadata *;
154 static SimpleType getSimplifiedValue(const TrackingMDRef &MD) {
160 using SimpleType = T *;
162 static SimpleType getSimplifiedValue(TypedTrackingMDRef<T> &MD) {
168 using SimpleType = T *;
170 static SimpleType getSimplifiedValue(const TypedTrackingMDRef<T> &MD) {
H A DUse.h116 using SimpleType = Value *;
118 static SimpleType getSimplifiedValue(Use &Val) { return Val.get(); }
121 using SimpleType = /*const*/ Value *;
123 static SimpleType getSimplifiedValue(const Use &Val) { return Val.get(); }
H A DValueHandle.h168 using SimpleType = Value *;
170 static SimpleType getSimplifiedValue(WeakVH &WVH) { return WVH; }
173 using SimpleType = Value *;
175 static SimpleType getSimplifiedValue(const WeakVH &WVH) { return WVH; }
232 using SimpleType = Value *;
234 static SimpleType getSimplifiedValue(WeakTrackingVH &WVH) { return WVH; }
237 using SimpleType = Value *;
239 static SimpleType getSimplifiedValue(const WeakTrackingVH &WVH) {
H A DUser.h323 using SimpleType = Value*;
325 static SimpleType getSimplifiedValue(User::op_iterator &Val) {
330 using SimpleType = /*const*/ Value*;
332 static SimpleType getSimplifiedValue(User::const_op_iterator &Val) {
H A DMetadata.h827 using SimpleType = Metadata *;
829 static SimpleType getSimplifiedValue(MDOperand &MD) { return MD.get(); }
833 using SimpleType = Metadata *;
835 static SimpleType getSimplifiedValue(const MDOperand &MD) { return MD.get(); }
/openbsd/gnu/llvm/llvm/include/llvm/Analysis/
H A DAssumptionCache.h255 using SimpleType = Value *;
257 static SimpleType getSimplifiedValue(AssumptionCache::ResultElem &Val) {
262 using SimpleType = /*const*/ Value *;
264 static SimpleType getSimplifiedValue(const AssumptionCache::ResultElem &Val) {
/openbsd/gnu/llvm/llvm/include/llvm/Support/
H A DCasting.h35 using SimpleType = From; // The real type this represents... member
38 static SimpleType &getSimplifiedValue(From &Val) { return Val; } in getSimplifiedValue()
42 using NonConstSimpleType = typename simplify_type<From>::SimpleType;
43 using SimpleType = typename add_const_past_pointer<NonConstSimpleType>::type;
45 typename add_lvalue_reference_if_not_pointer<SimpleType>::type;
128 typename simplify_type<SimpleFrom>::SimpleType>::
192 To, From, typename simplify_type<From>::SimpleType>::ret_type;
234 std::is_same<X, typename simplify_type<X>::SimpleType>::value;
257 typename simplify_type<const From>::SimpleType>::doit(f);
271 typename simplify_type<const From>::SimpleType>::doit(*f);
[all …]
/openbsd/gnu/llvm/llvm/include/llvm/ADT/
H A DIntrusiveRefCntPtr.h287 using SimpleType = T *;
289 static SimpleType getSimplifiedValue(IntrusiveRefCntPtr<T> &Val) {
295 using SimpleType = /*const*/ T *;
297 static SimpleType getSimplifiedValue(const IntrusiveRefCntPtr<T> &Val) {
H A Dilist_iterator.h187 using SimpleType = typename iterator::pointer;
189 static SimpleType getSimplifiedValue(const iterator &Node) { return &*Node; }
/openbsd/gnu/llvm/llvm/docs/
H A Dyaml2obj.rst37 SimpleType: IMAGE_SYM_TYPE_NULL # (0)
47 SimpleType: IMAGE_SYM_TYPE_NULL # (0)
165 SimpleType: [ {type: str, enum: [ IMAGE_SYM_TYPE_NULL
/openbsd/gnu/llvm/clang/include/clang/AST/
H A DCanonicalType.h369 using SimpleType = const T *;
371 static SimpleType getSimplifiedValue(::clang::CanQual<T> Val) {
H A DType.h1396 using SimpleType = const ::clang::Type *;
1398 static SimpleType getSimplifiedValue(::clang::QualType Val) {
/openbsd/gnu/llvm/llvm/include/llvm/ObjectYAML/
H A DCOFFYAML.h85 COFF::SymbolBaseType SimpleType = COFF::IMAGE_SYM_TYPE_NULL; member
/openbsd/gnu/llvm/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h265 using SimpleType = SDNode *;
267 static SimpleType getSimplifiedValue(SDValue &Val) {
272 using SimpleType = /*const*/ SDNode *;
274 static SimpleType getSimplifiedValue(const SDValue &Val) {
369 using SimpleType = SDNode *;
371 static SimpleType getSimplifiedValue(SDUse &Val) {
/openbsd/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h1393 using SimpleType = const T *;
1395 static SimpleType
/openbsd/gnu/llvm/llvm/tools/obj2yaml/
H A Dcoff2yaml.cpp287 Sym.SimpleType = COFF::SymbolBaseType(Symbol.getBaseType()); in dumpSymbols()
/openbsd/gnu/llvm/clang/include/clang/Analysis/
H A DCFG.h1481 using SimpleType = ::clang::Stmt *;
1483 static SimpleType getSimplifiedValue(::clang::CFGTerminator Val) {
/openbsd/gnu/llvm/llvm/lib/ObjectYAML/
H A DCOFFEmitter.cpp118 Sym.Header.Type = Sym.SimpleType; in parseSymbols()
H A DCOFFYAML.cpp556 IO.mapRequired("SimpleType", S.SimpleType); in mapping()