Home
last modified time | relevance | path

Searched refs:INT32_BITS (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/third_party/subzero/src/
DIceTargetLoweringMIPS32.cpp2573 } else if (ShiftAmount < INT32_BITS) { in lowerInt64Arithmetic()
2575 _srl(T1, Src0LoR, INT32_BITS - ShiftAmount); in lowerInt64Arithmetic()
2579 } else if (ShiftAmount == INT32_BITS) { in lowerInt64Arithmetic()
2582 } else if (ShiftAmount > INT32_BITS && ShiftAmount < 64) { in lowerInt64Arithmetic()
2583 _sll(T_Hi, Src0LoR, ShiftAmount - INT32_BITS); in lowerInt64Arithmetic()
2604 _andi(T5, Src1LoR, INT32_BITS); in lowerInt64Arithmetic()
2626 if (ShiftAmount < INT32_BITS) { in lowerInt64Arithmetic()
2628 _sll(T1, Src0HiR, INT32_BITS - ShiftAmount); in lowerInt64Arithmetic()
2632 } else if (ShiftAmount == INT32_BITS) { in lowerInt64Arithmetic()
2635 } else if (ShiftAmount > INT32_BITS && ShiftAmount < 64) { in lowerInt64Arithmetic()
[all …]
DIceTargetLoweringMIPS32.h849 static constexpr uint32_t INT32_BITS = 32; variable