Home
last modified time | relevance | path

Searched refs:load_rep (Results 1 – 9 of 9) sorted by relevance

/external/v8/src/compiler/x64/
Dinstruction-selector-x64.cc217 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()
[all …]
/external/v8/src/compiler/mips64/
Dinstruction-selector-mips64.cc364 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
[all …]
/external/v8/src/compiler/s390/
Dinstruction-selector-s390.cc286 LoadRepresentation load_rep = LoadRepresentationOf(node->op()); in SelectLoadOpcode() local
288 switch (load_rep.representation()) { in SelectLoadOpcode()
297 opcode = load_rep.IsSigned() ? kS390_LoadWordS8 : kS390_LoadWordU8; in SelectLoadOpcode()
300 opcode = load_rep.IsSigned() ? kS390_LoadWordS16 : kS390_LoadWordU16; in SelectLoadOpcode()
398 LoadRepresentation load_rep = LoadRepresentationOf(node->op()); in ProduceWord32Result()
399 switch (load_rep.representation()) { in ProduceWord32Result()
403 if (load_rep.IsSigned()) in ProduceWord32Result()
1163 LoadRepresentation load_rep = LoadRepresentationOf(input.node()->op()); in VisitWord32ReverseBytes() local
1164 if (load_rep.representation() == MachineRepresentation::kWord32) { in VisitWord32ReverseBytes()
1947 LoadRepresentation load_rep = LoadRepresentationOf(value->op()); in VisitWordCompareZero() local
[all …]
/external/v8/src/compiler/arm64/
Dinstruction-selector-arm64.cc606 LoadRepresentation load_rep = LoadRepresentationOf(node->op()); in VisitLoad() local
607 MachineRepresentation rep = load_rep.representation(); in VisitLoad()
619 opcode = load_rep.IsSigned() ? kArm64Ldrsb : kArm64Ldrb; in VisitLoad()
623 opcode = load_rep.IsSigned() ? kArm64Ldrsh : kArm64Ldrh; in VisitLoad()
1579 LoadRepresentation load_rep = LoadRepresentationOf(value->op()); in VisitChangeInt32ToInt64() local
1580 MachineRepresentation rep = load_rep.representation(); in VisitChangeInt32ToInt64()
1586 opcode = load_rep.IsSigned() ? kArm64Ldrsb : kArm64Ldrb; in VisitChangeInt32ToInt64()
1590 opcode = load_rep.IsSigned() ? kArm64Ldrsh : kArm64Ldrh; in VisitChangeInt32ToInt64()
1644 LoadRepresentation load_rep = LoadRepresentationOf(value->op()); in VisitChangeUint32ToUint64() local
1645 switch (load_rep.representation()) { in VisitChangeUint32ToUint64()
[all …]
/external/v8/src/compiler/mips/
Dinstruction-selector-mips.cc249 LoadRepresentation load_rep = LoadRepresentationOf(node->op()); in VisitLoad() local
255 switch (load_rep.representation()) { in VisitLoad()
264 opcode = load_rep.IsUnsigned() ? kMipsLbu : kMipsLb; in VisitLoad()
267 opcode = load_rep.IsUnsigned() ? kMipsLhu : kMipsLh; in VisitLoad()
1223 LoadRepresentation load_rep = LoadRepresentationOf(node->op()); in VisitUnalignedLoad() local
1229 switch (load_rep.representation()) { in VisitUnalignedLoad()
1235 opcode = load_rep.IsUnsigned() ? kMipsUlhu : kMipsUlh; in VisitUnalignedLoad()
1705 LoadRepresentation load_rep = LoadRepresentationOf(node->op()); in VisitWord32AtomicLoad() local
1710 switch (load_rep.representation()) { in VisitWord32AtomicLoad()
1713 load_rep.IsSigned() ? kWord32AtomicLoadInt8 : kWord32AtomicLoadUint8; in VisitWord32AtomicLoad()
[all …]
/external/v8/src/compiler/arm/
Dinstruction-selector-arm.cc463 LoadRepresentation load_rep = LoadRepresentationOf(node->op()); in VisitLoad() local
469 switch (load_rep.representation()) { in VisitLoad()
478 opcode = load_rep.IsUnsigned() ? kArmLdrb : kArmLdrsb; in VisitLoad()
481 opcode = load_rep.IsUnsigned() ? kArmLdrh : kArmLdrsh; in VisitLoad()
605 MachineRepresentation load_rep = in VisitUnalignedLoad() local
616 switch (load_rep) { in VisitUnalignedLoad()
650 InstructionCode op = load_rep == MachineRepresentation::kFloat64 in VisitUnalignedLoad()
656 DCHECK_NE(MachineRepresentation::kSimd128, load_rep); in VisitUnalignedLoad()
2082 LoadRepresentation load_rep = LoadRepresentationOf(node->op()); in VisitWord32AtomicLoad() local
2087 switch (load_rep.representation()) { in VisitWord32AtomicLoad()
[all …]
/external/v8/src/compiler/ppc/
Dinstruction-selector-ppc.cc187 LoadRepresentation load_rep = LoadRepresentationOf(node->op()); in VisitLoad() local
193 switch (load_rep.representation()) { in VisitLoad()
202 opcode = load_rep.IsSigned() ? kPPC_LoadWordS8 : kPPC_LoadWordU8; in VisitLoad()
205 opcode = load_rep.IsSigned() ? kPPC_LoadWordS16 : kPPC_LoadWordU16; in VisitLoad()
1927 LoadRepresentation load_rep = LoadRepresentationOf(node->op()); in VisitWord32AtomicLoad() local
1932 switch (load_rep.representation()) { in VisitWord32AtomicLoad()
1935 load_rep.IsSigned() ? kWord32AtomicLoadInt8 : kWord32AtomicLoadUint8; in VisitWord32AtomicLoad()
1938 opcode = load_rep.IsSigned() ? kWord32AtomicLoadInt16 in VisitWord32AtomicLoad()
/external/v8/src/compiler/ia32/
Dinstruction-selector-ia32.cc278 LoadRepresentation load_rep = LoadRepresentationOf(node->op()); in VisitLoad() local
281 switch (load_rep.representation()) { in VisitLoad()
290 opcode = load_rep.IsSigned() ? kIA32Movsxbl : kIA32Movzxbl; in VisitLoad()
293 opcode = load_rep.IsSigned() ? kIA32Movsxwl : kIA32Movzxwl; in VisitLoad()
1643 LoadRepresentation load_rep = LoadRepresentationOf(node->op()); in VisitWord32AtomicLoad() local
1644 DCHECK(load_rep.representation() == MachineRepresentation::kWord8 || in VisitWord32AtomicLoad()
1645 load_rep.representation() == MachineRepresentation::kWord16 || in VisitWord32AtomicLoad()
1646 load_rep.representation() == MachineRepresentation::kWord32); in VisitWord32AtomicLoad()
1647 USE(load_rep); in VisitWord32AtomicLoad()
/external/v8/src/compiler/
Dwasm-compiler.cc4676 MachineType load_rep = in BuildWasmInterpreterEntry() local
4679 graph()->NewNode(mcgraph()->machine()->Load(load_rep), arg_buffer, in BuildWasmInterpreterEntry()