Lines Matching defs:Rm

75 void ARMAssemblerProxy::MLA(int cc, int s, int Rd, int Rm, int Rs, int Rn) {
76 mTarget->MLA(cc, s, Rd, Rm, Rs, Rn);
78 void ARMAssemblerProxy::MUL(int cc, int s, int Rd, int Rm, int Rs) {
79 mTarget->MUL(cc, s, Rd, Rm, Rs);
82 int RdLo, int RdHi, int Rm, int Rs) {
83 mTarget->UMULL(cc, s, RdLo, RdHi, Rm, Rs);
86 int RdLo, int RdHi, int Rm, int Rs) {
87 mTarget->UMUAL(cc, s, RdLo, RdHi, Rm, Rs);
90 int RdLo, int RdHi, int Rm, int Rs) {
91 mTarget->SMULL(cc, s, RdLo, RdHi, Rm, Rs);
94 int RdLo, int RdHi, int Rm, int Rs) {
95 mTarget->SMUAL(cc, s, RdLo, RdHi, Rm, Rs);
152 void ARMAssemblerProxy::SWP(int cc, int Rn, int Rd, int Rm) {
153 mTarget->SWP(cc, Rn, Rd, Rm);
155 void ARMAssemblerProxy::SWPB(int cc, int Rn, int Rd, int Rm) {
156 mTarget->SWPB(cc, Rn, Rd, Rm);
166 void ARMAssemblerProxy::CLZ(int cc, int Rd, int Rm) {
167 mTarget->CLZ(cc, Rd, Rm);
169 void ARMAssemblerProxy::QADD(int cc, int Rd, int Rm, int Rn) {
170 mTarget->QADD(cc, Rd, Rm, Rn);
172 void ARMAssemblerProxy::QDADD(int cc, int Rd, int Rm, int Rn) {
173 mTarget->QDADD(cc, Rd, Rm, Rn);
175 void ARMAssemblerProxy::QSUB(int cc, int Rd, int Rm, int Rn) {
176 mTarget->QSUB(cc, Rd, Rm, Rn);
178 void ARMAssemblerProxy::QDSUB(int cc, int Rd, int Rm, int Rn) {
179 mTarget->QDSUB(cc, Rd, Rm, Rn);
181 void ARMAssemblerProxy::SMUL(int cc, int xy, int Rd, int Rm, int Rs) {
182 mTarget->SMUL(cc, xy, Rd, Rm, Rs);
184 void ARMAssemblerProxy::SMULW(int cc, int y, int Rd, int Rm, int Rs) {
185 mTarget->SMULW(cc, y, Rd, Rm, Rs);
187 void ARMAssemblerProxy::SMLA(int cc, int xy, int Rd, int Rm, int Rs, int Rn) {
188 mTarget->SMLA(cc, xy, Rd, Rm, Rs, Rn);
191 int RdHi, int RdLo, int Rs, int Rm) {
192 mTarget->SMLAL(cc, xy, RdHi, RdLo, Rs, Rm);
194 void ARMAssemblerProxy::SMLAW(int cc, int y, int Rd, int Rm, int Rs, int Rn) {
195 mTarget->SMLAW(cc, y, Rd, Rm, Rs, Rn);
198 void ARMAssemblerProxy::UXTB16(int cc, int Rd, int Rm, int rotate) {
199 mTarget->UXTB16(cc, Rd, Rm, rotate);