Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64FastISel.cpp211 unsigned RHSReg, AArch64_AM::ShiftExtendType ShiftType,
243 AArch64_AM::ShiftExtendType ShiftType, uint64_t ShiftImm,
1249 AArch64_AM::ShiftExtendType ShiftType = AArch64_AM::InvalidShiftExtend; in emitAddSub() local
1252 case Instruction::Shl: ShiftType = AArch64_AM::LSL; break; in emitAddSub()
1253 case Instruction::LShr: ShiftType = AArch64_AM::LSR; break; in emitAddSub()
1254 case Instruction::AShr: ShiftType = AArch64_AM::ASR; break; in emitAddSub()
1257 if (ShiftType != AArch64_AM::InvalidShiftExtend) { in emitAddSub()
1261 ResultReg = emitAddSub_rs(UseAdd, RetVT, LHSReg, RHSReg, ShiftType, in emitAddSub()
1364 AArch64_AM::ShiftExtendType ShiftType, in emitAddSub_rs() argument
1400 .addImm(getShifterImm(ShiftType, ShiftImm)); in emitAddSub_rs()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp459 bool parseMemRegOffsetShift(ARM_AM::ShiftOpc &ShiftType,
852 ARM_AM::ShiftOpc ShiftType; // Shift type for OffsetReg member
1615 if (Memory.ShiftType != ARM_AM::no_shift) return false; in isAddrMode3()
1684 Memory.ShiftType != ARM_AM::no_shift || Memory.Alignment != 0) in isMemTBB()
1691 Memory.ShiftType != ARM_AM::lsl || Memory.ShiftImm != 1 || in isMemTBH()
1708 if (Memory.ShiftType == ARM_AM::no_shift) in isT2MemRegOffset()
1710 if (Memory.ShiftType != ARM_AM::lsl || Memory.ShiftImm > 3) in isT2MemRegOffset()
1719 Memory.ShiftType != ARM_AM::no_shift || Memory.Alignment != 0) in isMemThumbRR()
1885 if (shift == 0 && Memory.ShiftType != ARM_AM::no_shift) in isMemRegRQOffset()
1889 (Memory.ShiftType != ARM_AM::uxtw || Memory.ShiftImm != shift)) in isMemRegRQOffset()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp1991 Type *ShiftType = Shl->getType(); in foldICmpShlOne() local
2017 return new ICmpInst(Pred, Y, ConstantInt::get(ShiftType, CLog2)); in foldICmpShlOne()
2019 Constant *BitWidthMinusOne = ConstantInt::get(ShiftType, TypeBits - 1); in foldICmpShlOne()
2040 return new ICmpInst(Pred, Y, ConstantInt::get(ShiftType, C.logBase2())); in foldICmpShlOne()