Lines Matching refs:cc

119 void ARMAssembler::B(int cc, const char* label)
122 *mPC++ = (cc<<28) | (0xA<<24) | 0;
125 void ARMAssembler::BL(int cc, const char* label)
128 *mPC++ = (cc<<28) | (0xB<<24) | 0;
216 void ARMAssembler::dataProcessing(int opcode, int cc,
219 *mPC++ = (cc<<28) | (opcode<<21) | (s<<20) | (Rn<<16) | (Rd<<12) | Op2;
228 void ARMAssembler::MLA(int cc, int s,
232 *mPC++ = (cc<<28) | (1<<21) | (s<<20) |
235 void ARMAssembler::MUL(int cc, int s,
239 *mPC++ = (cc<<28) | (s<<20) | (Rd<<16) | (Rs<<8) | 0x90 | Rm;
241 void ARMAssembler::UMULL(int cc, int s,
245 *mPC++ = (cc<<28) | (1<<23) | (s<<20) |
248 void ARMAssembler::UMUAL(int cc, int s,
252 *mPC++ = (cc<<28) | (1<<23) | (1<<21) | (s<<20) |
255 void ARMAssembler::SMULL(int cc, int s,
259 *mPC++ = (cc<<28) | (1<<23) | (1<<22) | (s<<20) |
262 void ARMAssembler::SMUAL(int cc, int s,
266 *mPC++ = (cc<<28) | (1<<23) | (1<<22) | (1<<21) | (s<<20) |
276 void ARMAssembler::B(int cc, uint32_t* pc)
279 *mPC++ = (cc<<28) | (0xA<<24) | (offset & 0xFFFFFF);
282 void ARMAssembler::BL(int cc, uint32_t* pc)
285 *mPC++ = (cc<<28) | (0xB<<24) | (offset & 0xFFFFFF);
288 void ARMAssembler::BX(int cc, int Rn)
290 *mPC++ = (cc<<28) | 0x12FFF10 | Rn;
299 void ARMAssembler::LDR(int cc, int Rd, int Rn, uint32_t offset) {
300 *mPC++ = (cc<<28) | (1<<26) | (1<<20) | (Rn<<16) | (Rd<<12) | offset;
302 void ARMAssembler::LDRB(int cc, int Rd, int Rn, uint32_t offset) {
303 *mPC++ = (cc<<28) | (1<<26) | (1<<22) | (1<<20) | (Rn<<16) | (Rd<<12) | offset;
305 void ARMAssembler::STR(int cc, int Rd, int Rn, uint32_t offset) {
306 *mPC++ = (cc<<28) | (1<<26) | (Rn<<16) | (Rd<<12) | offset;
308 void ARMAssembler::STRB(int cc, int Rd, int Rn, uint32_t offset) {
309 *mPC++ = (cc<<28) | (1<<26) | (1<<22) | (Rn<<16) | (Rd<<12) | offset;
312 void ARMAssembler::LDRH(int cc, int Rd, int Rn, uint32_t offset) {
313 *mPC++ = (cc<<28) | (1<<20) | (Rn<<16) | (Rd<<12) | 0xB0 | offset;
315 void ARMAssembler::LDRSB(int cc, int Rd, int Rn, uint32_t offset) {
316 *mPC++ = (cc<<28) | (1<<20) | (Rn<<16) | (Rd<<12) | 0xD0 | offset;
318 void ARMAssembler::LDRSH(int cc, int Rd, int Rn, uint32_t offset) {
319 *mPC++ = (cc<<28) | (1<<20) | (Rn<<16) | (Rd<<12) | 0xF0 | offset;
321 void ARMAssembler::STRH(int cc, int Rd, int Rn, uint32_t offset) {
322 *mPC++ = (cc<<28) | (Rn<<16) | (Rd<<12) | 0xB0 | offset;
331 void ARMAssembler::LDM(int cc, int dir,
336 *mPC++ = (cc<<28) | (4<<25) | (uint32_t(P[dir])<<24) |
340 void ARMAssembler::STM(int cc, int dir,
345 *mPC++ = (cc<<28) | (4<<25) | (uint32_t(P[dir])<<24) |
355 void ARMAssembler::SWP(int cc, int Rn, int Rd, int Rm) {
356 *mPC++ = (cc<<28) | (2<<23) | (Rn<<16) | (Rd << 12) | 0x90 | Rm;
358 void ARMAssembler::SWPB(int cc, int Rn, int Rd, int Rm) {
359 *mPC++ = (cc<<28) | (2<<23) | (1<<22) | (Rn<<16) | (Rd << 12) | 0x90 | Rm;
361 void ARMAssembler::SWI(int cc, uint32_t comment) {
362 *mPC++ = (cc<<28) | (0xF<<24) | comment;
377 void ARMAssembler::CLZ(int cc, int Rd, int Rm)
379 *mPC++ = (cc<<28) | 0x16F0F10| (Rd<<12) | Rm;
382 void ARMAssembler::QADD(int cc, int Rd, int Rm, int Rn)
384 *mPC++ = (cc<<28) | 0x1000050 | (Rn<<16) | (Rd<<12) | Rm;
387 void ARMAssembler::QDADD(int cc, int Rd, int Rm, int Rn)
389 *mPC++ = (cc<<28) | 0x1400050 | (Rn<<16) | (Rd<<12) | Rm;
392 void ARMAssembler::QSUB(int cc, int Rd, int Rm, int Rn)
394 *mPC++ = (cc<<28) | 0x1200050 | (Rn<<16) | (Rd<<12) | Rm;
397 void ARMAssembler::QDSUB(int cc, int Rd, int Rm, int Rn)
399 *mPC++ = (cc<<28) | 0x1600050 | (Rn<<16) | (Rd<<12) | Rm;
402 void ARMAssembler::SMUL(int cc, int xy,
405 *mPC++ = (cc<<28) | 0x1600080 | (Rd<<16) | (Rs<<8) | (xy<<4) | Rm;
408 void ARMAssembler::SMULW(int cc, int y,
411 *mPC++ = (cc<<28) | 0x12000A0 | (Rd<<16) | (Rs<<8) | (y<<4) | Rm;
414 void ARMAssembler::SMLA(int cc, int xy,
417 *mPC++ = (cc<<28) | 0x1000080 | (Rd<<16) | (Rn<<12) | (Rs<<8) | (xy<<4) | Rm;
420 void ARMAssembler::SMLAL(int cc, int xy,
423 *mPC++ = (cc<<28) | 0x1400080 | (RdHi<<16) | (RdLo<<12) | (Rs<<8) | (xy<<4) | Rm;
426 void ARMAssembler::SMLAW(int cc, int y,
429 *mPC++ = (cc<<28) | 0x1200080 | (Rd<<16) | (Rn<<12) | (Rs<<8) | (y<<4) | Rm;
437 void ARMAssembler::UXTB16(int cc, int Rd, int Rm, int rotate)
439 *mPC++ = (cc<<28) | 0x6CF0070 | (Rd<<12) | ((rotate >> 3) << 10) | Rm;
447 void ARMAssembler::UBFX(int cc, int Rd, int Rn, int lsb, int width)
449 *mPC++ = (cc<<28) | 0x7E00000 | ((width-1)<<16) | (Rd<<12) | (lsb<<7) | 0x50 | Rn;