Home | History | Annotate | Download | only in src

Lines Matching refs:new_rep

83   Representation new_rep = RepresentationFromInputs();
84 UpdateRepresentation(new_rep, h_infer, "inputs");
85 new_rep = RepresentationFromUses();
86 UpdateRepresentation(new_rep, h_infer, "uses");
126 void HValue::UpdateRepresentation(Representation new_rep,
130 if (new_rep.is_more_general_than(r)) {
131 if (CheckFlag(kCannotBeTagged) && new_rep.IsTagged()) return;
134 id(), Mnemonic(), r.Mnemonic(), new_rep.Mnemonic(), reason);
136 ChangeRepresentation(new_rep);
2569 Representation new_rep = RepresentationFromInputs();
2570 UpdateRepresentation(new_rep, h_infer, "inputs");
2572 new_rep = RepresentationFromUses();
2573 UpdateRepresentation(new_rep, h_infer, "uses");
2575 new_rep = RepresentationFromOutput();
2576 UpdateRepresentation(new_rep, h_infer, "output");
2635 Representation new_rep = RepresentationFromInputs();
2636 UpdateRepresentation(new_rep, h_infer, "inputs");
3930 Representation new_rep = RepresentationFromInputs();
3931 UpdateRepresentation(new_rep, h_infer, "inputs");
3932 new_rep = RepresentationFromUses();
3933 UpdateRepresentation(new_rep, h_infer, "uses");
3934 new_rep = RepresentationFromUseRequirements();
3935 UpdateRepresentation(new_rep, h_infer, "use requirements");