search for: remcomp

Displaying 5 results from an estimated 5 matches for "remcomp".

Did you mean: regcomp
2017 Sep 18
0
compiling for the ipad
On Tue, Sep 19, 2017 at 1:02 AM, jacob navia <jacob at jacob.remcomp.fr> wrote: > Le 18/09/2017 à 21:20, Bruce Hoult a écrit : > >> Weird. The xcode compiler has been llvm for a long time, and A64 has been >> supported since the iPhone 5s came out four years ago. >> >> Perhaps you're asking this because you have an existing proj...
1997 Nov 08
1
pentium bug makes security under linux impossible
This morning I received this message from the list gnu-win32@cygnus.com: The sender was anonymous > > There is a SERIOUS bug in all pentium CPUs. The following > code will crash any machine running on a pentium CPU, MMX or no > MMX, any speed, regardless of OS (crash as in instant seize, hard > reboot the only cure): > > char x [5] = { 0xf0, 0x0f, 0xc7, 0xc8 }; > > main
2017 Sep 18
2
compiling for the ipad
Hi I have been assigned the task of porting the ARM code generator to the ipad. I would like to know if there are any available documents about the instruction set/code format of the A64 chip of Apple. Also, if at all possible, documents that describe executable formats, etc are welcome. Any pointers? Thanks in advance.
2015 Aug 25
4
GPL Software
Le 25/08/2015 20:39, Renato Golin a écrit : > I'm also interested in knowing what you did. I think most people here > would be glad to know your peril and how you solved it. Stack layout: C++ code calls | | JITted C code, compiled and linked on the fly tha calls | | C++ code that throws The throw must pass through the JITted code to arrive at the catch at the top.
2015 Jul 27
0
[LLVMdev] Dynamically adding exception frames in the macintosh OS X
Hi I am porting a JIT compiler to the Macintosh. This software runs under windows and Linux. In both systems there is an interface for adding exception frames dynamically when you add code compiled on the fly. Under linux the (not documented) gcc function __register_frame_info does the trick. Under windows, Microsoft has added an official API for this, that works without problems. The