Lines Matching refs:load_rep

364   LoadRepresentation load_rep = LoadRepresentationOf(node->op());  in VisitLoad()  local
367 switch (load_rep.representation()) { in VisitLoad()
376 opcode = load_rep.IsUnsigned() ? kMips64Lbu : kMips64Lb; in VisitLoad()
379 opcode = load_rep.IsUnsigned() ? kMips64Lhu : kMips64Lh; in VisitLoad()
382 opcode = load_rep.IsUnsigned() ? kMips64Lwu : kMips64Lw; in VisitLoad()
1324 LoadRepresentation load_rep = LoadRepresentationOf(value->op()); in VisitChangeInt32ToInt64() local
1326 switch (load_rep.representation()) { in VisitChangeInt32ToInt64()
1329 opcode = load_rep.IsUnsigned() ? kMips64Lbu : kMips64Lb; in VisitChangeInt32ToInt64()
1332 opcode = load_rep.IsUnsigned() ? kMips64Lhu : kMips64Lh; in VisitChangeInt32ToInt64()
1363 LoadRepresentation load_rep = LoadRepresentationOf(value->op()); in VisitChangeUint32ToUint64() local
1364 if (load_rep.IsUnsigned()) { in VisitChangeUint32ToUint64()
1365 switch (load_rep.representation()) { in VisitChangeUint32ToUint64()
1712 LoadRepresentation load_rep = LoadRepresentationOf(node->op()); in VisitUnalignedLoad() local
1718 switch (load_rep.representation()) { in VisitUnalignedLoad()
1730 opcode = load_rep.IsUnsigned() ? kMips64Ulhu : kMips64Ulh; in VisitUnalignedLoad()
1733 opcode = load_rep.IsUnsigned() ? kMips64Ulwu : kMips64Ulw; in VisitUnalignedLoad()
1932 LoadRepresentation load_rep = LoadRepresentationOf(n->op()); in IsNodeUnsigned() local
1933 return load_rep.IsUnsigned(); in IsNodeUnsigned()
2368 LoadRepresentation load_rep = LoadRepresentationOf(node->op()); in VisitWord32AtomicLoad() local
2373 switch (load_rep.representation()) { in VisitWord32AtomicLoad()
2376 load_rep.IsSigned() ? kWord32AtomicLoadInt8 : kWord32AtomicLoadUint8; in VisitWord32AtomicLoad()
2379 opcode = load_rep.IsSigned() ? kWord32AtomicLoadInt16 in VisitWord32AtomicLoad()