Displaying 2 results from an estimated 2 matches for "0001c034".
Did you mean:
00010034
2018 Jun 15
2
Strange Machineinstr
Hi
I write a machinefunction pass to print all the machinefunction's machine
instructions.
My target architecture is ARM. However, I don't understand some part of the
machine instructions.
Below is some of the assembly language for function A.
.text:0001C034 STMFD SP!, {R4,R10,R11,LR}
> .text:0001C038 ADD R11, SP, #8
> .text:0001C03C SUB SP, SP, #0x20
> .text:0001C040 STR R0, [R11,#statbuf]
> .text:0001C044 STR R1, [SP,#0x28+var_14]
> .text:...
2018 Jun 15
3
Strange Machineinstr
...to print all the machinefunction's
>> machine instructions.
>>
>> My target architecture is ARM. However, I don't understand some part of
>> the machine instructions.
>>
>> Below is some of the assembly language for function A.
>>
>> .text:0001C034 STMFD SP!, {R4,R10,R11,LR}
>> .text:0001C038 ADD R11, SP, #8
>> .text:0001C03C SUB SP, SP, #0x20
>> .text:0001C040 STR R0, [R11,#statbuf]
>> .text:0001C044 STR R...