Home | History | Annotate | Download | only in Thumb

Lines Matching refs:op

143 static ArmLIR *opNone(CompilationUnit *cUnit, OpKind op)
146 switch (op) {
162 static ArmLIR *opImm(CompilationUnit *cUnit, OpKind op, int value)
165 switch (op) {
179 static ArmLIR *opReg(CompilationUnit *cUnit, OpKind op, int rDestSrc)
182 switch (op) {
193 static ArmLIR *opRegImm(CompilationUnit *cUnit, OpKind op, int rDestSrc1,
201 switch (op) {
242 if (op == kOpCmp)
250 static ArmLIR *opRegRegReg(CompilationUnit *cUnit, OpKind op, int rDest,
254 switch (op) {
263 return opRegReg(cUnit, op, rDest, rSrc2);
267 opRegReg(cUnit, op, rSrc1, rSrc2);
271 return opRegReg(cUnit, op, rDest, rSrc2);
278 static ArmLIR *opRegRegImm(CompilationUnit *cUnit, OpKind op, int rDest,
286 switch(op) {
289 return opRegImm(cUnit, op, rDest, value);
315 return opRegImm(cUnit, op, rDest, value);
347 opRegReg(cUnit, op, rDest, rScratch);
350 opRegReg(cUnit, op, rDest, rSrc1);
373 static ArmLIR *opRegReg(CompilationUnit *cUnit, OpKind op, int rDestSrc1,
378 switch (op) {
438 return opRegRegReg(cUnit, op, rDestSrc1, rDestSrc1, rSrc2);