HomeSort by relevance Sort by last modified time
    Searched refs:AM2Opc (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAddressingModes.h 413 static inline unsigned getAM2Offset(unsigned AM2Opc) {
414 return AM2Opc & ((1 << 12)-1);
416 static inline AddrOpc getAM2Op(unsigned AM2Opc) {
417 return ((AM2Opc >> 12) & 1) ? sub : add;
419 static inline ShiftOpc getAM2ShiftOpc(unsigned AM2Opc) {
420 return (ShiftOpc)((AM2Opc >> 13) & 7);
422 static inline unsigned getAM2IdxMode(unsigned AM2Opc) {
423 return (AM2Opc >> 16);
  /external/llvm/lib/Target/ARM/
ARMCodeEmitter.cpp     [all...]

Completed in 207 milliseconds