Home
last modified time | relevance | path

Searched refs:SimpleValueType (Results 1 – 25 of 134) sorted by relevance

123456

/external/cbor-java/src/main/java/co/nstant/in/cbor/model/
DSimpleValue.java7 private final SimpleValueType simpleValueType;
10 SimpleValueType.FALSE);
11 public static final SimpleValue TRUE = new SimpleValue(SimpleValueType.TRUE);
12 public static final SimpleValue NULL = new SimpleValue(SimpleValueType.NULL);
14 SimpleValueType.UNDEFINED);
18 public SimpleValue(SimpleValueType simpleValueType) { in SimpleValue()
28 this.simpleValueType = SimpleValueType.ofByte(value); in SimpleValue()
31 public SimpleValueType getSimpleValueType() { in getSimpleValueType()
DSimpleValueType.java3 public enum SimpleValueType { enum
14 private SimpleValueType(int value) { in SimpleValueType() method in SimpleValueType
22 public static SimpleValueType ofByte(int b) { in ofByte()
/external/llvm/utils/TableGen/
DCodeGenTarget.h53 MVT::SimpleValueType getValueType(Record *Rec);
55 StringRef getName(MVT::SimpleValueType T);
56 StringRef getEnumName(MVT::SimpleValueType T);
72 mutable SmallVector<MVT::SimpleValueType, 8> LegalValueTypes;
131 std::vector<MVT::SimpleValueType> getRegisterVTs(Record *R) const;
133 ArrayRef<MVT::SimpleValueType> getLegalValueTypes() const { in getLegalValueTypes()
140 bool isLegalValueType(MVT::SimpleValueType VT) const { in isLegalValueType()
141 ArrayRef<MVT::SimpleValueType> LegalVTs = getLegalValueTypes(); in isLegalValueType()
194 MVT::SimpleValueType Ty;
203 MVT::SimpleValueType getValueType() const { return Ty; } in getValueType()
DDAGISelMatcher.h483 MVT::SimpleValueType Type;
486 CheckTypeMatcher(MVT::SimpleValueType type, unsigned resno) in CheckTypeMatcher()
489 MVT::SimpleValueType getType() const { return Type; } in getType()
509 SmallVector<std::pair<MVT::SimpleValueType, Matcher*>, 8> Cases;
511 SwitchTypeMatcher(ArrayRef<std::pair<MVT::SimpleValueType, Matcher*> > cases) in SwitchTypeMatcher() argument
521 MVT::SimpleValueType getCaseType(unsigned i) const { return Cases[i].first; } in getCaseType()
535 MVT::SimpleValueType Type;
537 CheckChildTypeMatcher(unsigned childno, MVT::SimpleValueType type) in CheckChildTypeMatcher()
541 MVT::SimpleValueType getType() const { return Type; } in getType()
749 MVT::SimpleValueType VT;
[all …]
DCodeGenDAGPatterns.h58 SmallVector<MVT::SimpleValueType, 4> TypeVec;
61 TypeSet(MVT::SimpleValueType VT, TreePattern &TP);
62 TypeSet(ArrayRef<MVT::SimpleValueType> VTList);
73 MVT::SimpleValueType getConcrete() const { in getConcrete()
75 return (MVT::SimpleValueType)TypeVec[0]; in getConcrete()
82 const SmallVectorImpl<MVT::SimpleValueType> &getTypeList() const { in getTypeList()
115 bool MergeInTypeInfo(MVT::SimpleValueType InVT, TreePattern &TP) { in MergeInTypeInfo()
141 bool EnforceVectorEltTypeIs(MVT::SimpleValueType VT, TreePattern &TP);
162 bool (*Pred)(MVT::SimpleValueType) = nullptr,
184 MVT::SimpleValueType VT;
[all …]
DCodeGenTarget.cpp38 MVT::SimpleValueType llvm::getValueType(Record *Rec) { in getValueType()
39 return (MVT::SimpleValueType)Rec->getValueAsInt("Value"); in getValueType()
42 StringRef llvm::getName(MVT::SimpleValueType T) { in getName()
51 StringRef llvm::getEnumName(MVT::SimpleValueType T) { in getEnumName()
242 std::vector<MVT::SimpleValueType> CodeGenTarget::
245 std::vector<MVT::SimpleValueType> Result; in getRegisterVTs()
248 ArrayRef<MVT::SimpleValueType> InVTs = RC.getValueTypes(); in getRegisterVTs()
497 std::vector<MVT::SimpleValueType> OverloadedVTs; in CodeGenIntrinsic()
502 MVT::SimpleValueType VT; in CodeGenIntrinsic()
536 MVT::SimpleValueType VT; in CodeGenIntrinsic()
DFastISelEmitter.cpp177 MVT::SimpleValueType VT, in initialize()
372 typedef std::map<MVT::SimpleValueType, PredMap> RetPredMap;
373 typedef std::map<MVT::SimpleValueType, RetPredMap> TypeRetPredMap;
382 typedef std::map<MVT::SimpleValueType, PredCheckMap> RetPredCheckMap;
383 typedef std::map<MVT::SimpleValueType, RetPredCheckMap> TypeRetPredCheckMap;
512 MVT::SimpleValueType RetVT = MVT::isVoid; in collectPatterns()
514 MVT::SimpleValueType VT = RetVT; in collectPatterns()
708 MVT::SimpleValueType VT = TI->first; in printFunctionDefinitions()
713 MVT::SimpleValueType RetVT = RI->first; in printFunctionDefinitions()
740 MVT::SimpleValueType RetVT = RI->first; in printFunctionDefinitions()
[all …]
DCodeGenIntrinsics.h44 std::vector<MVT::SimpleValueType> RetVTs;
53 std::vector<MVT::SimpleValueType> ParamVTs;
/external/llvm/include/llvm/CodeGen/
DMachineValueType.h31 enum SimpleValueType : int8_t { enum
179 SimpleValueType SimpleTy;
182 LLVM_CONSTEXPR MVT(SimpleValueType SVT) : SimpleTy(SVT) { } in MVT()
572 return (MVT::SimpleValueType)(MVT::INVALID_SIMPLE_VALUE_TYPE); in getIntegerVT()
662 return (MVT::SimpleValueType)(MVT::INVALID_SIMPLE_VALUE_TYPE); in getVectorVT()
673 SimpleValueType VT;
674 mvt_iterator(SimpleValueType VT) : VT(VT) {} in mvt_iterator()
678 VT = (MVT::SimpleValueType)((int)VT + 1);
695 (MVT::SimpleValueType)(MVT::LAST_INTEGER_VALUETYPE + 1)); in integer_valuetypes()
699 (MVT::SimpleValueType)(MVT::LAST_FP_VALUETYPE + 1)); in fp_valuetypes()
[all …]
/external/llvm-project/llvm/utils/TableGen/
DDAGISelMatcher.h498 MVT::SimpleValueType Type;
501 CheckTypeMatcher(MVT::SimpleValueType type, unsigned resno) in CheckTypeMatcher()
504 MVT::SimpleValueType getType() const { return Type; } in getType()
524 SmallVector<std::pair<MVT::SimpleValueType, Matcher*>, 8> Cases;
526 SwitchTypeMatcher(ArrayRef<std::pair<MVT::SimpleValueType, Matcher*> > cases) in SwitchTypeMatcher() argument
536 MVT::SimpleValueType getCaseType(unsigned i) const { return Cases[i].first; } in getCaseType()
550 MVT::SimpleValueType Type;
552 CheckChildTypeMatcher(unsigned childno, MVT::SimpleValueType type) in CheckChildTypeMatcher()
556 MVT::SimpleValueType getType() const { return Type; } in getType()
817 MVT::SimpleValueType VT;
[all …]
DCodeGenTarget.h36 MVT::SimpleValueType getValueType(Record *Rec);
38 StringRef getName(MVT::SimpleValueType T);
39 StringRef getEnumName(MVT::SimpleValueType T);
204 MVT::SimpleValueType Ty;
213 MVT::SimpleValueType getValueType() const { return Ty; } in getValueType()
DFastISelEmitter.cpp188 MVT::SimpleValueType VT, in initialize()
379 typedef std::map<MVT::SimpleValueType, PredMap> RetPredMap;
380 typedef std::map<MVT::SimpleValueType, RetPredMap> TypeRetPredMap;
389 typedef std::map<MVT::SimpleValueType, PredCheckMap> RetPredCheckMap;
390 typedef std::map<MVT::SimpleValueType, RetPredCheckMap> TypeRetPredCheckMap;
522 MVT::SimpleValueType RetVT = MVT::isVoid; in collectPatterns()
524 MVT::SimpleValueType VT = RetVT; in collectPatterns()
714 MVT::SimpleValueType VT = TI->first; in printFunctionDefinitions()
719 MVT::SimpleValueType RetVT = RI->first; in printFunctionDefinitions()
744 MVT::SimpleValueType RetVT = RI->first; in printFunctionDefinitions()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DMachineValueType.h32 enum SimpleValueType : uint8_t { enum
265 SimpleValueType SimpleTy = INVALID_SIMPLE_VALUE_TYPE;
268 constexpr MVT(SimpleValueType SVT) : SimpleTy(SVT) {} in MVT()
902 return (MVT::SimpleValueType)(MVT::INVALID_SIMPLE_VALUE_TYPE); in getIntegerVT()
1015 return (MVT::SimpleValueType)(MVT::INVALID_SIMPLE_VALUE_TYPE); in getVectorVT()
1081 return (MVT::SimpleValueType)(MVT::INVALID_SIMPLE_VALUE_TYPE); in getScalableVectorVT()
1104 SimpleValueType VT;
1106 mvt_iterator(SimpleValueType VT) : VT(VT) {} in mvt_iterator()
1112 VT = (MVT::SimpleValueType)((int)VT + 1);
1131 (MVT::SimpleValueType)(MVT::LAST_INTEGER_VALUETYPE + 1)); in integer_valuetypes()
[all …]
/external/llvm/lib/Target/WebAssembly/
DWebAssemblyFastISel.cpp100 MVT::SimpleValueType getSimpleType(Type *Ty) { in getSimpleType()
105 MVT::SimpleValueType getLegalType(MVT::SimpleValueType VT) { in getLegalType()
128 MVT::SimpleValueType From);
130 MVT::SimpleValueType From);
132 MVT::SimpleValueType From,
133 MVT::SimpleValueType To);
135 MVT::SimpleValueType From,
136 MVT::SimpleValueType To);
383 MVT::SimpleValueType From) { in zeroExtendToI32()
417 MVT::SimpleValueType From) { in signExtendToI32()
[all …]
/external/llvm-project/llvm/lib/Target/WebAssembly/
DWebAssemblyFastISel.cpp116 MVT::SimpleValueType getSimpleType(Type *Ty) { in getSimpleType()
121 MVT::SimpleValueType getLegalType(MVT::SimpleValueType VT) { in getLegalType()
161 MVT::SimpleValueType From);
163 MVT::SimpleValueType From);
164 unsigned zeroExtend(unsigned Reg, const Value *V, MVT::SimpleValueType From,
165 MVT::SimpleValueType To);
166 unsigned signExtend(unsigned Reg, const Value *V, MVT::SimpleValueType From,
167 MVT::SimpleValueType To);
442 MVT::SimpleValueType From) { in zeroExtendToI32()
478 MVT::SimpleValueType From) { in signExtendToI32()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
DWebAssemblyFastISel.cpp117 MVT::SimpleValueType getSimpleType(Type *Ty) { in getSimpleType()
122 MVT::SimpleValueType getLegalType(MVT::SimpleValueType VT) { in getLegalType()
160 MVT::SimpleValueType From);
162 MVT::SimpleValueType From);
163 unsigned zeroExtend(unsigned Reg, const Value *V, MVT::SimpleValueType From,
164 MVT::SimpleValueType To);
165 unsigned signExtend(unsigned Reg, const Value *V, MVT::SimpleValueType From,
166 MVT::SimpleValueType To);
441 MVT::SimpleValueType From) { in zeroExtendToI32()
477 MVT::SimpleValueType From) { in signExtendToI32()
[all …]
/external/llvm-project/llvm/include/llvm/CodeGen/
DCostTable.h26 MVT::SimpleValueType Type;
46 MVT::SimpleValueType Dst;
47 MVT::SimpleValueType Src;
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DCostTable.h26 MVT::SimpleValueType Type;
46 MVT::SimpleValueType Dst;
47 MVT::SimpleValueType Src;
/external/llvm/include/llvm/CodeGen/GlobalISel/
DRegisterBankInfo.h356 const RegisterBank *getRegBankForType(MVT::SimpleValueType SVT) const { in getRegBankForType()
359 assert(SVT < MVT::SimpleValueType::LAST_VALUETYPE && "Out-of-bound access"); in getRegBankForType()
371 MVT::SimpleValueType SVT, bool Force = false) {
374 new const RegisterBank *[MVT::SimpleValueType::LAST_VALUETYPE]);
376 &VTToRegBank[MVT::SimpleValueType::LAST_VALUETYPE], nullptr);
378 assert(SVT < MVT::SimpleValueType::LAST_VALUETYPE && "Out-of-bound access");
/external/llvm/include/llvm/Target/
DCostTable.h26 MVT::SimpleValueType Type;
46 MVT::SimpleValueType Dst;
47 MVT::SimpleValueType Src;
/external/llvm-project/llvm/include/llvm/Support/
DMachineValueType.h32 enum SimpleValueType : uint8_t { enum
294 SimpleValueType SimpleTy = INVALID_SIMPLE_VALUE_TYPE;
297 constexpr MVT(SimpleValueType SVT) : SimpleTy(SVT) {} in MVT()
1089 return (MVT::SimpleValueType)(MVT::INVALID_SIMPLE_VALUE_TYPE); in getIntegerVT()
1222 return (MVT::SimpleValueType)(MVT::INVALID_SIMPLE_VALUE_TYPE); in getVectorVT()
1298 return (MVT::SimpleValueType)(MVT::INVALID_SIMPLE_VALUE_TYPE); in getScalableVectorVT()
1321 SimpleValueType VT;
1323 mvt_iterator(SimpleValueType VT) : VT(VT) {} in mvt_iterator()
1329 VT = (MVT::SimpleValueType)((int)VT + 1);
1348 (MVT::SimpleValueType)(MVT::LAST_INTEGER_VALUETYPE + 1)); in integer_valuetypes()
[all …]
/external/auto/value/src/it/functional/src/test/java/com/google/auto/value/
DSimpleValueTypeTest.java36 SimpleValueType simple = SimpleValueType.create(happy, testInt, testMap); in testSimpleValueType()
58 tester.testAllPublicStaticMethods(SimpleValueType.class); in testNull()
/external/auto/value/src/it/functional/src/main/java/com/google/auto/value/
DSimpleValueType.java27 public abstract class SimpleValueType { class
41 public static SimpleValueType create( in create()
/external/llvm-project/llvm/test/CodeGen/X86/
Dmisched-aa-colored.ll55SimpleValueType>, std::pair<const std::pair<unsigned int, llvm::MVT::SimpleValueType>, llvm::MVT::
56SimpleValueType>, std::pair<const std::pair<unsigned int, llvm::MVT::SimpleValueType>, llvm::MVT::
/external/llvm/test/CodeGen/X86/
Dmisched-aa-colored.ll55SimpleValueType>, std::pair<const std::pair<unsigned int, llvm::MVT::SimpleValueType>, llvm::MVT::
56SimpleValueType>, std::pair<const std::pair<unsigned int, llvm::MVT::SimpleValueType>, llvm::MVT::

123456