C and C++ are type unsafe languages and have manual memory management so my questions are: 1. How does the LLVM keep itself from being overwritten by a misbehaving program? 3. does it support multithreading? 4. does LLVM allow for multitasking or do you just ran one VM per program? 5. if it does support multitasking how does it keep processes from colliding? 6. if it does not support multitasking and runs one VM per process then what means are there for communication of processes? 7. does LLVM support emulated virtual memory? Thank you. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140322/a36bdf0a/attachment.html>
On Sat, Mar 22, 2014 at 8:35 PM, Taylor Bioniks <zeitue at gmail.com> wrote:> C and C++ are type unsafe languages and have manual memory management so my > questions are:Despite having 'VM' in its name, LLVM is not a VM. Dmitri -- main(i,j){for(i=2;;i++){for(j=2;j<i;j++){if(!(i%j)){j=0;break;}}if (j){printf("%d\n",i);}}} /*Dmitri Gribenko <gribozavr at gmail.com>*/