• Home
  • Raw
  • Download

Lines Matching refs:Op2

125                             uint32_t Op2) = 0;
225 ADC(int cc, int s, int Rd, int Rn, uint32_t Op2) { in ADC() argument
226 dataProcessing(opADC, cc, s, Rd, Rn, Op2); in ADC()
229 ADD(int cc, int s, int Rd, int Rn, uint32_t Op2) { in ADD() argument
230 dataProcessing(opADD, cc, s, Rd, Rn, Op2); in ADD()
233 AND(int cc, int s, int Rd, int Rn, uint32_t Op2) { in AND() argument
234 dataProcessing(opAND, cc, s, Rd, Rn, Op2); in AND()
237 BIC(int cc, int s, int Rd, int Rn, uint32_t Op2) { in BIC() argument
238 dataProcessing(opBIC, cc, s, Rd, Rn, Op2); in BIC()
241 EOR(int cc, int s, int Rd, int Rn, uint32_t Op2) { in EOR() argument
242 dataProcessing(opEOR, cc, s, Rd, Rn, Op2); in EOR()
245 MOV(int cc, int s, int Rd, uint32_t Op2) { in MOV() argument
246 dataProcessing(opMOV, cc, s, Rd, 0, Op2); in MOV()
249 MVN(int cc, int s, int Rd, uint32_t Op2) { in MVN() argument
250 dataProcessing(opMVN, cc, s, Rd, 0, Op2); in MVN()
253 ORR(int cc, int s, int Rd, int Rn, uint32_t Op2) { in ORR() argument
254 dataProcessing(opORR, cc, s, Rd, Rn, Op2); in ORR()
257 RSB(int cc, int s, int Rd, int Rn, uint32_t Op2) { in RSB() argument
258 dataProcessing(opRSB, cc, s, Rd, Rn, Op2); in RSB()
261 RSC(int cc, int s, int Rd, int Rn, uint32_t Op2) { in RSC() argument
262 dataProcessing(opRSC, cc, s, Rd, Rn, Op2); in RSC()
265 SBC(int cc, int s, int Rd, int Rn, uint32_t Op2) { in SBC() argument
266 dataProcessing(opSBC, cc, s, Rd, Rn, Op2); in SBC()
269 SUB(int cc, int s, int Rd, int Rn, uint32_t Op2) { in SUB() argument
270 dataProcessing(opSUB, cc, s, Rd, Rn, Op2); in SUB()
273 TEQ(int cc, int Rn, uint32_t Op2) { in TEQ() argument
274 dataProcessing(opTEQ, cc, 1, 0, Rn, Op2); in TEQ()
277 TST(int cc, int Rn, uint32_t Op2) { in TST() argument
278 dataProcessing(opTST, cc, 1, 0, Rn, Op2); in TST()
281 CMP(int cc, int Rn, uint32_t Op2) { in CMP() argument
282 dataProcessing(opCMP, cc, 1, 0, Rn, Op2); in CMP()
285 CMN(int cc, int Rn, uint32_t Op2) { in CMN() argument
286 dataProcessing(opCMN, cc, 1, 0, Rn, Op2); in CMN()
342 int Rn, uint32_t Op2);
344 int Rn, uint32_t Op2);