Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/
HDEmulateInstructionARM64.h113 enum ShiftType { ShiftType_LSL, ShiftType_LSR, ShiftType_ASR, ShiftType_ROR }; enum
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
HDAArch64FastISel.cpp212 AArch64_AM::ShiftExtendType ShiftType,
246 AArch64_AM::ShiftExtendType ShiftType, uint64_t ShiftImm,
1279 AArch64_AM::ShiftExtendType ShiftType = AArch64_AM::InvalidShiftExtend; in emitAddSub() local
1282 case Instruction::Shl: ShiftType = AArch64_AM::LSL; break; in emitAddSub()
1283 case Instruction::LShr: ShiftType = AArch64_AM::LSR; break; in emitAddSub()
1284 case Instruction::AShr: ShiftType = AArch64_AM::ASR; break; in emitAddSub()
1287 if (ShiftType != AArch64_AM::InvalidShiftExtend) { in emitAddSub()
1293 RHSIsKill, ShiftType, ShiftVal, SetFlags, in emitAddSub()
1400 AArch64_AM::ShiftExtendType ShiftType, in emitAddSub_rs() argument
1436 .addImm(getShifterImm(ShiftType, ShiftImm)); in emitAddSub_rs()
[all …]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/AsmParser/
HDARMAsmParser.cpp401 bool parseMemRegOffsetShift(ARM_AM::ShiftOpc &ShiftType,
786 ARM_AM::ShiftOpc ShiftType; // Shift type for OffsetReg member
1540 if (Memory.ShiftType != ARM_AM::no_shift) return false; in isAddrMode3()
1600 Memory.ShiftType != ARM_AM::no_shift || Memory.Alignment != 0) in isMemTBB()
1607 Memory.ShiftType != ARM_AM::lsl || Memory.ShiftImm != 1 || in isMemTBH()
1624 if (Memory.ShiftType == ARM_AM::no_shift) in isT2MemRegOffset()
1626 if (Memory.ShiftType != ARM_AM::lsl || Memory.ShiftImm > 3) in isT2MemRegOffset()
1635 Memory.ShiftType != ARM_AM::no_shift || Memory.Alignment != 0) in isMemThumbRR()
1772 if (shift == 0 && Memory.ShiftType != ARM_AM::no_shift) in isMemRegRQOffset()
1776 (Memory.ShiftType != ARM_AM::uxtw || Memory.ShiftImm != shift)) in isMemRegRQOffset()
[all …]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
HDInstCombineCompares.cpp1967 Type *ShiftType = Shl->getType(); in foldICmpShlOne() local
1993 return new ICmpInst(Pred, Y, ConstantInt::get(ShiftType, CLog2)); in foldICmpShlOne()
1995 Constant *BitWidthMinusOne = ConstantInt::get(ShiftType, TypeBits - 1); in foldICmpShlOne()
2016 return new ICmpInst(Pred, Y, ConstantInt::get(ShiftType, C.logBase2())); in foldICmpShlOne()