| /NextBSD/contrib/llvm/include/llvm/CodeGen/ |
| HD | ValueTypes.td | 1 //===- ValueTypes.td - ValueType definitions ---------------*- tablegen -*-===// 16 class ValueType<int size, int value> { 22 def OtherVT: ValueType<0 , 0>; // "Other" value 23 def i1 : ValueType<1 , 1>; // One bit boolean value 24 def i8 : ValueType<8 , 2>; // 8-bit integer value 25 def i16 : ValueType<16 , 3>; // 16-bit integer value 26 def i32 : ValueType<32 , 4>; // 32-bit integer value 27 def i64 : ValueType<64 , 5>; // 64-bit integer value 28 def i128 : ValueType<128, 6>; // 128-bit integer value 29 def f16 : ValueType<16 , 7>; // 16-bit floating point value [all …]
|
| /NextBSD/contrib/llvm/tools/lldb/include/lldb/Core/ |
| HD | Flags.h | 32 typedef uint32_t ValueType; typedef 43 Flags (ValueType flags = 0) : 74 ValueType 90 return sizeof (ValueType) * 8; in GetBitSize() 100 Reset (ValueType flags) in Reset() 114 ValueType 115 Clear (ValueType mask = ~(ValueType)0) 132 ValueType 133 Set (ValueType mask) in Set() 148 AllSet (ValueType mask) const in AllSet() [all …]
|
| HD | Error.h | 53 typedef uint32_t ValueType; typedef 69 Error (ValueType err, lldb::ErrorType type = lldb::eErrorTypeGeneric); 146 ValueType 232 SetError (ValueType err, lldb::ErrorType type); 310 ValueType m_code; ///< Error code as an integer value.
|
| HD | Value.h | 34 enum ValueType enum 145 ValueType 158 SetValueType (ValueType value_type) in SetValueType() 281 GetValueTypeAsCString (ValueType context_type); 297 ValueType m_value_type;
|
| HD | UUID.h | 28 typedef uint8_t ValueType[20]; typedef 92 …DecodeUUIDBytesFromCString (const char *cstr, ValueType &uuid_bytes, const char **end, uint32_t nu… 99 ValueType m_uuid;
|
| HD | ValueObjectRegister.h | 37 virtual lldb::ValueType 87 virtual lldb::ValueType 145 virtual lldb::ValueType
|
| /NextBSD/contrib/llvm/tools/lldb/include/lldb/Utility/ |
| HD | Range.h | 22 typedef uint64_t ValueType; typedef 24 static const ValueType OPEN_END = UINT64_MAX; 28 Range (ValueType low = 0, 29 ValueType high = OPEN_END); 34 ValueType 40 ValueType 47 SetLow (ValueType low) in SetLow() 53 SetHigh (ValueType high) in SetHigh() 67 typedef bool (*RangeCallback)(ValueType index); 72 ValueType [all …]
|
| /NextBSD/contrib/llvm/lib/Target/Mips/ |
| HD | MipsOptimizePICCall.cpp | 38 typedef PointerUnion<const Value *, const PseudoSourceValue *> ValueType; typedef 42 ScopedHashTableVal<ValueType, CntRegP> > 44 typedef ScopedHashTable<ValueType, CntRegP, DenseMapInfo<ValueType>, 83 ValueType &Val) const; 87 unsigned getCount(ValueType Entry); 91 unsigned getReg(ValueType Entry); 94 void incCntAndSetReg(ValueType Entry, unsigned Reg); 215 ValueType Entry; in visitNode() 247 ValueType &Val) const { in isCallViaRegister() 283 unsigned OptimizePICCall::getCount(ValueType Entry) { in getCount() [all …]
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ |
| HD | ThreadSafetyTIL.h | 131 struct ValueType { struct 155 inline static ValueType getValueType(); argument 157 ValueType(BaseType B, SizeType Sz, bool S, unsigned char VS) in ValueType() function 168 inline ValueType::SizeType ValueType::getSizeType(unsigned nbytes) { in getSizeType() argument 181 inline ValueType ValueType::getValueType<void>() { 182 return ValueType(BT_Void, ST_0, false, 0); 186 inline ValueType ValueType::getValueType<bool>() { 187 return ValueType(BT_Bool, ST_1, false, 0); 191 inline ValueType ValueType::getValueType<int8_t>() { 192 return ValueType(BT_Int, ST_8, true, 0); [all …]
|
| HD | ThreadSafetyTraverse.h | 532 ValueType VT = E->valueType(); in printLiteral() 534 case ValueType::BT_Void: { in printLiteral() 538 case ValueType::BT_Bool: { in printLiteral() 545 case ValueType::BT_Int: { in printLiteral() 547 case ValueType::ST_8: in printLiteral() 553 case ValueType::ST_16: in printLiteral() 559 case ValueType::ST_32: in printLiteral() 565 case ValueType::ST_64: in printLiteral() 576 case ValueType::BT_Float: { in printLiteral() 578 case ValueType::ST_32: in printLiteral() [all …]
|
| /NextBSD/contrib/llvm/tools/lldb/source/Core/ |
| HD | UUID.cpp | 179 UUID::DecodeUUIDBytesFromCString (const char *p, ValueType &uuid_bytes, const char **end, uint32_t … in DecodeUUIDBytesFromCString() 216 for (uint32_t i = uuid_byte_idx; i < sizeof(ValueType); i++) in DecodeUUIDBytesFromCString() 251 return ::memcmp (lhs.GetBytes(), rhs.GetBytes(), sizeof (lldb_private::UUID::ValueType)) == 0; in operator ==() 257 return ::memcmp (lhs.GetBytes(), rhs.GetBytes(), sizeof (lldb_private::UUID::ValueType)) != 0; in operator !=() 263 return ::memcmp (lhs.GetBytes(), rhs.GetBytes(), sizeof (lldb_private::UUID::ValueType)) < 0; in operator <() 269 return ::memcmp (lhs.GetBytes(), rhs.GetBytes(), sizeof (lldb_private::UUID::ValueType)) <= 0; in operator <=() 275 return ::memcmp (lhs.GetBytes(), rhs.GetBytes(), sizeof (lldb_private::UUID::ValueType)) > 0; in operator >() 281 return ::memcmp (lhs.GetBytes(), rhs.GetBytes(), sizeof (lldb_private::UUID::ValueType)) >= 0; in operator >=()
|
| HD | Error.cpp | 37 Error::Error(ValueType err, ErrorType type) : in Error() 152 Error::ValueType 296 Error::SetError (ValueType err, ErrorType type) in SetError()
|
| /NextBSD/contrib/llvm/lib/Transforms/Utils/ |
| HD | SymbolRewriter.cpp | 97 template <RewriteDescriptor::Type DT, typename ValueType, 98 ValueType *(llvm::Module::*Get)(StringRef) const> 115 template <RewriteDescriptor::Type DT, typename ValueType, 116 ValueType *(llvm::Module::*Get)(StringRef) const> 117 bool ExplicitRewriteDescriptor<DT, ValueType, Get>::performOnModule(Module &M) { in performOnModule() 119 if (ValueType *S = (M.*Get)(Source)) { in performOnModule() 133 template <RewriteDescriptor::Type DT, typename ValueType, 134 ValueType *(llvm::Module::*Get)(StringRef) const, 135 iterator_range<typename iplist<ValueType>::iterator> 152 template <RewriteDescriptor::Type DT, typename ValueType, [all …]
|
| /NextBSD/contrib/llvm/tools/lldb/source/Utility/ |
| HD | Range.cpp | 21 Range::Range (Range::ValueType low, in Range() 22 Range::ValueType high) : in Range() 79 ValueType counter = m_low; in Iterate() 95 Range::ValueType
|
| /NextBSD/contrib/llvm/include/llvm/Target/ |
| HD | TargetCallingConv.td | 31 class CCIfType<list<ValueType> vts, CCAction A> : CCPredicateAction<A> { 32 list<ValueType> VTs = vts; 121 class CCPromoteToType<ValueType destTy> : CCAction { 122 ValueType DestTy = destTy; 127 class CCPromoteToUpperBitsInType<ValueType destTy> : CCAction { 128 ValueType DestTy = destTy; 133 class CCBitConvertToType<ValueType destTy> : CCAction { 134 ValueType DestTy = destTy; 139 class CCPassIndirect<ValueType destTy> : CCAction { 140 ValueType DestTy = destTy;
|
| /NextBSD/contrib/llvm/tools/lldb/include/lldb/DataFormatters/ |
| HD | FormattersContainer.h | 88 template<typename KeyType, typename ValueType> 91 template<typename KeyType, typename ValueType> 96 typedef typename ValueType::SharedPointer ValueSP; 228 friend class FormattersContainer<KeyType, ValueType>; 233 template<typename KeyType, typename ValueType> 237 typedef FormatMap<KeyType,ValueType> BackEndType; 245 typedef typename std::shared_ptr<FormattersContainer<KeyType, ValueType> > SharedPointer;
|
| HD | TypeCategoryMap.h | 29 typedef TypeCategoryImpl ValueType; typedef 30 typedef ValueType::SharedPointer ValueSP; 157 friend class FormattersContainer<KeyType, ValueType>;
|
| /NextBSD/contrib/llvm/include/llvm/DebugInfo/DWARF/ |
| HD | DWARFFormValue.h | 38 struct ValueType { struct 39 ValueType() : data(nullptr) { in ValueType() argument 52 ValueType Value; // Contains all data for the form. argument
|
| /NextBSD/contrib/llvm/tools/lldb/include/lldb/Symbol/ |
| HD | Variable.h | 34 lldb::ValueType scope, 84 lldb::ValueType 168 lldb::ValueType m_scope; // global, parameter, local
|
| HD | VariableList.h | 54 FindVariable (const ConstString& name, lldb::ValueType value_type); 73 AppendVariablesWithScope (lldb::ValueType type,
|
| /NextBSD/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ |
| HD | DWARFFormValue.h | 37 } ValueType; typedef 54 const ValueType& Value() const { return m_value; } in Value() 77 ValueType m_value; // Contains all data for the form
|
| /NextBSD/contrib/llvm/lib/CodeGen/ |
| HD | ScheduleDAGInstrs.cpp | 127 typedef PointerUnion<const Value *, const PseudoSourceValue *> ValueType; typedef 128 typedef SmallVector<PointerIntPair<ValueType, 1, bool>, 4> 776 MapVector<ValueType, std::vector<SUnit *> > AliasMemDefs, NonAliasMemDefs; in buildSchedGraph() 777 MapVector<ValueType, std::vector<SUnit *> > AliasMemUses, NonAliasMemUses; in buildSchedGraph() 873 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I = in buildSchedGraph() 879 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I = in buildSchedGraph() 914 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I = in buildSchedGraph() 920 for (MapVector<ValueType, std::vector<SUnit *> >::iterator I = in buildSchedGraph() 950 ValueType V = K->getPointer(); in buildSchedGraph() 958 MapVector<ValueType, std::vector<SUnit *> >::iterator I = in buildSchedGraph() [all …]
|
| /NextBSD/contrib/llvm/lib/Target/ARM/ |
| HD | ARMInstrNEON.td | 1056 class VLD1LN<bits<4> op11_8, bits<4> op7_4, string Dt, ValueType Ty, 1068 class VLD1LN32<bits<4> op11_8, bits<4> op7_4, string Dt, ValueType Ty, 1080 class VLD1QLNPseudo<ValueType Ty, PatFrag LoadOp> : VLDQLNPseudo<IIC_VLD1ln> { 1365 class VLD1DUP<bits<4> op7_4, string Dt, ValueType Ty, PatFrag LoadOp, 1386 class VLD1QDUP<bits<4> op7_4, string Dt, ValueType Ty, PatFrag LoadOp, 2055 class VST1LN<bits<4> op11_8, bits<4> op7_4, string Dt, ValueType Ty, 2064 class VST1QLNPseudo<ValueType Ty, PatFrag StoreOp, SDNode ExtractOp> 2096 class VST1LNWB<bits<4> op11_8, bits<4> op7_4, string Dt, ValueType Ty, 2107 class VST1QLNWBPseudo<ValueType Ty, PatFrag StoreOp, SDNode ExtractOp> 2440 string Dt, ValueType ResTy, ValueType OpTy, SDNode OpNode> [all …]
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/AST/ |
| HD | ExternalASTSource.h | 409 typedef llvm::PointerUnion<T, LazyData*> ValueType; typedef 410 ValueType Value; 412 LazyGenerationalUpdatePtr(ValueType V) : Value(V) {} in LazyGenerationalUpdatePtr() 415 static ValueType makeValue(const ASTContext &Ctx, T Value); 465 return LazyGenerationalUpdatePtr(ValueType::getFromOpaqueValue(Ptr)); in getFromOpaqueValue()
|
| /NextBSD/contrib/llvm/lib/Target/X86/ |
| HD | X86InstrFMA.td | 21 ValueType OpVT128, ValueType OpVT256, 62 SDNode Op, ValueType OpTy128, ValueType OpTy256> { 131 RegisterClass RC, ValueType OpVT, PatFrag mem_frag, 155 SDNode OpNode, RegisterClass RC, ValueType OpVT, 225 X86MemOperand x86memop, ValueType OpVT, SDNode OpNode, 281 ValueType OpVT128, ValueType OpVT256,
|