Home | History | Annotate | Download | only in x87

Lines Matching refs:load_rep

173   LoadRepresentation load_rep = LoadRepresentationOf(node->op());
176 switch (load_rep.representation()) {
185 opcode = load_rep.IsSigned() ? kX87Movsxbl : kX87Movzxbl;
188 opcode = load_rep.IsSigned() ? kX87Movsxwl : kX87Movzxwl;
333 CheckedLoadRepresentation load_rep = CheckedLoadRepresentationOf(node->op());
339 switch (load_rep.representation()) {
341 opcode = load_rep.IsSigned() ? kCheckedLoadInt8 : kCheckedLoadUint8;
344 opcode = load_rep.IsSigned() ? kCheckedLoadInt16 : kCheckedLoadUint16;
1790 LoadRepresentation load_rep = LoadRepresentationOf(node->op());
1791 DCHECK(load_rep.representation() == MachineRepresentation::kWord8 ||
1792 load_rep.representation() == MachineRepresentation::kWord16 ||
1793 load_rep.representation() == MachineRepresentation::kWord32);
1794 USE(load_rep);