arm匯編學(xué)習(xí)(六)跳轉(zhuǎn)到thumb狀態(tài)
thumb指令指令的時候,直接填寫該地址卻總是產(chǎn)生SIGSYS信號(非法指令執(zhí)行)。
原因就是該函數(shù)為thumb指令,因此跳轉(zhuǎn)時必須要把指令地址的最低位設(shè)置為1(bx 通過這一位來區(qū)分指令集),所以函數(shù)地址就加了一。
thumb指令集與arm指令集切換
movR0,#5 ;Argument to function is in R0addR1,PC,#1 ;Load address of SUB_BRANCH, Set for THUMB by adding 1BX R1 ;R1 contains address of SUB_BRANCH+1;Assembler-specific instruction to switch to ThumbSUB_BRANCH:BLthumb_sub ;Must be in a space of +/- 4 MBaddR1,#7 ;Point to SUB_RETURN with bit 0 clearBXR1;Assembler-specific instruction to switch to ARM SUB_RETURN:
arm狀態(tài)下指令的地址末兩位都是0
而thumb狀態(tài)下指令地址的末尾是0
thum1+1表明你即將跳入thumb狀態(tài),系統(tǒng)會自動調(diào)整地址的
評論