Searched refs:SmiConstant (Results 1 – 8 of 8) sorted by relevance
/external/v8/src/compiler/ |
D | js-generic-lowering.cc | 286 node->InsertInput(zone(), 2, jsgraph()->SmiConstant(p.feedback().index())); in LowerJSLoadProperty() 297 node->InsertInput(zone(), 2, jsgraph()->SmiConstant(p.feedback().index())); in LowerJSLoadNamed() 321 node->InsertInput(zone(), 2, jsgraph()->SmiConstant(p.feedback().index())); in LowerJSLoadGlobal() 333 node->InsertInput(zone(), 3, jsgraph()->SmiConstant(p.feedback().index())); in LowerJSStoreProperty() 346 node->InsertInput(zone(), 3, jsgraph()->SmiConstant(p.feedback().index())); in LowerJSStoreNamed() 372 node->InsertInput(zone(), 3, jsgraph()->SmiConstant(p.feedback().index())); in LowerJSStoreGlobal() 509 node->InsertInput(zone(), 1, jsgraph()->SmiConstant(p.index())); in LowerJSCreateLiteralArray() 511 node->InsertInput(zone(), 3, jsgraph()->SmiConstant(p.flags())); in LowerJSCreateLiteralArray() 518 node->InsertInput(zone(), 1, jsgraph()->SmiConstant(p.index())); in LowerJSCreateLiteralObject() 520 node->InsertInput(zone(), 3, jsgraph()->SmiConstant(p.flags())); in LowerJSCreateLiteralObject() [all …]
|
D | js-graph.h | 108 Node* SmiConstant(int32_t immediate) { in SmiConstant() function
|
D | simplified-lowering.cc | 1917 node->ReplaceInput(1, jsgraph()->SmiConstant(EQUAL)); in DoStringEqual() 1927 node->ReplaceInput(1, jsgraph()->SmiConstant(EQUAL)); in DoStringLessThan() 1937 node->ReplaceInput(1, jsgraph()->SmiConstant(EQUAL)); in DoStringLessThanOrEqual()
|
D | change-lowering.cc | 576 node->InsertInput(graph()->zone(), 2, jsgraph()->SmiConstant(flags)); in Allocate()
|
D | js-typed-lowering.cc | 1895 Node* literal_index = jsgraph()->SmiConstant(p.index()); in ReduceJSCreateLiteralArray() 1929 Node* literal_index = jsgraph()->SmiConstant(p.index()); in ReduceJSCreateLiteralObject() 1930 Node* literal_flags = jsgraph()->SmiConstant(flags); in ReduceJSCreateLiteralObject()
|
D | wasm-compiler.cc | 1427 jsgraph()->SmiConstant(index)); in CallIndirect()
|
/external/v8/test/cctest/ |
D | types-fuzz.h | 77 SmiConstant = Type::Constant(smi, region); in Types() 149 TypeHandle SmiConstant; variable
|
D | test-types.cc | 1037 CheckSub(T.SmiConstant, T.SignedSmall); in Is2() 1038 CheckSub(T.SmiConstant, T.Signed32); in Is2() 1039 CheckSub(T.SmiConstant, T.Number); in Is2() 1357 CheckOverlap(T.SmiConstant, T.SignedSmall); in Maybe() 1358 CheckOverlap(T.SmiConstant, T.Signed32); in Maybe() 1359 CheckOverlap(T.SmiConstant, T.Number); in Maybe() 1797 T.Intersect(T.AnyArray, T.Union(T.Object, T.SmiConstant)), in Intersect() 1808 T.Intersect(T.NumberFunction1, T.Union(T.Object, T.SmiConstant)), in Intersect() 1819 T.Intersect(T.ArrayClass, T.Union(T.Object, T.SmiConstant)), in Intersect() 1831 T.Intersect(T.SmiConstant, T.Union(T.Number, T.ObjectConstant2)), in Intersect() [all …]
|