Lines Matching refs:opcode
40 assert(EncodingMap[lir->opcode].flags & (IS_LOAD | IS_STORE)); in setMemRefType()
63 assert(!(EncodingMap[lir->opcode].flags & IS_STORE)); in setMemRefType()
146 int opcode = lir->opcode; in setupResourceMasks() local
149 if (opcode <= 0) { in setupResourceMasks()
154 flags = EncodingMap[lir->opcode].flags; in setupResourceMasks()
240 int flags = EncodingMap[lir->opcode].flags; in relaxBranchMasks()
272 static MipsLIR *newLIR0(CompilationUnit *cUnit, MipsOpCode opcode) in newLIR0() argument
275 assert(isPseudoOpCode(opcode) || (EncodingMap[opcode].flags & NO_OPERAND)); in newLIR0()
276 insn->opcode = opcode; in newLIR0()
282 static MipsLIR *newLIR1(CompilationUnit *cUnit, MipsOpCode opcode, in newLIR1() argument
286 assert(isPseudoOpCode(opcode) || (EncodingMap[opcode].flags & IS_UNARY_OP)); in newLIR1()
287 insn->opcode = opcode; in newLIR1()
294 static MipsLIR *newLIR2(CompilationUnit *cUnit, MipsOpCode opcode, in newLIR2() argument
298 assert(isPseudoOpCode(opcode) || in newLIR2()
299 (EncodingMap[opcode].flags & IS_BINARY_OP)); in newLIR2()
300 insn->opcode = opcode; in newLIR2()
308 static MipsLIR *newLIR3(CompilationUnit *cUnit, MipsOpCode opcode, in newLIR3() argument
312 if (!(EncodingMap[opcode].flags & IS_TERTIARY_OP)) { in newLIR3()
313 ALOGE("Bad LIR3: %s[%d]",EncodingMap[opcode].name,opcode); in newLIR3()
315 assert(isPseudoOpCode(opcode) || in newLIR3()
316 (EncodingMap[opcode].flags & IS_TERTIARY_OP)); in newLIR3()
317 insn->opcode = opcode; in newLIR3()
326 static MipsLIR *newLIR4(CompilationUnit *cUnit, MipsOpCode opcode, in newLIR4() argument
330 assert(isPseudoOpCode(opcode) || in newLIR4()
331 (EncodingMap[opcode].flags & IS_QUAD_OP)); in newLIR4()
332 insn->opcode = opcode; in newLIR4()
351 ((mir->next->dalvikInsn.opcode == OP_MOVE_RESULT) || in inlinedTarget()
352 (mir->next->dalvikInsn.opcode == OP_MOVE_RESULT_OBJECT))) { in inlinedTarget()
353 mir->next->dalvikInsn.opcode = OP_NOP; in inlinedTarget()
389 (mir->next->dalvikInsn.opcode == OP_MOVE_RESULT_WIDE)) { in inlinedTargetWide()
390 mir->next->dalvikInsn.opcode = OP_NOP; in inlinedTargetWide()
423 pcrLabel->opcode = kMipsPseudoPCReconstructionCell; in genCheckCommon()