Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/
H A DEmulateInstructionARM64.h112 enum ShiftType { ShiftType_LSL, ShiftType_LSR, ShiftType_ASR, ShiftType_ROR }; enum
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64FastISel.cpp213 unsigned RHSReg, AArch64_AM::ShiftExtendType ShiftType,
245 AArch64_AM::ShiftExtendType ShiftType, uint64_t ShiftImm,
1270 case Instruction::Shl: ShiftType = AArch64_AM::LSL; break; in emitAddSub()
1271 case Instruction::LShr: ShiftType = AArch64_AM::LSR; break; in emitAddSub()
1272 case Instruction::AShr: ShiftType = AArch64_AM::ASR; break; in emitAddSub()
1275 if (ShiftType != AArch64_AM::InvalidShiftExtend) { in emitAddSub()
1279 ResultReg = emitAddSub_rs(UseAdd, RetVT, LHSReg, RHSReg, ShiftType, in emitAddSub()
1382 AArch64_AM::ShiftExtendType ShiftType, in emitAddSub_rs() argument
1418 .addImm(getShifterImm(ShiftType, ShiftImm)); in emitAddSub_rs()
1575 AArch64_AM::ShiftExtendType ShiftType, in emitSubs_rs() argument
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp462 bool parseMemRegOffsetShift(ARM_AM::ShiftOpc &ShiftType,
865 ARM_AM::ShiftOpc ShiftType; // Shift type for OffsetReg member
1612 if (Memory.ShiftType != ARM_AM::no_shift) return false; in isAddrMode3()
1705 if (Memory.ShiftType == ARM_AM::no_shift) in isT2MemRegOffset()
1707 if (Memory.ShiftType != ARM_AM::lsl || Memory.ShiftImm > 3) in isT2MemRegOffset()
1882 if (shift == 0 && Memory.ShiftType != ARM_AM::no_shift) in isMemRegRQOffset()
3206 Memory.ShiftImm, Memory.ShiftType); in addMemRegOffsetOperands()
3807 Op->Memory.ShiftType = ShiftType; in CreateMem()
3950 if (Memory.ShiftType != ARM_AM::no_shift) { in print()
5849 ARM_AM::ShiftOpc ShiftType = ARM_AM::no_shift; in parseMemory() local
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp2176 Type *ShiftType = Shl->getType(); in foldICmpShlOne() local
2194 return new ICmpInst(Pred, Y, ConstantInt::get(ShiftType, CLog2)); in foldICmpShlOne()
2196 Constant *BitWidthMinusOne = ConstantInt::get(ShiftType, TypeBits - 1); in foldICmpShlOne()