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.cpp2470 auto *T_Carry = I32Reg(), *T_Lo = I32Reg(), *T_Hi = I32Reg(), in lowerInt64Arithmetic() local
2472 _addu(T_Lo, Src0LoR, Src1LoR); in lowerInt64Arithmetic()
2473 _mov(DestLo, T_Lo); in lowerInt64Arithmetic()
2474 _sltu(T_Carry, T_Lo, Src0LoR); in lowerInt64Arithmetic()
2485 auto *T_Lo = I32Reg(), *T_Hi = I32Reg(); in lowerInt64Arithmetic() local
2486 _and(T_Lo, Src0LoR, Src1LoR); in lowerInt64Arithmetic()
2487 _mov(DestLo, T_Lo); in lowerInt64Arithmetic()
2497 auto *T_Borrow = I32Reg(), *T_Lo = I32Reg(), *T_Hi = I32Reg(), in lowerInt64Arithmetic() local
2499 _subu(T_Lo, Src0LoR, Src1LoR); in lowerInt64Arithmetic()
2500 _mov(DestLo, T_Lo); in lowerInt64Arithmetic()
[all …]
DIceTargetLoweringARM32.cpp2591 Variable *T_Lo = makeReg(DestLo->getType()); in lowerInt64Arithmetic() local
2603 _adds(T_Lo, Src0LoR, Src1LoRF); in lowerInt64Arithmetic()
2604 _mov(DestLo, T_Lo); in lowerInt64Arithmetic()
2614 _and(T_Lo, Src0LoR, Src1LoRF); in lowerInt64Arithmetic()
2615 _mov(DestLo, T_Lo); in lowerInt64Arithmetic()
2625 _orr(T_Lo, Src0LoR, Src1LoRF); in lowerInt64Arithmetic()
2626 _mov(DestLo, T_Lo); in lowerInt64Arithmetic()
2636 _eor(T_Lo, Src0LoR, Src1LoRF); in lowerInt64Arithmetic()
2637 _mov(DestLo, T_Lo); in lowerInt64Arithmetic()
2648 _rsbs(T_Lo, Src0LoR, Src1LoRF); in lowerInt64Arithmetic()
[all …]
DIceTargetLoweringX86BaseImpl.h2029 Variable *T_Lo = nullptr, *T_Hi = nullptr;
2035 _mov(T_Lo, Src0Lo);
2036 _add(T_Lo, Src1Lo);
2037 _mov(DestLo, T_Lo);
2043 _mov(T_Lo, Src0Lo);
2044 _and(T_Lo, Src1Lo);
2045 _mov(DestLo, T_Lo);
2051 _mov(T_Lo, Src0Lo);
2052 _or(T_Lo, Src1Lo);
2053 _mov(DestLo, T_Lo);
[all …]