Displaying 3 results from an estimated 3 matches for "hasgot".
Did you mean:
hago
2013 Oct 01
2
[LLVMdev] JITMemoryManager
...id setPoisonMemory(bool poison) {
return mgr()->setPoisonMemory(poison);
}
virtual void AllocateGOT() {
mgr()->AllocateGOT();
/*
* isManagingGOT() is not virtual in base class so we can't delegate.
* Instead we mirror the value of HasGOT in our instance.
*/
HasGOT = mgr()->isManagingGOT();
}
virtual uint8_t *getGOTBase() const {
return mgr()->getGOTBase();
}
virtual uint8_t *startFunctionBody(const llvm::Function *F,
uintptr_t &Ac...
2013 Oct 02
0
[LLVMdev] JITMemoryManager
...on) {
> return mgr()->setPoisonMemory(poison);
> }
> virtual void AllocateGOT() {
> mgr()->AllocateGOT();
> /*
> * isManagingGOT() is not virtual in base class so we can't delegate.
> * Instead we mirror the value of HasGOT in our instance.
> */
> HasGOT = mgr()->isManagingGOT();
> }
> virtual uint8_t *getGOTBase() const {
> return mgr()->getGOTBase();
> }
> virtual uint8_t *startFunctionBody(const llvm::Function *F,
>...
2013 Oct 02
3
[LLVMdev] JITMemoryManager
...n mgr()->setPoisonMemory(poison);
>> }
>> virtual void AllocateGOT() {
>> mgr()->AllocateGOT();
>> /*
>> * isManagingGOT() is not virtual in base class so we can't delegate.
>> * Instead we mirror the value of HasGOT in our instance.
>> */
>> HasGOT = mgr()->isManagingGOT();
>> }
>> virtual uint8_t *getGOTBase() const {
>> return mgr()->getGOTBase();
>> }
>> virtual uint8_t *startFunctionBody(const llvm::Function *F,
&g...