Displaying 4 results from an estimated 4 matches for "compileed".
Did you mean:
compiled
2004 Aug 06
2
ices and libshout.so.1
Hello!
I have compileed ices.0.2.2 for my debian system (the system is on a Mac
PowerPC, so I use Debian-PPC)
When I want to start Ices I get an error message saying this:
"./ices: error while loading shared libraries: libshout.so.1: cannot
open shared object file: No such file or directory"
I start it with ....
2016 Feb 18
2
RFC: Add guard intrinsics to LLVM
Replies inline.
At a high level, it feels like we'll eventually need a new instruction
to represent the kind of control flow a guard entails (to be clear: we
should probably still start with an intrinsic) -- they are fairly
well-behaved, i.e. readonly, nounwind etc. as far as the immediate
"physical" caller is concerned, but not so as far as its callers's
callers are concerned.
2016 Feb 17
7
RFC: Add guard intrinsics to LLVM
This is a proposal to add guard intrinsics to LLVM.
Couple of glossary items: when I say "interpreter" I mean "the most
conservative tier in the compilation stack" which can be an actual
interpreter, a "splat compiler" or even a regular JIT that doesn't
make optimistic assumptions. By "bailing out to the interpreter" I
mean "side exit" as
2016 Feb 18
2
RFC: Add guard intrinsics to LLVM
Sanjoy gave the long answer, let me give the short one. :)
"deopt" argument bundles are used in the middle end, they are lowered
into a statepoint, and generate the existing stackmap format. i.e. one
builds on the other.
On 02/18/2016 11:43 AM, Eric Christopher wrote:
> Hi Sanjoy,
>
> A quick question here. With the bailing to the interpreter support
> that you're