Alexey Frunze | 00b53b7 | 2016-02-02 20:25:45 -0800 | [diff] [blame] | 1 | /* |
2 | * Unconditional branch, 8-bit offset. | ||||
3 | * | ||||
4 | * The branch distance is a signed code-unit offset, which we need to | ||||
5 | * double to get a byte offset. | ||||
6 | */ | ||||
7 | /* goto +AA */ | ||||
Alexey Frunze | db045be | 2016-03-03 17:50:48 -0800 | [diff] [blame] | 8 | srl rINST, rINST, 8 |
9 | seb rINST, rINST # rINST <- offset (sign-extended AA) | ||||
Douglas Leung | 020b18a | 2016-06-03 18:05:35 -0700 | [diff] [blame] | 10 | b MterpCommonTakenBranchNoFlags |