Home | History | Annotate | Download | only in codeflinger

Lines Matching refs:Op2

124                             uint32_t Op2) = 0;
224 ADC(int cc, int s, int Rd, int Rn, uint32_t Op2) {
225 dataProcessing(opADC, cc, s, Rd, Rn, Op2);
228 ADD(int cc, int s, int Rd, int Rn, uint32_t Op2) {
229 dataProcessing(opADD, cc, s, Rd, Rn, Op2);
232 AND(int cc, int s, int Rd, int Rn, uint32_t Op2) {
233 dataProcessing(opAND, cc, s, Rd, Rn, Op2);
236 BIC(int cc, int s, int Rd, int Rn, uint32_t Op2) {
237 dataProcessing(opBIC, cc, s, Rd, Rn, Op2);
240 EOR(int cc, int s, int Rd, int Rn, uint32_t Op2) {
241 dataProcessing(opEOR, cc, s, Rd, Rn, Op2);
244 MOV(int cc, int s, int Rd, uint32_t Op2) {
245 dataProcessing(opMOV, cc, s, Rd, 0, Op2);
248 MVN(int cc, int s, int Rd, uint32_t Op2) {
249 dataProcessing(opMVN, cc, s, Rd, 0, Op2);
252 ORR(int cc, int s, int Rd, int Rn, uint32_t Op2) {
253 dataProcessing(opORR, cc, s, Rd, Rn, Op2);
256 RSB(int cc, int s, int Rd, int Rn, uint32_t Op2) {
257 dataProcessing(opRSB, cc, s, Rd, Rn, Op2);
260 RSC(int cc, int s, int Rd, int Rn, uint32_t Op2) {
261 dataProcessing(opRSC, cc, s, Rd, Rn, Op2);
264 SBC(int cc, int s, int Rd, int Rn, uint32_t Op2) {
265 dataProcessing(opSBC, cc, s, Rd, Rn, Op2);
268 SUB(int cc, int s, int Rd, int Rn, uint32_t Op2) {
269 dataProcessing(opSUB, cc, s, Rd, Rn, Op2);
272 TEQ(int cc, int Rn, uint32_t Op2) {
273 dataProcessing(opTEQ, cc, 1, 0, Rn, Op2);
276 TST(int cc, int Rn, uint32_t Op2) {
277 dataProcessing(opTST, cc, 1, 0, Rn, Op2);
280 CMP(int cc, int Rn, uint32_t Op2) {
281 dataProcessing(opCMP, cc, 1, 0, Rn, Op2);
284 CMN(int cc, int Rn, uint32_t Op2) {
285 dataProcessing(opCMN, cc, 1, 0, Rn, Op2);