Displaying 3 results from an estimated 3 matches for "ismanaginggot".
2013 Oct 01
2
[LLVMdev] JITMemoryManager
...virtual void setMemoryExecutable() {
return mgr()->setMemoryExecutable();
}
virtual void 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 uin...
2013 Oct 02
0
[LLVMdev] JITMemoryManager
...() {
> return mgr()->setMemoryExecutable();
> }
> virtual void 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();
&...
2013 Oct 02
3
[LLVMdev] JITMemoryManager
...gt;setMemoryExecutable();
>> }
>> virtual void 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 m...