Home
last modified time | relevance | path

Searched refs:MachineTypeUnion (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/compiler/
Dsimplified-lowering.cc56 MachineTypeUnion use : 15; // Union of all usages for the node.
59 MachineTypeUnion output : 15; // Output type of the node.
116 void Enqueue(Node* node, MachineTypeUnion use = 0) { in Enqueue()
149 Enqueue(node, static_cast<MachineTypeUnion>(use)); in Enqueue()
152 void SetOutput(Node* node, MachineTypeUnion output) { in SetOutput()
167 void ProcessInput(Node* node, int index, MachineTypeUnion use) { in ProcessInput()
175 MachineTypeUnion output = GetInfo(input)->output; in ProcessInput()
230 void VisitBinop(Node* node, MachineTypeUnion input_use, in VisitBinop()
231 MachineTypeUnion output) { in VisitBinop()
239 void VisitUnop(Node* node, MachineTypeUnion input_use, in VisitUnop()
[all …]
Drepresentation-change.h32 static const MachineTypeUnion rWord =
35 Node* GetRepresentationFor(Node* node, MachineTypeUnion output_type, in GetRepresentationFor()
36 MachineTypeUnion use_type) { in GetRepresentationFor()
70 Node* GetTaggedRepresentationFor(Node* node, MachineTypeUnion output_type) { in GetTaggedRepresentationFor()
114 Node* GetFloat64RepresentationFor(Node* node, MachineTypeUnion output_type) { in GetFloat64RepresentationFor()
150 Node* GetWord32RepresentationFor(Node* node, MachineTypeUnion output_type, in GetWord32RepresentationFor()
192 Node* GetBitRepresentationFor(Node* node, MachineTypeUnion output_type) { in GetBitRepresentationFor()
224 Node* GetWord64RepresentationFor(Node* node, MachineTypeUnion output_type) { in GetWord64RepresentationFor()
332 Node* TypeError(Node* node, MachineTypeUnion output_type, in TypeError()
333 MachineTypeUnion use) { in TypeError()
Dmachine-type.h59 typedef uint16_t MachineTypeUnion; typedef
62 const MachineTypeUnion kRepMask = kRepBit | kRepWord8 | kRepWord16 |
65 const MachineTypeUnion kTypeMask = kTypeBool | kTypeInt32 | kTypeUint32 |
/external/v8/test/cctest/compiler/
Dtest-representation-change.cc71 void CheckTypeError(MachineTypeUnion from, MachineTypeUnion to) { in CheckTypeError()
80 void CheckNop(MachineTypeUnion from, MachineTypeUnion to) { in CheckNop()
167 static void CheckChange(IrOpcode::Value expected, MachineTypeUnion from, in CheckChange()
168 MachineTypeUnion to) { in CheckChange()