Home
last modified time | relevance | path

Searched refs:SimpleValue (Results 1 – 5 of 5) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DEarlyCSE.cpp46 struct SimpleValue { struct
49 SimpleValue(Instruction *I) : Inst(I) { in SimpleValue() argument
73 template<> struct isPodLike<SimpleValue> {
77 template<> struct DenseMapInfo<SimpleValue> {
78 static inline SimpleValue getEmptyKey() { in getEmptyKey()
81 static inline SimpleValue getTombstoneKey() { in getTombstoneKey()
84 static unsigned getHashValue(SimpleValue Val);
85 static bool isEqual(SimpleValue LHS, SimpleValue RHS);
89 unsigned DenseMapInfo<SimpleValue>::getHashValue(SimpleValue Val) { in getHashValue()
122 bool DenseMapInfo<SimpleValue>::isEqual(SimpleValue LHS, SimpleValue RHS) { in isEqual()
[all …]
/external/llvm/lib/Transforms/Scalar/
DEarlyCSE.cpp54 struct SimpleValue { struct
57 SimpleValue(Instruction *I) : Inst(I) { in SimpleValue() function
80 template <> struct DenseMapInfo<SimpleValue> {
81 static inline SimpleValue getEmptyKey() { in getEmptyKey()
84 static inline SimpleValue getTombstoneKey() { in getTombstoneKey()
87 static unsigned getHashValue(SimpleValue Val);
88 static bool isEqual(SimpleValue LHS, SimpleValue RHS);
92 unsigned DenseMapInfo<SimpleValue>::getHashValue(SimpleValue Val) { in getHashValue()
139 bool DenseMapInfo<SimpleValue>::isEqual(SimpleValue LHS, SimpleValue RHS) { in isEqual()
255 BumpPtrAllocator, ScopedHashTableVal<SimpleValue, Value *>> AllocatorTy;
[all …]
/external/llvm/docs/TableGen/
DLangRef.rst179 Value: `SimpleValue` `ValueSuffix`*
196 :token:`SimpleValue` has a number of forms:
200 SimpleValue: `TokIdentifier`
245 SimpleValue: `TokInteger`
250 SimpleValue: `TokString`+
256 SimpleValue: `TokCodeFragment`
261 SimpleValue: "?"
266 SimpleValue: "{" `ValueList` "}"
274 SimpleValue: `ClassID` "<" `ValueListNE` ">"
281 SimpleValue: "[" `ValueList` "]" ["<" `Type` ">"]
[all …]
/external/fonttools/Lib/fontTools/ttLib/tables/
DotConverters.py84 class SimpleValue(BaseConverter): class
91 class IntValue(SimpleValue):
150 class Tag(SimpleValue):
156 class GlyphID(SimpleValue):
166 class FloatValue(SimpleValue):
/external/llvm/unittests/Support/
DErrorOrTest.cpp22 TEST(ErrorOr, SimpleValue) { in TEST() argument