Home
last modified time | relevance | path

Searched refs:output_rep (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/compiler/
Drepresentation-change.cc115 Node* node, MachineRepresentation output_rep, Type* output_type, in GetRepresentationFor() argument
117 if (output_rep == MachineRepresentation::kNone && in GetRepresentationFor()
121 return TypeError(node, output_rep, output_type, use_info.representation()); in GetRepresentationFor()
126 output_rep != MachineRepresentation::kWord32) { in GetRepresentationFor()
127 if (use_info.representation() == output_rep) { in GetRepresentationFor()
131 if (IsWord(use_info.representation()) && IsWord(output_rep)) { in GetRepresentationFor()
144 return GetTaggedSignedRepresentationFor(node, output_rep, output_type, in GetRepresentationFor()
149 return GetTaggedPointerRepresentationFor(node, output_rep, output_type, in GetRepresentationFor()
153 return GetTaggedRepresentationFor(node, output_rep, output_type, in GetRepresentationFor()
157 return GetFloat32RepresentationFor(node, output_rep, output_type, in GetRepresentationFor()
[all …]
Drepresentation-change.h236 Node* GetRepresentationFor(Node* node, MachineRepresentation output_rep,
266 MachineRepresentation output_rep,
270 MachineRepresentation output_rep,
273 Node* GetTaggedRepresentationFor(Node* node, MachineRepresentation output_rep,
276 MachineRepresentation output_rep,
279 MachineRepresentation output_rep,
282 Node* GetWord32RepresentationFor(Node* node, MachineRepresentation output_rep,
285 Node* GetBitRepresentationFor(Node* node, MachineRepresentation output_rep,
287 Node* GetWord64RepresentationFor(Node* node, MachineRepresentation output_rep,
289 Node* TypeError(Node* node, MachineRepresentation output_rep,
Dsimplified-lowering.cc2999 MachineRepresentation output_rep, in DoLoadBuffer() argument
3002 DCHECK_NE(MachineRepresentation::kNone, output_rep); in DoLoadBuffer()
3004 if (output_rep != access_type.representation()) { in DoLoadBuffer()
3026 UseInfo(output_rep, Truncation::None())); in DoLoadBuffer()
3031 if (output_rep == MachineRepresentation::kTagged) { in DoLoadBuffer()
3033 } else if (output_rep == MachineRepresentation::kFloat64) { in DoLoadBuffer()
3036 } else if (output_rep == MachineRepresentation::kFloat32) { in DoLoadBuffer()
3054 NodeProperties::ChangeOp(node, common()->Phi(output_rep, 2)); in DoLoadBuffer()