Lines Matching refs:load_rep

217 ArchOpcode GetLoadOpcode(LoadRepresentation load_rep) {  in GetLoadOpcode()  argument
219 switch (load_rep.representation()) { in GetLoadOpcode()
228 opcode = load_rep.IsSigned() ? kX64Movsxbl : kX64Movzxbl; in GetLoadOpcode()
231 opcode = load_rep.IsSigned() ? kX64Movsxwl : kX64Movzxwl; in GetLoadOpcode()
307 LoadRepresentation load_rep = LoadRepresentationOf(node->op()); in VisitLoad() local
310 ArchOpcode opcode = GetLoadOpcode(load_rep); in VisitLoad()
1116 LoadRepresentation load_rep = LoadRepresentationOf(value->op()); in VisitChangeInt32ToInt64() local
1117 MachineRepresentation rep = load_rep.representation(); in VisitChangeInt32ToInt64()
1122 opcode = load_rep.IsSigned() ? kX64Movsxbq : kX64Movzxbq; in VisitChangeInt32ToInt64()
1125 opcode = load_rep.IsSigned() ? kX64Movsxwq : kX64Movzxwq; in VisitChangeInt32ToInt64()
1128 opcode = load_rep.IsSigned() ? kX64Movsxlq : kX64Movl; in VisitChangeInt32ToInt64()
1189 LoadRepresentation load_rep = LoadRepresentationOf(node->op()); in ZeroExtendsWord32ToWord64() local
1190 switch (load_rep.representation()) { in ZeroExtendsWord32ToWord64()
2253 LoadRepresentation load_rep = LoadRepresentationOf(node->op()); in VisitWord32AtomicLoad() local
2254 DCHECK(load_rep.representation() == MachineRepresentation::kWord8 || in VisitWord32AtomicLoad()
2255 load_rep.representation() == MachineRepresentation::kWord16 || in VisitWord32AtomicLoad()
2256 load_rep.representation() == MachineRepresentation::kWord32); in VisitWord32AtomicLoad()
2257 USE(load_rep); in VisitWord32AtomicLoad()
2262 LoadRepresentation load_rep = LoadRepresentationOf(node->op()); in VisitWord64AtomicLoad() local
2263 USE(load_rep); in VisitWord64AtomicLoad()