Home
last modified time | relevance | path

Searched refs:T_Lo (Results 1 – 3 of 3) sorted by relevance

/external/swiftshader/third_party/subzero/src/
DIceTargetLoweringMIPS32.cpp2485 auto *T_Carry = I32Reg(), *T_Lo = I32Reg(), *T_Hi = I32Reg(), in lowerInt64Arithmetic() local
2487 _addu(T_Lo, Src0LoR, Src1LoR); in lowerInt64Arithmetic()
2488 _mov(DestLo, T_Lo); in lowerInt64Arithmetic()
2489 _sltu(T_Carry, T_Lo, Src0LoR); in lowerInt64Arithmetic()
2500 auto *T_Lo = I32Reg(), *T_Hi = I32Reg(); in lowerInt64Arithmetic() local
2501 _and(T_Lo, Src0LoR, Src1LoR); in lowerInt64Arithmetic()
2502 _mov(DestLo, T_Lo); in lowerInt64Arithmetic()
2512 auto *T_Borrow = I32Reg(), *T_Lo = I32Reg(), *T_Hi = I32Reg(), in lowerInt64Arithmetic() local
2514 _subu(T_Lo, Src0LoR, Src1LoR); in lowerInt64Arithmetic()
2515 _mov(DestLo, T_Lo); in lowerInt64Arithmetic()
[all …]
DIceTargetLoweringARM32.cpp2597 Variable *T_Lo = makeReg(DestLo->getType()); in lowerInt64Arithmetic() local
2609 _adds(T_Lo, Src0LoR, Src1LoRF); in lowerInt64Arithmetic()
2610 _mov(DestLo, T_Lo); in lowerInt64Arithmetic()
2620 _and(T_Lo, Src0LoR, Src1LoRF); in lowerInt64Arithmetic()
2621 _mov(DestLo, T_Lo); in lowerInt64Arithmetic()
2631 _orr(T_Lo, Src0LoR, Src1LoRF); in lowerInt64Arithmetic()
2632 _mov(DestLo, T_Lo); in lowerInt64Arithmetic()
2642 _eor(T_Lo, Src0LoR, Src1LoRF); in lowerInt64Arithmetic()
2643 _mov(DestLo, T_Lo); in lowerInt64Arithmetic()
2654 _rsbs(T_Lo, Src0LoR, Src1LoRF); in lowerInt64Arithmetic()
[all …]
DIceTargetLoweringX86BaseImpl.h1976 Variable *T_Lo = nullptr, *T_Hi = nullptr;
1982 _mov(T_Lo, Src0Lo);
1983 _add(T_Lo, Src1Lo);
1984 _mov(DestLo, T_Lo);
1990 _mov(T_Lo, Src0Lo);
1991 _and(T_Lo, Src1Lo);
1992 _mov(DestLo, T_Lo);
1998 _mov(T_Lo, Src0Lo);
1999 _or(T_Lo, Src1Lo);
2000 _mov(DestLo, T_Lo);
[all …]