Searched defs:ShiftOpc (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAddressingModes.h27 enum ShiftOpc { enum in namespace:llvm::ARM_AM
45 static inline const char *getShiftOpcStr(ShiftOpc Op) {
56 static inline unsigned getShiftOpcEncoding(ShiftOpc Op) {
112 static inline unsigned getSORegOpc(ShiftOpc ShOp, unsigned Imm) {
118 static inline ShiftOpc getSORegShOp(unsigned Op) {
119 return (ShiftOpc)(Op & 7);
407 static inline unsigned getAM2Opc(AddrOpc Opc, unsigned Imm12, ShiftOpc SO,
419 static inline ShiftOpc getAM2ShiftOpc(unsigned AM2Opc) {
420 return (ShiftOpc)((AM2Opc >> 13) & 7);
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp5043 unsigned ShiftOpc = Shift.getOpcode(); local
5044 if ((ShiftOpc != AArch64ISD::VSHL && ShiftOpc != AArch64ISD::VLSHR))
5046 bool IsShiftRight = ShiftOpc == AArch64ISD::VLSHR;

Completed in 87 milliseconds