Displaying 2 results from an estimated 2 matches for "0x2ee070".
Did you mean:
0x2ee00
2016 May 31
0
va_arg on Windows 64 bits
...related to the ABI).
For example, by debugging the IR code at the end, here's the result
right before the call. We clearly see the 8 bytes alignment.
rcx : <i64> -6778056391233182162
rdx : <i8*> 0x13E1A4
r8 : <i64*> 0x50f070
r9 : <i64*> 0x50d830
0x2EE070 : <i64*> 0x50d830
0x2EE078 : <i32> 16
0x2EE080 : <i32> 10
0x2EE088 : <i32> 10
0x2EE090 : <i64*> 0x50ee40
When using va_arg (IR) to retrieve these parameters, it does not
respect the alignement and tries to access the parameters like they
were contiguous in memory....
2016 Apr 20
3
va_arg on Windows 64
...related to the ABI).
For example, by debugging the IR code at the end, here's the result
right before the call. We clearly see the 8 bytes alignment.
rcx : <i64> -6778056391233182162
rdx : <i8*> 0x13E1A4
r8 : <i64*> 0x50f070
r9 : <i64*> 0x50d830
0x2EE070 : <i64*> 0x50d830
0x2EE078 : <i32> 16
0x2EE080 : <i32> 10
0x2EE088 : <i32> 10
0x2EE090 : <i64*> 0x50ee40
When using va_arg (IR) to retrieve these parameters, it does not
respect the alignement and tries to access the parameters like they
were contiguous in memory....