Displaying 20 results from an estimated 114 matches for "sigils".
Did you mean:
sigill
2017 Dec 25
2
Proposal: On re-purposing/reorganizing MIR sigils ('&', '$', '%').
...few of us have discussed enhancing the MIR vregs to include support for
named-vregs. At the moment named regs are only supported for physical
registers and number regs are reserved for vregs.
We've decided that to properly implement a syntax for MIR named vregs we
first need to reorganized the sigils used for physical registers and
external symbols so our proposal is to swap the sigil used for external
symbols ('$') for the ampersand ('&') and re-purpose dollar-sign for
physregs so that physregs have the dollar-sign sigil and vregs have the
percentage ('%') sigil:
e...
2018 Jan 08
2
Proposal: On re-purposing/reorganizing MIR sigils ('&', '$', '%').
...have discussed enhancing the MIR vregs to include support for named-vregs. At the moment named regs are only supported for physical registers and number regs are reserved for vregs.
>
> We've decided that to properly implement a syntax for MIR named vregs we first need to reorganized the sigils used for physical registers and external symbols so our proposal is to swap the sigil used for external symbols ('$') for the ampersand ('&') and re-purpose dollar-sign for physregs so that physregs have the dollar-sign sigil and vregs have the percentage ('%') sigil:
&g...
2017 Dec 26
0
Proposal: On re-purposing/reorganizing MIR sigils ('&', '$', '%').
...enhancing the MIR vregs to include support for
> named-vregs. At the moment named regs are only supported for physical
> registers and number regs are reserved for vregs.
>
> We've decided that to properly implement a syntax for MIR named vregs we
> first need to reorganized the sigils used for physical registers and
> external symbols so our proposal is to swap the sigil used for external
> symbols ('$') for the ampersand ('&') and re-purpose dollar-sign for
> physregs so that physregs have the dollar-sign sigil and vregs have the
> percentage (...
2018 Jan 08
0
Proposal: On re-purposing/reorganizing MIR sigils ('&', '$', '%').
...regs to include support for
>> named-vregs. At the moment named regs are only supported for physical
>> registers and number regs are reserved for vregs.
>>
>> We've decided that to properly implement a syntax for MIR named vregs we
>> first need to reorganized the sigils used for physical registers and
>> external symbols so our proposal is to swap the sigil used for external
>> symbols ('$') for the ampersand ('&') and re-purpose dollar-sign for
>> physregs so that physregs have the dollar-sign sigil and vregs have the
>>...
2012 May 18
1
[sh4] klibc SIGILL
Hi sh4 porters,
I?ve just fixed a regression of klibc to build from source
on sh4 using the sumotsu.debian.net porterbox (thanks for
making one available) and found a problem with your archi-
tecture: all binaries built with klibc (shared and static)
get a SIGILL (illegal instruction).
I suspect that different CFLAGS are needed. Please, someone,
have a look at it; a release of klibc 2.0 upstream
2015 Feb 13
2
[LLVMdev] SIGILL in regex::assign()
Hi, I have this simple program:
#include <regex>
int main()
{
std::regex re;
re.assign(std::regex("foo")); // SIGILL
return 0;
}
It runs smoothly if compiled with g++ but raises "illegal instruction"
when compiled with clang++:
g++ -std=c++11 -O0 -g -o test-g++ test.cpp
clang++ -std=c++11 -O0 -g -o test-clang++ test.cpp
ptomulik at barakus:$ ./test-g++
ptomulik
2017 May 17
2
Second DC won't start LDAP daemon
On Mon, 2017-05-15 at 18:58 +0200, Andrea Venturoli via samba wrote:
> On 05/08/17 11:17, Andrea Venturoli wrote:
> > Hello.
> >
> > I've got a network of FreeBSD servers which traditionally hosted a
> > classic domain.
> > I upgraded some months ago, removing the old PDC and BDC and migrating
> > to an AD DC controller in a jail.
> > This is
2013 Nov 27
0
[LLVMdev] Bug in Language Reference? %0 versus %1 as starting index.
(gah, this turned into a huge digression, sorry)
The implicit numbering of BB's seems to be a pretty frequent issue for
people. Surprisingly, the issue boils down to simply changing the IR asm
(.ll file) syntax so that it can have "unnamed BB's" in a recognizable way
that fits in with how unnamed values work (the asmprinter makes an effort
to print a comment with the BB number,
2013 Nov 27
2
[LLVMdev] Bug in Language Reference? %0 versus %1 as starting index.
Thanks for the lecture :) But I was not planning on changing a single line
in LLVM/Clang. I stick to the documentation until I've learned to swim,
perhaps even forever. Ah, now I see. You thought I meant "should I modify
the code to do this or that." I only meant to change the documentation.
Please refer to the patch I've sent on LLVM-commits. That's about what I
had
2013 Nov 27
4
[LLVMdev] Bug in Language Reference? %0 versus %1 as starting index.
The language reference states that local temporaries begin with index 0,
but if I try that on my not-entirely-up-to-date v3.4 llc (it is like a week
old), I get an error "instruction expected to be numbered '%1'".
Also, quite a few examples in the LR uses %0 as a local identifier.
Should I fix those or is it a problem in llc?
-- Mikael
-------------- next part --------------
2013 Nov 27
0
[LLVMdev] Bug in Language Reference? %0 versus %1 as starting index.
On Tue, Nov 26, 2013 at 9:58 PM, Mikael Lyngvig <mikael at lyngvig.org> wrote:
> Thanks for the lecture :) But I was not planning on changing a single
> line in LLVM/Clang. I stick to the documentation until I've learned to
> swim, perhaps even forever. Ah, now I see. You thought I meant "should I
> modify the code to do this or that." I only meant to change
2011 Jun 14
3
[LLVMdev] Is LLVM expressive enough to represent asynchronous exceptions?
Hi Chris, I've CC'd Eric Botcazou in the hope that he will clear up just what
the Ada front-end needs from the rest of the compiler as far as asynchronous
exceptions are concerned.
>> gcc Ada turns signals into exceptions. As far as I know it does this
>> completely asynchronously, and the fact that LLVM doesn't support this
>> is rather bad as far as Ada is
2017 May 18
1
Second DC won't start LDAP daemon
On Thu, 2017-05-18 at 09:27 +0200, Andrea Venturoli via samba wrote:
> On 05/17/17 21:14, Andrew Bartlett wrote:
>
> > What is your platform
>
> FreeBSD 10.3/amd64.
>
>
>
> > and what is signal 4 on your platform?
> > It is SIGILL on x86_64 linux.
>
> I believe signals are more or less standard across all Unices... anyway
> it's SIGILL on
2013 Nov 27
2
[LLVMdev] Bug in Language Reference? %0 versus %1 as starting index.
Without ANY intent of offending anybody, I simply don't like C++. I did
code in it for some 12 years back from 1990 to 2002, but then I left it
behind with a feeling of happiness. The main reason I am _trying_ to make
a new language is that I hope to one day come up with something that can
help retiring C++. I love C# but that language is yet too slow for many
demanding problem domains.
2012 May 18
1
hppa, powerpcspe: call for klibc/mksh testers
Hi,
no mailing list for powerpcspe? What?s the progress of your
architectures? I don?t see much happening on debian-ports.org,
and taking your architectures off that infrastructure hurts
others (I?ve ?revived? m68k and kept it running on d-p.o which
helps a bit).
Anyway: a new klibc (2.0~rc5-1) has been uploaded, and an mksh
companion version (40.9.20120518-1) depending on it and trying
to use
2013 Nov 27
0
[LLVMdev] Bug in Language Reference? %0 versus %1 as starting index.
On Tue, Nov 26, 2013 at 10:35 PM, Mikael Lyngvig <mikael at lyngvig.org> wrote:
> Without ANY intent of offending anybody, I simply don't like C++. I did
> code in it for some 12 years back from 1990 to 2002, but then I left it
> behind with a feeling of happiness. The main reason I am _trying_ to make
> a new language is that I hope to one day come up with something that
2018 Dec 01
2
Restrict global constructors to base ISA
I'm testing on older OS X 10.8 with older SSE4 hardware from about
2010. I've got updated gear from MacPorts and it includes GCC and
Clang. GCC is the compiler, and Clang is the assembler.
We perform a compile/link on a test file to ensure an ISA is supported
by the toolchain. If an ISA is available then we compile a source file
to the ISA as needed. Then, we guard the higher ISAs at
2015 Jan 07
3
[LLVMdev] [RFC][PATCH][OPENCL] synchronization scopes redux
...gt; just take this and map it to an enum that clearly spells out the rank
> for their target, so I suspect it won't actually increase the
> complexity of things much.
I seem to be missing something here about the need for strings. If they
are opaque anyway, and they are represented by sigils, then the sigils
themselves are all that matter, right? Then the encoding is just a number...
> But while the topic is wide open, here's another possibly whacky
> approach: we let the scopes be integers, and add a "scope layout"
> string similar to data-layout....
2013 Apr 14
0
[LLVMdev] [RFC/PATCH][4/4] Support System Z as host architecture
Hello,
this last patch is strictly-speaking not related to System Z as target
platform, but to running LLVM on (Linux on) System Z as a *host*
architecture. Most of the LLVM and Clang code base builds and works fine
on System Z, however, there is one problem relating to use of signal
handlers to react to crashes (SIGSEGV, SIGILL etc.).
The llvm::sys::AddSignalHandler (and related) function in
2011 Jun 14
0
[LLVMdev] Is LLVM expressive enough to represent asynchronous exceptions?
On Jun 14, 2011, at 2:11 AM, Duncan Sands wrote:
> gcc Ada turns signals into exceptions. As far as I know it does this
> completely asynchronously, and the fact that LLVM doesn't support this
> is rather bad as far as Ada is concerned. That said, the Ada front-end
You're saying that it turns asynch signals like SIGHUP (which can occur on any machine instruction) into signals?