/external/cbor-java/src/main/java/co/nstant/in/cbor/model/ |
D | SimpleValue.java | 7 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()
|
D | SimpleValueType.java | 3 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/ |
D | CodeGenTarget.h | 53 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()
|
D | DAGISelMatcher.h | 483 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 …]
|
D | CodeGenDAGPatterns.h | 58 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 …]
|
D | CodeGenTarget.cpp | 38 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()
|
D | FastISelEmitter.cpp | 177 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 …]
|
D | CodeGenIntrinsics.h | 44 std::vector<MVT::SimpleValueType> RetVTs; 53 std::vector<MVT::SimpleValueType> ParamVTs;
|
/external/llvm/include/llvm/CodeGen/ |
D | MachineValueType.h | 31 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/ |
D | DAGISelMatcher.h | 498 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 …]
|
D | CodeGenTarget.h | 36 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()
|
D | FastISelEmitter.cpp | 188 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/ |
D | MachineValueType.h | 32 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-project/llvm/include/llvm/CodeGen/ |
D | CostTable.h | 26 MVT::SimpleValueType Type; 46 MVT::SimpleValueType Dst; 47 MVT::SimpleValueType Src;
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | CostTable.h | 26 MVT::SimpleValueType Type; 46 MVT::SimpleValueType Dst; 47 MVT::SimpleValueType Src;
|
/external/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyFastISel.cpp | 100 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/include/llvm/Target/ |
D | CostTable.h | 26 MVT::SimpleValueType Type; 46 MVT::SimpleValueType Dst; 47 MVT::SimpleValueType Src;
|
/external/llvm-project/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyFastISel.cpp | 116 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/ |
D | WebAssemblyFastISel.cpp | 117 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/include/llvm/CodeGen/GlobalISel/ |
D | RegisterBankInfo.h | 356 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/auto/value/src/it/functional/src/test/java/com/google/auto/value/ |
D | SimpleValueTypeTest.java | 36 SimpleValueType simple = SimpleValueType.create(happy, testInt, testMap); in testSimpleValueType() 58 tester.testAllPublicStaticMethods(SimpleValueType.class); in testNull()
|
/external/llvm-project/llvm/include/llvm/Support/ |
D | MachineValueType.h | 32 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/main/java/com/google/auto/value/ |
D | SimpleValueType.java | 27 public abstract class SimpleValueType { class 41 public static SimpleValueType create( in create()
|
/external/llvm-project/llvm/test/CodeGen/X86/ |
D | misched-aa-colored.ll | 55 …SimpleValueType>, std::pair<const std::pair<unsigned int, llvm::MVT::SimpleValueType>, llvm::MVT::… 56 …SimpleValueType>, std::pair<const std::pair<unsigned int, llvm::MVT::SimpleValueType>, llvm::MVT::…
|
/external/llvm/test/CodeGen/X86/ |
D | misched-aa-colored.ll | 55 …SimpleValueType>, std::pair<const std::pair<unsigned int, llvm::MVT::SimpleValueType>, llvm::MVT::… 56 …SimpleValueType>, std::pair<const std::pair<unsigned int, llvm::MVT::SimpleValueType>, llvm::MVT::…
|