• Home
  • Raw
  • Download

Lines Matching refs:output_rep

115     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()
160 return GetFloat64RepresentationFor(node, output_rep, output_type, in GetRepresentationFor()
164 return GetBitRepresentationFor(node, output_rep, output_type); in GetRepresentationFor()
168 return GetWord32RepresentationFor(node, output_rep, output_type, use_node, in GetRepresentationFor()
172 return GetWord64RepresentationFor(node, output_rep, output_type); in GetRepresentationFor()
185 Node* node, MachineRepresentation output_rep, Type* output_type, in GetTaggedSignedRepresentationFor() argument
203 } else if (IsWord(output_rep)) { in GetTaggedSignedRepresentationFor()
212 return TypeError(node, output_rep, output_type, in GetTaggedSignedRepresentationFor()
219 return TypeError(node, output_rep, output_type, in GetTaggedSignedRepresentationFor()
222 } else if (output_rep == MachineRepresentation::kFloat64) { in GetTaggedSignedRepresentationFor()
235 return TypeError(node, output_rep, output_type, in GetTaggedSignedRepresentationFor()
255 return TypeError(node, output_rep, output_type, in GetTaggedSignedRepresentationFor()
258 } else if (output_rep == MachineRepresentation::kFloat32) { in GetTaggedSignedRepresentationFor()
273 return TypeError(node, output_rep, output_type, in GetTaggedSignedRepresentationFor()
276 } else if (CanBeTaggedPointer(output_rep)) { in GetTaggedSignedRepresentationFor()
282 return TypeError(node, output_rep, output_type, in GetTaggedSignedRepresentationFor()
285 } else if (output_rep == MachineRepresentation::kBit && in GetTaggedSignedRepresentationFor()
292 return TypeError(node, output_rep, output_type, in GetTaggedSignedRepresentationFor()
299 Node* node, MachineRepresentation output_rep, Type* output_type, in GetTaggedPointerRepresentationFor() argument
318 } else if (output_rep == MachineRepresentation::kBit) { in GetTaggedPointerRepresentationFor()
322 return TypeError(node, output_rep, output_type, in GetTaggedPointerRepresentationFor()
325 } else if (IsWord(output_rep)) { in GetTaggedPointerRepresentationFor()
333 return TypeError(node, output_rep, output_type, in GetTaggedPointerRepresentationFor()
337 } else if (output_rep == MachineRepresentation::kFloat32) { in GetTaggedPointerRepresentationFor()
341 } else if (output_rep == MachineRepresentation::kFloat64) { in GetTaggedPointerRepresentationFor()
344 } else if (CanBeTaggedSigned(output_rep) && in GetTaggedPointerRepresentationFor()
353 return TypeError(node, output_rep, output_type, in GetTaggedPointerRepresentationFor()
360 Node* node, MachineRepresentation output_rep, Type* output_type, in GetTaggedRepresentationFor() argument
375 if (output_rep == MachineRepresentation::kTaggedSigned || in GetTaggedRepresentationFor()
376 output_rep == MachineRepresentation::kTaggedPointer) { in GetTaggedRepresentationFor()
386 } else if (output_rep == MachineRepresentation::kBit) { in GetTaggedRepresentationFor()
390 return TypeError(node, output_rep, output_type, in GetTaggedRepresentationFor()
393 } else if (IsWord(output_rep)) { in GetTaggedRepresentationFor()
404 return TypeError(node, output_rep, output_type, in GetTaggedRepresentationFor()
407 } else if (output_rep == in GetTaggedRepresentationFor()
411 } else if (output_rep == MachineRepresentation::kFloat64) { in GetTaggedRepresentationFor()
427 return TypeError(node, output_rep, output_type, in GetTaggedRepresentationFor()
435 Node* node, MachineRepresentation output_rep, Type* output_type, in GetFloat32RepresentationFor() argument
456 } else if (IsWord(output_rep)) { in GetFloat32RepresentationFor()
472 } else if (output_rep == MachineRepresentation::kTagged || in GetFloat32RepresentationFor()
473 output_rep == MachineRepresentation::kTaggedPointer) { in GetFloat32RepresentationFor()
484 } else if (output_rep == MachineRepresentation::kFloat64) { in GetFloat32RepresentationFor()
488 return TypeError(node, output_rep, output_type, in GetFloat32RepresentationFor()
495 Node* node, MachineRepresentation output_rep, Type* output_type, in GetFloat64RepresentationFor() argument
518 } else if (IsWord(output_rep)) { in GetFloat64RepresentationFor()
527 } else if (output_rep == MachineRepresentation::kBit) { in GetFloat64RepresentationFor()
529 } else if (output_rep == MachineRepresentation::kTagged || in GetFloat64RepresentationFor()
530 output_rep == MachineRepresentation::kTaggedSigned || in GetFloat64RepresentationFor()
531 output_rep == MachineRepresentation::kTaggedPointer) { in GetFloat64RepresentationFor()
536 } else if (output_rep == MachineRepresentation::kTaggedSigned) { in GetFloat64RepresentationFor()
552 } else if (output_rep == MachineRepresentation::kFloat32) { in GetFloat64RepresentationFor()
556 return TypeError(node, output_rep, output_type, in GetFloat64RepresentationFor()
567 Node* node, MachineRepresentation output_rep, Type* output_type, in GetWord32RepresentationFor() argument
596 } else if (output_rep == MachineRepresentation::kBit) { in GetWord32RepresentationFor()
598 } else if (output_rep == MachineRepresentation::kFloat64) { in GetWord32RepresentationFor()
612 } else if (output_rep == MachineRepresentation::kFloat32) { in GetWord32RepresentationFor()
627 } else if (output_rep == MachineRepresentation::kTaggedSigned) { in GetWord32RepresentationFor()
637 } else if (output_rep == MachineRepresentation::kTagged || in GetWord32RepresentationFor()
638 output_rep == MachineRepresentation::kTaggedPointer) { in GetWord32RepresentationFor()
657 } else if (output_rep == MachineRepresentation::kWord32) { in GetWord32RepresentationFor()
671 } else if (output_rep == MachineRepresentation::kWord8 || in GetWord32RepresentationFor()
672 output_rep == MachineRepresentation::kWord16) { in GetWord32RepresentationFor()
680 return TypeError(node, output_rep, output_type, in GetWord32RepresentationFor()
702 Node* node, MachineRepresentation output_rep, Type* output_type) { in GetBitRepresentationFor() argument
722 } else if (output_rep == MachineRepresentation::kTagged || in GetBitRepresentationFor()
723 output_rep == MachineRepresentation::kTaggedPointer) { in GetBitRepresentationFor()
730 } else if (output_rep == MachineRepresentation::kTaggedSigned) { in GetBitRepresentationFor()
735 } else if (IsWord(output_rep)) { in GetBitRepresentationFor()
740 } else if (output_rep == MachineRepresentation::kFloat32) { in GetBitRepresentationFor()
744 } else if (output_rep == MachineRepresentation::kFloat64) { in GetBitRepresentationFor()
749 return TypeError(node, output_rep, output_type, in GetBitRepresentationFor()
756 Node* node, MachineRepresentation output_rep, Type* output_type) { in GetWord64RepresentationFor() argument
761 } else if (output_rep == MachineRepresentation::kBit) { in GetWord64RepresentationFor()
765 return TypeError(node, output_rep, output_type, in GetWord64RepresentationFor()
989 MachineRepresentation output_rep, in TypeError() argument
995 out_str << output_rep << " ("; in TypeError()