Displaying 2 results from an estimated 2 matches for "entryptr".
Did you mean:
encrypt
2013 Dec 06
36
[V6 PATCH 0/7]: PVH dom0....
Hi,
V6: The only change from V5 is in patch #6:
- changed comment to reflect autoxlate
- removed a redundant ASSERT
- reworked logic a bit so that get_page_from_gfn() is called with NULL
for p2m type as before. arm has ASSERT wanting it to be NULL.
Tim: patch 4 needs your approval.
Daniel: patch 5 needs your approval.
These patches implement PVH dom0.
Patches 1 and 2
2011 May 31
0
[LLVMdev] Assertion failure in MC emitter running LLVM libs on Android using android-ndk
...) );
builder.setErrorStr( &errStr );
builder.setEngineKind( llvm::EngineKind::JIT );
std::auto_ptr<llvm::ExecutionEngine> executionEngine( builder.create() );
llvm::Function *llvmEntry = module->getFunction( "entry" );
void (*entryPtr)() = (void (*)())executionEngine->getPointerToFunction( llvmEntry );
What is so strange about this error is that if I instead output the ARM assembly language then assembly it on the build host using the Android NDK toolchain, it assembles without any problem at all. The library usage to gener...