search for: sel_ldr

Displaying 6 results from an estimated 6 matches for "sel_ldr".

2013 Jun 18
2
[LLVMdev] Building a stable bitcode format for PNaCl - based on LLVM IR
...13 15:27, Dmitri Rubinstein <dmitri.rubinstein at googlemail.com>wrote: > Is it possible to use PNaCl infrastructure (i.e. translation and execution > in a sandbox) without a Chrome ? > > I mean a something like a standalone VM like Java or Mono/C#. > Yes. The NaCl tool 'sel_ldr' will run a program inside a sandbox outside of the web browser. We do a lot of the testing of PNaCl this way. Cheers, Mark -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130618/83bee129/attachment.htm...
2013 Jun 19
3
[LLVMdev] Building a stable bitcode format for PNaCl - based on LLVM IR
...only be portable and fast but also be safe for the user, and the way this is achieved is through NaCl's SFI. Specifically for syscalls: http://www.chromium.org/nativeclient/reference/anatomy-of-a-sys In a way the syscalls offered are defined by the embedding sandbox: NaCl through Chrome and sel_ldr have documented interfaces, and the NaCl SDK offers POSIX-like interfaces built on top of these. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130619/5d983678/attachment.html>
2013 Jun 19
0
[LLVMdev] Building a stable bitcode format for PNaCl - based on LLVM IR
...fast but also be safe for the user, > and the way this is achieved is through NaCl's SFI. Specifically for > syscalls: > http://www.chromium.org/nativeclient/reference/anatomy-of-a-sys > In a way the syscalls offered are defined by the embedding sandbox: NaCl > through Chrome and sel_ldr have documented interfaces, and the NaCl SDK > offers POSIX-like interfaces built on top of these. But this discussion is about stable bitcode format, or do you want to restrict the set of syscalls on the LLVM level ? I am interested for my project in having a stable portable bitcode format l...
2013 Jun 19
0
[LLVMdev] Building a stable bitcode format for PNaCl - based on LLVM IR
...o:dmitri.rubinstein at googlemail.com>> wrote: > > Is it possible to use PNaCl infrastructure (i.e. translation and > execution in a sandbox) without a Chrome ? > > I mean a something like a standalone VM like Java or Mono/C#. > > > Yes. The NaCl tool 'sel_ldr' will run a program inside a sandbox > outside of the web browser. We do a lot of the testing of PNaCl this way. > > Cheers, > Mark >
2013 Jun 18
0
[LLVMdev] Building a stable bitcode format for PNaCl - based on LLVM IR
Is it possible to use PNaCl infrastructure (i.e. translation and execution in a sandbox) without a Chrome ? I mean a something like a standalone VM like Java or Mono/C#. Dmitri Am 18.06.2013 17:22, schrieb Eli Bendersky: > Hello, > > [The first paragraph is safe to skip if you already know what PNaCl is.] > The Portable Native Client (PNaCl) project is a toolchain for producing
2013 Jun 18
6
[LLVMdev] Building a stable bitcode format for PNaCl - based on LLVM IR
Hello, [The first paragraph is safe to skip if you already know what PNaCl is.] The Portable Native Client (PNaCl) project is a toolchain for producing portable bitcode from C and C++ code and running in securely and efficiently on the web via Native Client. For more details see this presentation from the last Google I/O: https://developers.google.com/events/io/sessions/325679543and