Lines Matching defs:cc

160 void ARMAssemblerProxy::dataProcessing( int opcode, int cc, int s,
163 mTarget->dataProcessing(opcode, cc, s, Rd, Rn, Op2);
166 void ARMAssemblerProxy::MLA(int cc, int s, int Rd, int Rm, int Rs, int Rn) {
167 mTarget->MLA(cc, s, Rd, Rm, Rs, Rn);
169 void ARMAssemblerProxy::MUL(int cc, int s, int Rd, int Rm, int Rs) {
170 mTarget->MUL(cc, s, Rd, Rm, Rs);
172 void ARMAssemblerProxy::UMULL(int cc, int s,
174 mTarget->UMULL(cc, s, RdLo, RdHi, Rm, Rs);
176 void ARMAssemblerProxy::UMUAL(int cc, int s,
178 mTarget->UMUAL(cc, s, RdLo, RdHi, Rm, Rs);
180 void ARMAssemblerProxy::SMULL(int cc, int s,
182 mTarget->SMULL(cc, s, RdLo, RdHi, Rm, Rs);
184 void ARMAssemblerProxy::SMUAL(int cc, int s,
186 mTarget->SMUAL(cc, s, RdLo, RdHi, Rm, Rs);
189 void ARMAssemblerProxy::B(int cc, uint32_t* pc) {
190 mTarget->B(cc, pc);
192 void ARMAssemblerProxy::BL(int cc, uint32_t* pc) {
193 mTarget->BL(cc, pc);
195 void ARMAssemblerProxy::BX(int cc, int Rn) {
196 mTarget->BX(cc, Rn);
201 void ARMAssemblerProxy::B(int cc, const char* label) {
202 mTarget->B(cc, label);
204 void ARMAssemblerProxy::BL(int cc, const char* label) {
205 mTarget->BL(cc, label);
212 void ARMAssemblerProxy::LDR(int cc, int Rd, int Rn, uint32_t offset) {
213 mTarget->LDR(cc, Rd, Rn, offset);
215 void ARMAssemblerProxy::LDRB(int cc, int Rd, int Rn, uint32_t offset) {
216 mTarget->LDRB(cc, Rd, Rn, offset);
218 void ARMAssemblerProxy::STR(int cc, int Rd, int Rn, uint32_t offset) {
219 mTarget->STR(cc, Rd, Rn, offset);
221 void ARMAssemblerProxy::STRB(int cc, int Rd, int Rn, uint32_t offset) {
222 mTarget->STRB(cc, Rd, Rn, offset);
224 void ARMAssemblerProxy::LDRH(int cc, int Rd, int Rn, uint32_t offset) {
225 mTarget->LDRH(cc, Rd, Rn, offset);
227 void ARMAssemblerProxy::LDRSB(int cc, int Rd, int Rn, uint32_t offset) {
228 mTarget->LDRSB(cc, Rd, Rn, offset);
230 void ARMAssemblerProxy::LDRSH(int cc, int Rd, int Rn, uint32_t offset) {
231 mTarget->LDRSH(cc, Rd, Rn, offset);
233 void ARMAssemblerProxy::STRH(int cc, int Rd, int Rn, uint32_t offset) {
234 mTarget->STRH(cc, Rd, Rn, offset);
236 void ARMAssemblerProxy::LDM(int cc, int dir, int Rn, int W, uint32_t reg_list) {
237 mTarget->LDM(cc, dir, Rn, W, reg_list);
239 void ARMAssemblerProxy::STM(int cc, int dir, int Rn, int W, uint32_t reg_list) {
240 mTarget->STM(cc, dir, Rn, W, reg_list);
243 void ARMAssemblerProxy::SWP(int cc, int Rn, int Rd, int Rm) {
244 mTarget->SWP(cc, Rn, Rd, Rm);
246 void ARMAssemblerProxy::SWPB(int cc, int Rn, int Rd, int Rm) {
247 mTarget->SWPB(cc, Rn, Rd, Rm);
249 void ARMAssemblerProxy::SWI(int cc, uint32_t comment) {
250 mTarget->SWI(cc, comment);
257 void ARMAssemblerProxy::CLZ(int cc, int Rd, int Rm) {
258 mTarget->CLZ(cc, Rd, Rm);
260 void ARMAssemblerProxy::QADD(int cc, int Rd, int Rm, int Rn) {
261 mTarget->QADD(cc, Rd, Rm, Rn);
263 void ARMAssemblerProxy::QDADD(int cc, int Rd, int Rm, int Rn) {
264 mTarget->QDADD(cc, Rd, Rm, Rn);
266 void ARMAssemblerProxy::QSUB(int cc, int Rd, int Rm, int Rn) {
267 mTarget->QSUB(cc, Rd, Rm, Rn);
269 void ARMAssemblerProxy::QDSUB(int cc, int Rd, int Rm, int Rn) {
270 mTarget->QDSUB(cc, Rd, Rm, Rn);
272 void ARMAssemblerProxy::SMUL(int cc, int xy, int Rd, int Rm, int Rs) {
273 mTarget->SMUL(cc, xy, Rd, Rm, Rs);
275 void ARMAssemblerProxy::SMULW(int cc, int y, int Rd, int Rm, int Rs) {
276 mTarget->SMULW(cc, y, Rd, Rm, Rs);
278 void ARMAssemblerProxy::SMLA(int cc, int xy, int Rd, int Rm, int Rs, int Rn) {
279 mTarget->SMLA(cc, xy, Rd, Rm, Rs, Rn);
281 void ARMAssemblerProxy::SMLAL( int cc, int xy,
283 mTarget->SMLAL(cc, xy, RdHi, RdLo, Rs, Rm);
285 void ARMAssemblerProxy::SMLAW(int cc, int y, int Rd, int Rm, int Rs, int Rn) {
286 mTarget->SMLAW(cc, y, Rd, Rm, Rs, Rn);
289 void ARMAssemblerProxy::UXTB16(int cc, int Rd, int Rm, int rotate) {
290 mTarget->UXTB16(cc, Rd, Rm, rotate);
293 void ARMAssemblerProxy::UBFX(int cc, int Rd, int Rn, int lsb, int width) {
294 mTarget->UBFX(cc, Rd, Rn, lsb, width);