search for: 0xaddress

Displaying 5 results from an estimated 5 matches for "0xaddress".

2001 Sep 04
1
Problems trying to run the examples in windows vorbis sdk
...sdk for windows, for researching purposes. I have compiled the example 'encoder_example.c' just to start, and it compiles, but I got a error in the following line just at the beginning: vorbis_encode_init(&vi,2,44100, -1, 128000, -1); The error is more or less: The instruction at '0xaddresss' referenced memory at '0xaddress'. The memory could not be "read". Something about bad pointed pointers, I think. So I haven't been able to start testing yet. I have tried with static link library and dynamic but nothing to do. Besides, with the static link I got the foll...
2016 Jun 21
3
function call replacement
...is correctly instrumented for the first call (about that: what is the use of replaceAllUsesWith function? I thought it would replace all uses of the function... but just one is done). I can then link it and execute with lli (I still get a: "*** Error in `lli': corrupted double-linked list: 0xaddress ***" but after the whole execution is done). But if I remove the break and the if condition associated, well I get a null pointer exception : Assertion `Val && "isa<> used on a null pointer"' failed I tried to clone the current instruction to not modify the iterat...
2001 Sep 05
4
Problems trying to run the examples in windows v orbis sdk
...earching >purposes. > >I have compiled the example 'encoder_example.c' just to start, and it >compiles, but I got a error in the following line just at the beginning: >vorbis_encode_init(&vi,2,44100, -1, 128000, -1); >The error is more or less: The instruction at '0xaddresss' referenced >memory >at '0xaddress'. The memory could not be "read". >Something about bad pointed pointers, I think. >So I haven't been able to start testing yet. I have tried with static link >library and dynamic but nothing to do. > >Then I have do...
2001 Sep 03
0
FW: Problems trying to run the examples in windows vorbis sdk
...for windows, for researching purposes. I have compiled the example 'encoder_example.c' just to start, and it compiles, but I got a error in the following line just at the beginning: vorbis_encode_init(&vi,2,44100, -1, 128000, -1); The error is more or less: The instruction at '0xaddresss' referenced memory at '0xaddress'. The memory could not be "read". Something about bad pointed pointers, I think. So I haven't been able to start testing yet. I have tried with static link library and dynamic but nothing to do. Besides, with the static link I got the foll...
2016 Jun 20
3
function call replacement
Hi everyone, I am trying to replace the call of a certain function with a call to another function. It would for example replace the following: %call = tail call noalias i8* @func(i64 10) by %call = tail call noalias i8* @other_func(i64 10) I managed to declare other_func correctly but I am having troubles to understand how I should proceed to do the replacement. I tried to use