search for: elf64abi

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

2015 Dec 01
3
Endianness for multi-word types
Hi, I'm recently trying to investigate ppc_fp128 related problem. Here is a minimal C++ test case that seems wrongly compiled: long double id(long double a) { return a; } bool f(long double x) { return id(__builtin_fabsl(x)) >= 0; } int main() { if (f(-123.l)) { return 0; } return 1; } The program compiled with command: clang++ -static -target powerpc64le-linux-gnu bad.cc
2015 Dec 01
2
Endianness for multi-word types
On Mon, Nov 30, 2015 at 7:24 PM Gao, Yunzhong < yunzhong_gao at playstation.sony.com> wrote: > According to > http://refspecs.linuxfoundation.org/ELF/ppc64/PPC-elf64abi.html, > "The high-order double-precision value (the one that comes first in > storage) must have the larger magnitude." > > So the order of the two doubles in your fp128 is not affected by the > endianness; although each individual double is. > Well I'm still trying...
2008 Nov 17
2
[LLVMdev] Flag operands and load/store DAG nodes
I notice that many DAG nodes like the copy-to-register operation have the ability to take an optional flag parameter, but that the load/store nodes do not (at least as of 2.3). Is it possible to pass flag operands through load/store DAG nodes?
2008 Nov 18
0
[LLVMdev] Flag operands and load/store DAG nodes
On Nov 17, 2008, at 11:12 AM, Burke, Max wrote: > I notice that many DAG nodes like the copy-to-register operation have > the ability to take an optional flag parameter, but that the load/ > store > nodes do not (at least as of 2.3). Is it possible to pass flag > operands > through load/store DAG nodes? No there isn't. What are you trying to accomplish? Are you trying to
2015 Nov 12
4
Fwd: asan for allocas on powerpc64
(Resending with the correct mailing list address.) Hi, Currently test/asan/TestCases/alloca_vla_interact.cc is XFAILed for powerpc64. I've had a look at why it doesn't work. I think the only problem is in the call to __asan_allocas_unpoison that is inserted at the end of the "for" loop (just before a stackrestore instruction). The call function is created something like this
2015 Dec 01
3
Endianness for multi-word types
...> > Subject: Re: [llvm-dev] Endianness for multi-word types > > > > On Mon, Nov 30, 2015 at 7:24 PM Gao, Yunzhong < > > yunzhong_gao at playstation.sony.com > wrote: > > > > > > According to > > http://refspecs.linuxfoundation.org/ELF/ppc64/PPC-elf64abi.html , "The > > high-order double-precision value (the one that comes first in > > storage) must have the larger magnitude." > > > > So the order of the two doubles in your fp128 is not affected by the > > endianness; although each individual double is. >...