blob: b303e6a13fb5b73345a6479f6b9cfe64b6105854 [file] [log] [blame]
Bill Buzbee3b0b4b92016-02-02 13:45:36 +00001 /*
Bill Buzbee1d011d92016-04-04 16:59:29 +00002 * Generic one-operand compare-and-branch operation. Provide a "condition"
3 * fragment that specifies the comparison to perform.
Bill Buzbee3b0b4b92016-02-02 13:45:36 +00004 *
5 * for: if-eqz, if-nez, if-ltz, if-gez, if-gtz, if-lez
6 */
7 /* if-cmp vAA, +BBBB */
Bill Buzbee3b0b4b92016-02-02 13:45:36 +00008 lsr w0, wINST, #8 // w0<- AA
9 GET_VREG w2, w0 // w2<- vAA
Bill Buzbee1d011d92016-04-04 16:59:29 +000010 FETCH_S wINST, 1 // w1<- branch offset, in code units
Bill Buzbee3b0b4b92016-02-02 13:45:36 +000011 cmp w2, #0 // compare (vA, 0)
Bill Buzbee1d011d92016-04-04 16:59:29 +000012 b.${condition} MterpCommonTakenBranchNoFlags
13 cmp wPROFILE, #JIT_CHECK_OSR // possible OSR re-entry?
14 b.eq .L_check_not_taken_osr
15 FETCH_ADVANCE_INST 2
Bill Buzbee3b0b4b92016-02-02 13:45:36 +000016 GET_INST_OPCODE ip // extract opcode from wINST
17 GOTO_OPCODE ip // jump to next instruction