• Home
  • Raw
  • Download

Lines Matching refs:output_rep

138     Node* node, MachineRepresentation output_rep, Type output_type,  in GetRepresentationFor()  argument
140 if (output_rep == MachineRepresentation::kNone && !output_type.IsNone()) { in GetRepresentationFor()
143 return TypeError(node, output_rep, output_type, use_info.representation()); in GetRepresentationFor()
148 output_rep != MachineRepresentation::kWord32) { in GetRepresentationFor()
149 if (use_info.representation() == output_rep) { in GetRepresentationFor()
153 if (IsWord(use_info.representation()) && IsWord(output_rep)) { in GetRepresentationFor()
166 return GetTaggedSignedRepresentationFor(node, output_rep, output_type, in GetRepresentationFor()
171 return GetTaggedPointerRepresentationFor(node, output_rep, output_type, in GetRepresentationFor()
175 return GetTaggedRepresentationFor(node, output_rep, output_type, in GetRepresentationFor()
179 return GetFloat32RepresentationFor(node, output_rep, output_type, in GetRepresentationFor()
182 return GetFloat64RepresentationFor(node, output_rep, output_type, in GetRepresentationFor()
186 return GetBitRepresentationFor(node, output_rep, output_type); in GetRepresentationFor()
190 return GetWord32RepresentationFor(node, output_rep, output_type, use_node, in GetRepresentationFor()
194 return GetWord64RepresentationFor(node, output_rep, output_type); in GetRepresentationFor()
203 Node* node, MachineRepresentation output_rep, Type output_type, in GetTaggedSignedRepresentationFor() argument
222 } else if (IsWord(output_rep)) { in GetTaggedSignedRepresentationFor()
231 return TypeError(node, output_rep, output_type, in GetTaggedSignedRepresentationFor()
238 return TypeError(node, output_rep, output_type, in GetTaggedSignedRepresentationFor()
241 } else if (output_rep == MachineRepresentation::kFloat64) { in GetTaggedSignedRepresentationFor()
254 return TypeError(node, output_rep, output_type, in GetTaggedSignedRepresentationFor()
275 return TypeError(node, output_rep, output_type, in GetTaggedSignedRepresentationFor()
278 } else if (output_rep == MachineRepresentation::kFloat32) { in GetTaggedSignedRepresentationFor()
294 return TypeError(node, output_rep, output_type, in GetTaggedSignedRepresentationFor()
297 } else if (CanBeTaggedPointer(output_rep)) { in GetTaggedSignedRepresentationFor()
303 return TypeError(node, output_rep, output_type, in GetTaggedSignedRepresentationFor()
306 } else if (output_rep == MachineRepresentation::kBit) { in GetTaggedSignedRepresentationFor()
313 return TypeError(node, output_rep, output_type, in GetTaggedSignedRepresentationFor()
317 return TypeError(node, output_rep, output_type, in GetTaggedSignedRepresentationFor()
324 Node* node, MachineRepresentation output_rep, Type output_type, in GetTaggedPointerRepresentationFor() argument
344 } else if (output_rep == MachineRepresentation::kBit) { in GetTaggedPointerRepresentationFor()
348 return TypeError(node, output_rep, output_type, in GetTaggedPointerRepresentationFor()
351 } else if (IsWord(output_rep)) { in GetTaggedPointerRepresentationFor()
359 return TypeError(node, output_rep, output_type, in GetTaggedPointerRepresentationFor()
363 } else if (output_rep == MachineRepresentation::kFloat32) { in GetTaggedPointerRepresentationFor()
369 return TypeError(node, output_rep, output_type, in GetTaggedPointerRepresentationFor()
372 } else if (output_rep == MachineRepresentation::kFloat64) { in GetTaggedPointerRepresentationFor()
377 return TypeError(node, output_rep, output_type, in GetTaggedPointerRepresentationFor()
380 } else if (CanBeTaggedSigned(output_rep) && in GetTaggedPointerRepresentationFor()
389 return TypeError(node, output_rep, output_type, in GetTaggedPointerRepresentationFor()
396 Node* node, MachineRepresentation output_rep, Type output_type, in GetTaggedRepresentationFor() argument
411 if (output_rep == MachineRepresentation::kTaggedSigned || in GetTaggedRepresentationFor()
412 output_rep == MachineRepresentation::kTaggedPointer) { in GetTaggedRepresentationFor()
422 } else if (output_rep == MachineRepresentation::kBit) { in GetTaggedRepresentationFor()
426 return TypeError(node, output_rep, output_type, in GetTaggedRepresentationFor()
429 } else if (IsWord(output_rep)) { in GetTaggedRepresentationFor()
440 return TypeError(node, output_rep, output_type, in GetTaggedRepresentationFor()
443 } else if (output_rep == in GetTaggedRepresentationFor()
450 } else if (output_rep == MachineRepresentation::kFloat64) { in GetTaggedRepresentationFor()
468 return TypeError(node, output_rep, output_type, in GetTaggedRepresentationFor()
472 return TypeError(node, output_rep, output_type, in GetTaggedRepresentationFor()
479 Node* node, MachineRepresentation output_rep, Type output_type, in GetFloat32RepresentationFor() argument
500 } else if (IsWord(output_rep)) { in GetFloat32RepresentationFor()
516 } else if (IsAnyTagged(output_rep)) { in GetFloat32RepresentationFor()
527 } else if (output_rep == MachineRepresentation::kFloat64) { in GetFloat32RepresentationFor()
531 return TypeError(node, output_rep, output_type, in GetFloat32RepresentationFor()
538 Node* node, MachineRepresentation output_rep, Type output_type, in GetFloat64RepresentationFor() argument
561 } else if (IsWord(output_rep)) { in GetFloat64RepresentationFor()
570 } else if (output_rep == MachineRepresentation::kBit) { in GetFloat64RepresentationFor()
572 } else if (output_rep == MachineRepresentation::kTagged || in GetFloat64RepresentationFor()
573 output_rep == MachineRepresentation::kTaggedSigned || in GetFloat64RepresentationFor()
574 output_rep == MachineRepresentation::kTaggedPointer) { in GetFloat64RepresentationFor()
579 } else if (output_rep == MachineRepresentation::kTaggedSigned) { in GetFloat64RepresentationFor()
596 } else if (output_rep == MachineRepresentation::kFloat32) { in GetFloat64RepresentationFor()
600 return TypeError(node, output_rep, output_type, in GetFloat64RepresentationFor()
621 Node* node, MachineRepresentation output_rep, Type output_type, in GetWord32RepresentationFor() argument
650 } else if (output_rep == MachineRepresentation::kBit) { in GetWord32RepresentationFor()
662 } else if (output_rep == MachineRepresentation::kFloat64) { in GetWord32RepresentationFor()
677 return TypeError(node, output_rep, output_type, in GetWord32RepresentationFor()
680 } else if (output_rep == MachineRepresentation::kFloat32) { in GetWord32RepresentationFor()
696 return TypeError(node, output_rep, output_type, in GetWord32RepresentationFor()
699 } else if (IsAnyTagged(output_rep)) { in GetWord32RepresentationFor()
700 if (output_rep == MachineRepresentation::kTaggedSigned && in GetWord32RepresentationFor()
725 return TypeError(node, output_rep, output_type, in GetWord32RepresentationFor()
729 return TypeError(node, output_rep, output_type, in GetWord32RepresentationFor()
732 } else if (output_rep == MachineRepresentation::kWord32) { in GetWord32RepresentationFor()
742 return TypeError(node, output_rep, output_type, in GetWord32RepresentationFor()
749 } else if (output_rep == MachineRepresentation::kWord8 || in GetWord32RepresentationFor()
750 output_rep == MachineRepresentation::kWord16) { in GetWord32RepresentationFor()
758 return TypeError(node, output_rep, output_type, in GetWord32RepresentationFor()
779 Node* node, MachineRepresentation output_rep, Type output_type) { in GetBitRepresentationFor() argument
800 } else if (output_rep == MachineRepresentation::kTagged || in GetBitRepresentationFor()
801 output_rep == MachineRepresentation::kTaggedPointer) { in GetBitRepresentationFor()
806 if (output_rep == MachineRepresentation::kTagged && in GetBitRepresentationFor()
815 } else if (output_rep == MachineRepresentation::kTaggedSigned) { in GetBitRepresentationFor()
820 } else if (IsWord(output_rep)) { in GetBitRepresentationFor()
825 } else if (output_rep == MachineRepresentation::kFloat32) { in GetBitRepresentationFor()
829 } else if (output_rep == MachineRepresentation::kFloat64) { in GetBitRepresentationFor()
834 return TypeError(node, output_rep, output_type, in GetBitRepresentationFor()
841 Node* node, MachineRepresentation output_rep, Type output_type) { in GetWord64RepresentationFor() argument
846 } else if (output_rep == MachineRepresentation::kBit) { in GetWord64RepresentationFor()
850 return TypeError(node, output_rep, output_type, in GetWord64RepresentationFor()
1071 MachineRepresentation output_rep, in TypeError() argument
1077 out_str << output_rep << " ("; in TypeError()