Home
last modified time | relevance | path

Searched refs:ValueType (Results 1 – 25 of 163) sorted by relevance

1234567

/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DValueTypes.td16 class ValueType<int size, int value> {
22 def OtherVT: ValueType<0 , 1>; // "Other" value
24 def i8 : ValueType<8 , 3>; // 8-bit integer value
149 def token : ValueType<0 , 248>; // TokenTy
150 def MetadataVT: ValueType<0, 249>; // Metadata
154 def iPTRAny : ValueType<0, 250>;
157 def vAny : ValueType<0 , 251>;
160 def fAny : ValueType<0 , 252>;
163 def iAny : ValueType<0 , 253>;
166 def iPTR : ValueType<0 , 254>;
[all …]
H A DScheduleDAGInstrs.h106 using ValueType = PointerUnion<const Value *, const PseudoSourceValue *>; variable
108 struct UnderlyingObject : PointerIntPair<ValueType, 1, bool> {
109 UnderlyingObject(ValueType V, bool MayAlias) in UnderlyingObject()
110 : PointerIntPair<ValueType, 1, bool>(V, MayAlias) {} in UnderlyingObject()
112 ValueType getValue() const { return getPointer(); } in getValue()
220 ValueType V);
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/
H A DFlags.h30 typedef uint32_t ValueType; typedef
41 Flags(ValueType flags = 0) : m_flags(flags) {} in m_flags()
64 ValueType Get() const { return m_flags; } in Get()
72 size_t GetBitSize() const { return sizeof(ValueType) * 8; } in GetBitSize()
80 void Reset(ValueType flags) { m_flags = flags; } in Reset()
91 ValueType Clear(ValueType mask = ~(ValueType)0) {
105 ValueType Set(ValueType mask) { in Set()
134 bool Test(ValueType bit) const { return (m_flags & bit) != 0; } in Test()
163 for (ValueType shift = 0; shift < sizeof(ValueType) * 8; ++shift) { in ClearCount()
178 for (ValueType mask = m_flags; mask; mask >>= 1) { in SetCount()
[all …]
H A DStatus.h53 typedef uint32_t ValueType; typedef
68 explicit Status(ValueType err,
133 ValueType GetError() const;
171 void SetError(ValueType err, lldb::ErrorType type);
248 ValueType m_code; ///< Status code as an integer value.
/freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/
H A DAMDGPUGISel.td41 ValueType dst_vt,
42 ValueType src0_vt = dst_vt, ValueType src1_vt = src0_vt> : GCNPat <
51 ValueType dst_vt,
52 ValueType src0_vt = dst_vt, ValueType src1_vt = src0_vt> : GCNPat <
61 ValueType dst_vt,
62 ValueType src0_vt = dst_vt, ValueType src1_vt = src0_vt> : GCNPat <
71 ValueType dst_vt,
81 ValueType dst_vt,
91 ValueType dst_vt,
92 ValueType src0_vt = dst_vt, ValueType src1_vt = src0_vt> : GCNPat <
[all …]
H A DSIInstrInfo.td198 // ValueType helpers
203 class isFloatType<ValueType SrcVT> {
212 class isIntType<ValueType SrcVT> {
220 class isPackedType<ValueType SrcVT> {
1073 class getNumSrcArgs<ValueType Src0, ValueType Src1, ValueType Src2> {
1198 class getSrcMod <ValueType VT> {
1215 class getOpSelMod <ValueType VT> {
1220 class getSrcModExt <ValueType VT> {
1622 class getHasExt <int NumSrcArgs, ValueType DstVT = i32, ValueType Src0VT = i32,
1639 class getHasDPP <int NumSrcArgs, ValueType DstVT = i32, ValueType Src0VT = i32,
[all …]
H A DAMDGPUHSAMetadataStreamer.cpp131 ValueType MetadataStreamerV2::getValueType(Type *Ty, StringRef TypeName) const { in getValueType()
137 return Signed ? ValueType::I8 : ValueType::U8; in getValueType()
139 return Signed ? ValueType::I16 : ValueType::U16; in getValueType()
141 return Signed ? ValueType::I32 : ValueType::U32; in getValueType()
143 return Signed ? ValueType::I64 : ValueType::U64; in getValueType()
145 return ValueType::Struct; in getValueType()
149 return ValueType::F16; in getValueType()
151 return ValueType::F32; in getValueType()
153 return ValueType::F64; in getValueType()
159 return ValueType::Struct; in getValueType()
/freebsd-12.1/contrib/llvm/lib/Target/Mips/
H A DMipsOptimizePICCall.cpp58 using ValueType = PointerUnion<const Value *, const PseudoSourceValue *>; typedef
62 using ScopedHTType = ScopedHashTable<ValueType, CntRegP,
102 ValueType &Val) const;
106 unsigned getCount(ValueType Entry);
110 unsigned getReg(ValueType Entry);
113 void incCntAndSetReg(ValueType Entry, unsigned Reg);
237 ValueType Entry; in visitNode()
269 ValueType &Val) const { in isCallViaRegister()
305 unsigned OptimizePICCall::getCount(ValueType Entry) { in getCount()
309 unsigned OptimizePICCall::getReg(ValueType Entry) { in getReg()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DBinaryStreamArray.h87 template <typename ValueType,
88 typename Extractor = VarStreamArrayExtractor<ValueType>>
90 friend class VarStreamArrayIterator<ValueType, Extractor>;
93 typedef VarStreamArrayIterator<ValueType, Extractor> Iterator;
116 VarStreamArray<ValueType, Extractor> substream(uint32_t Begin, in substream()
150 template <typename ValueType, typename Extractor>
154 typedef VarStreamArrayIterator<ValueType, Extractor> IterType;
155 typedef VarStreamArray<ValueType, Extractor> ArrayType;
192 const ValueType &operator*() const {
197 ValueType &operator*() {
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h203 inline ValueType ValueType::getValueType<void>() {
208 inline ValueType ValueType::getValueType<bool>() {
213 inline ValueType ValueType::getValueType<int8_t>() {
218 inline ValueType ValueType::getValueType<uint8_t>() {
223 inline ValueType ValueType::getValueType<int16_t>() {
228 inline ValueType ValueType::getValueType<uint16_t>() {
233 inline ValueType ValueType::getValueType<int32_t>() {
243 inline ValueType ValueType::getValueType<int64_t>() {
253 inline ValueType ValueType::getValueType<float>() {
258 inline ValueType ValueType::getValueType<double>() {
[all …]
H A DThreadSafetyTraverse.h559 case ValueType::BT_Void: in printLiteral()
562 case ValueType::BT_Bool: in printLiteral()
568 case ValueType::BT_Int: in printLiteral()
570 case ValueType::ST_8: in printLiteral()
576 case ValueType::ST_16: in printLiteral()
582 case ValueType::ST_32: in printLiteral()
588 case ValueType::ST_64: in printLiteral()
598 case ValueType::BT_Float: in printLiteral()
600 case ValueType::ST_32: in printLiteral()
603 case ValueType::ST_64: in printLiteral()
[all …]
/freebsd-12.1/contrib/llvm/lib/Support/
H A DAMDGPUMetadata.cpp73 struct ScalarEnumerationTraits<ValueType> {
76 YIO.enumCase(EN, "I8", ValueType::I8); in enumeration()
77 YIO.enumCase(EN, "U8", ValueType::U8); in enumeration()
78 YIO.enumCase(EN, "I16", ValueType::I16); in enumeration()
79 YIO.enumCase(EN, "U16", ValueType::U16); in enumeration()
80 YIO.enumCase(EN, "F16", ValueType::F16); in enumeration()
81 YIO.enumCase(EN, "I32", ValueType::I32); in enumeration()
82 YIO.enumCase(EN, "U32", ValueType::U32); in enumeration()
83 YIO.enumCase(EN, "F32", ValueType::F32); in enumeration()
84 YIO.enumCase(EN, "I64", ValueType::I64); in enumeration()
[all …]
/freebsd-12.1/contrib/llvm/lib/Transforms/Utils/
H A DSymbolRewriter.cpp112 template <RewriteDescriptor::Type DT, typename ValueType,
113 ValueType *(Module::*Get)(StringRef) const>
132 template <RewriteDescriptor::Type DT, typename ValueType,
133 ValueType *(Module::*Get)(StringRef) const>
136 if (ValueType *S = (M.*Get)(Source)) { in performOnModule()
152 template <RewriteDescriptor::Type DT, typename ValueType,
153 ValueType *(Module::*Get)(StringRef) const,
154 iterator_range<typename iplist<ValueType>::iterator>
173 template <RewriteDescriptor::Type DT, typename ValueType,
174 ValueType *(Module::*Get)(StringRef) const,
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/
H A DRefactoringOptions.h34 using ValueType = Optional<T>; variable
36 const ValueType &getValue() const { return Value; } in getValue()
47 using ValueType = T;
49 const ValueType &getValue() const { in getValue()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFFormValue.h30 } ValueType; typedef
66 const ValueType &Value() const { return m_value; } in Value()
67 ValueType &ValueRef() { return m_value; } in ValueRef()
68 void SetValue(const ValueType &val) { m_value = val; } in SetValue()
100 ValueType m_value; // Contains all data for the form
H A DDWARFAttribute.h23 DWARFFormValue::ValueType value) in DWARFAttribute()
35 DWARFFormValue::ValueType &val) const { in get()
50 DWARFFormValue::ValueType m_value;
/freebsd-12.1/contrib/libc++/include/
H A Dany35 template <class ValueType>
36 any(ValueType&& value);
44 template <class ValueType>
45 any& operator=(ValueType&& rhs);
68 template<class ValueType>
70 template<class ValueType>
71 ValueType any_cast(any& operand);
72 template<class ValueType>
73 ValueType any_cast(any&& operand);
75 template<class ValueType>
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/Target/
H A DTargetCallingConv.td31 class CCIfType<list<ValueType> vts, CCAction A> : CCPredicateAction<A> {
32 list<ValueType> VTs = vts;
131 class CCPromoteToType<ValueType destTy> : CCAction {
132 ValueType DestTy = destTy;
137 class CCPromoteToUpperBitsInType<ValueType destTy> : CCAction {
138 ValueType DestTy = destTy;
143 class CCBitConvertToType<ValueType destTy> : CCAction {
144 ValueType DestTy = destTy;
149 class CCPassIndirect<ValueType destTy> : CCAction {
150 ValueType DestTy = destTy;
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DValue.h53 enum ValueType { enum
149 ValueType GetValueType() const;
155 void SetValueType(ValueType value_type) { m_value_type = value_type; } in SetValueType()
227 static const char *GetValueTypeAsCString(ValueType context_type);
243 ValueType m_value_type;
H A DValueObjectRegister.h53 lldb::ValueType GetValueType() const override { in GetValueType()
94 lldb::ValueType GetValueType() const override { in GetValueType()
143 lldb::ValueType GetValueType() const override { in GetValueType()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
H A DFormattersContainer.h64 template <typename KeyType, typename ValueType> class FormattersContainer;
66 template <typename KeyType, typename ValueType> class FormatMap {
68 typedef typename ValueType::SharedPointer ValueSP;
164 friend class FormattersContainer<KeyType, ValueType>;
168 template <typename KeyType, typename ValueType> class FormattersContainer {
170 typedef FormatMap<KeyType, ValueType> BackEndType;
178 typedef typename std::shared_ptr<FormattersContainer<KeyType, ValueType>>
H A DTypeCategoryMap.h28 typedef TypeCategoryImpl ValueType; typedef
29 typedef ValueType::SharedPointer ValueSP;
116 friend class FormattersContainer<KeyType, ValueType>;
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DVariable.h38 lldb::ValueType scope, SymbolContextScope *owner_scope,
70 lldb::ValueType GetScope() const { return m_scope; } in GetScope()
118 lldb::ValueType m_scope; // global, parameter, local
/freebsd-12.1/contrib/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h31 LLVM_YAML_STRONG_TYPEDEF(uint32_t, ValueType)
72 ValueType Type;
97 ValueType Type;
136 std::vector<ValueType> ParamTypes;
137 ValueType ReturnType;
357 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::ValueType) in LLVM_YAML_IS_SEQUENCE_VECTOR()
487 template <> struct ScalarEnumerationTraits<WasmYAML::ValueType> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
488 static void enumeration(IO &IO, WasmYAML::ValueType &Type); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/freebsd-12.1/contrib/llvm/lib/Target/WebAssembly/
H A DWebAssemblyInstrMemory.td73 class LoadPatNoOffset<ValueType ty, PatFrag kind, NI inst> :
97 class LoadPatGlobalAddr<ValueType ty, PatFrag kind, NI inst> :
106 class LoadPatExternalSym<ValueType ty, PatFrag kind, NI inst> :
116 class LoadPatOffsetOnly<ValueType ty, PatFrag kind, NI inst> :
124 class LoadPatGlobalAddrOffOnly<ValueType ty, PatFrag kind, NI inst> :
133 class LoadPatExternSymOffOnly<ValueType ty, PatFrag kind, NI inst> :
314 class StorePatNoOffset<ValueType ty, PatFrag node, NI inst> :
336 class StorePatGlobalAddr<ValueType ty, PatFrag kind, NI inst> :
345 class StorePatExternalSym<ValueType ty, PatFrag kind, NI inst> :
354 class StorePatOffsetOnly<ValueType ty, PatFrag kind, NI inst> :
[all …]

1234567