Home
last modified time | relevance | path

Searched refs:AM3Opc (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/Target/ARM/MCTargetDesc/
DARMAddressingModes.h447 static inline unsigned char getAM3Offset(unsigned AM3Opc) { in getAM3Offset() argument
448 return AM3Opc & 0xFF; in getAM3Offset()
450 static inline AddrOpc getAM3Op(unsigned AM3Opc) { in getAM3Op() argument
451 return ((AM3Opc >> 8) & 1) ? sub : add; in getAM3Op()
453 static inline unsigned getAM3IdxMode(unsigned AM3Opc) { in getAM3IdxMode() argument
454 return (AM3Opc >> 9); in getAM3IdxMode()
/external/llvm/lib/Target/ARM/
DARMCodeEmitter.cpp1323 unsigned AM3Opc = (ImplicitRn == ARM::PC) in emitMiscLoadStoreInstruction() local
1327 Binary |= ((ARM_AM::getAM3Op(AM3Opc) == ARM_AM::add ? 1 : 0) << in emitMiscLoadStoreInstruction()
1340 if (unsigned ImmOffs = ARM_AM::getAM3Offset(AM3Opc)) { in emitMiscLoadStoreInstruction()