HomeSort by relevance Sort by last modified time
    Searched refs:RotateAmt (Results 1 - 6 of 6) sorted by null

  /external/swiftshader/third_party/subzero/src/
IceInstARM32.cpp 367 uint32_t Imm, uint32_t RotateAmt)
368 : OperandARM32Flex(kFlexImm, Ty), Imm(Imm), RotateAmt(RotateAmt) {
373 bool OperandARM32FlexImm::canHoldImm(uint32_t Immediate, uint32_t *RotateAmt,
377 *RotateAmt = 0;
385 *RotateAmt = Rot;
    [all...]
IceInstARM32.h 220 /// Immed_8 rotated by an even number of bits (2 * RotateAmt).
222 uint32_t RotateAmt);
233 /// the out-params RotateAmt and Immed_8 if Immediate fits.
234 static bool canHoldImm(uint32_t Immediate, uint32_t *RotateAmt,
238 uint32_t getRotateAmt() const { return RotateAmt; }
241 OperandARM32FlexImm(Cfg *Func, Type Ty, uint32_t Imm, uint32_t RotateAmt);
244 uint32_t RotateAmt;
    [all...]
IceAssemblerARM32.cpp 326 IValueT encodeRotatedImm8(IValueT RotateAmt, IValueT Immed8) {
327 assert(RotateAmt < (1 << kRotateBits));
329 return (RotateAmt << kRotateShift) | (Immed8 << kImmed8Shift);
854 IValueT RotateAmt;
856 if (!OperandARM32FlexImm::canHoldImm(Src1Value, &RotateAmt, &Imm8))
859 Src1Value = encodeRotatedImm8(RotateAmt, Imm8);
    [all...]
IceTargetLoweringARM32.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 75 milliseconds