HomeSort by relevance Sort by last modified time
    Searched full:common_alu_int (Results 1 - 2 of 2) sorted by null

  /dalvik/vm/compiler/codegen/x86/
LowerAlu.cpp 428 int common_alu_int(ALU_Opcode opc, u2 vA, u2 v1, u2 v2) { //except div and rem function
453 //! lower bytecode ADD_INT by calling common_alu_int
461 int retval = common_alu_int(add_opc, vA, v1, v2);
465 //! lower bytecode SUB_INT by calling common_alu_int
473 int retval = common_alu_int(sub_opc, vA, v1, v2);
477 //! lower bytecode MUL_INT by calling common_alu_int
485 int retval = common_alu_int(imul_opc, vA, v1, v2);
489 //! lower bytecode AND_INT by calling common_alu_int
497 int retval = common_alu_int(and_opc, vA, v1, v2);
501 //! lower bytecode OR_INT by calling common_alu_int
    [all...]
BytecodeVisitor.cpp     [all...]

Completed in 1186 milliseconds