search for: scheler

Displaying 20 results from an estimated 47 matches for "scheler".

Did you mean: schoeler
2007 Jul 09
2
[LLVMdev] AsmParser fails
.../usr/include/c++/4.1.2/debug/vector:192:error: attempt to subscript container with out-of-bounds index 0, but container only holds 0 elements. Objects involved in the operation: sequence "this" @ 0x0xbfd32234 { type = N15__gnu_debug_def6vectorIPN4llvm5ValueESaIS3_EEE; } /home/scheler/llvm/install_debug/bin/llvm-as((anonymous namespace)::PrintStackTrace()+0x1a)[0x83dbbba] /home/scheler/llvm/install_debug/bin/llvm-as((anonymous namespace)::SignalHandler(int)+0x112)[0x83dbe80] [0xb7fda420] /lib/libc.so.6(abort+0x101)[0xb7d5b801] /usr/lib/libstdc++.so.6(__gnu_debug::_Error_formatte...
2012 Aug 15
0
[LLVMdev] More Back-End Porting Troubles
On Wed, Aug 15, 2012 at 12:11 PM, Fabian Scheler <fabian.scheler at gmail.com> wrote: > Hi LLVM-Folks, > ... > Currently, I am not even able to find out which instruction is messed > up here (dumping the node via the dump-Method yields "<<Unknown > Machine Node #65434>>"). Can I use "machine nod...
2012 Aug 15
5
[LLVMdev] More Back-End Porting Troubles
...ery easy on the TriCore. Zext the argument in the lower part of the 64bit register pair and write 0 to higher part. Finally, these parts are glued together using ISD::BUILD_PAIR. However, when I try to insert such nodes into the DAG within TriCoreTargetLowering, I run into an assertion: llc: /home/scheler/git/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp:704: void llvm::InstrEmitter::EmitMachineNode(llvm::SDNode*, bool, bool, llvm::DenseMap<llvm::SDValue, unsigned int>&): Assertion `NumMIOperands >= II.getNumOperands() && NumMIOperands <= II.getNumOperands()+II.getNumImplici...
2013 Sep 30
4
[LLVMdev] RTSC - Real-Time Systems Compiler
Hello John, Thank you very much for your fast response and the patch. Is it possible to add Fabian Scheler and Florian Franzmann to the people section as proposed in the attached patch? I hope to manage to write a description for the 'ProjectsWithLLVM' page this week and send it to the list. Thanks again, Tobias Am 26.09.2013 21:26, schrieb John Criswell: > Dear Tobias, > > Is the...
2007 Apr 02
2
[LLVMdev] LLVA and WCET Analysis
Hello everybody, I'm curious whether there have been any attempts to perform performance analysis on the LLVA level. I am interested in the derivation of flow-facts (loop bounds etc. - what about the value-range-propagation pass I read about on this list some time ago) but even more I am interested in exec-time modeling (how long does it take to execute a bunch of LLVA instructions on
2007 Apr 03
0
[LLVMdev] LLVA and WCET Analysis
On 4/2/07, Fabian Scheler <fabian.scheler at gmail.com> wrote: > Hello everybody, > > I'm curious whether there have been any attempts to perform > performance analysis on the LLVA level. I am interested in the > derivation of flow-facts (loop bounds etc. - what about the > value-range-propagatio...
2012 Aug 21
2
[LLVMdev] Passing return values on the stack & storing arbitrary sized integers
2012/8/20 Eli Friedman <eli.friedman at gmail.com>: > On Mon, Aug 20, 2012 at 12:01 AM, Fabian Scheler > <fabian.scheler at gmail.com> wrote: >> Hi Eli, >> >>>>>> 2. Storing arbitrary sized integers >>>>>> >>>>>> The testcase "test/CodeGen/Generic/APIntLoadStore.ll" checks for >>>>>> loading/storin...
2009 Jun 17
0
[LLVMdev] Why are functions renamed for .cpp files with llvm-gcc?
Hi Arto, > I wonder why there is a difference in how > llvm-gcc compiles .c and .cpp files. > > Example: > > ---bar.cpp---- > int bar() { > return 42; > } > -------------- > > $ llvm-gcc -emit-llvm -c bar.cpp > > Now running bar.o through llvm-dis gives: > -------------------------------- > define i32 @_Z3barv() nounwind { > < clip >
2012 Aug 21
0
[LLVMdev] Passing return values on the stack & storing arbitrary sized integers
On Tue, Aug 21, 2012 at 1:25 AM, Fabian Scheler <fabian.scheler at gmail.com> wrote: > 2012/8/20 Eli Friedman <eli.friedman at gmail.com>: >> On Mon, Aug 20, 2012 at 12:01 AM, Fabian Scheler >> <fabian.scheler at gmail.com> wrote: >>> Hi Eli, >>> >>>>>>> 2. Storing arbitrary...
2012 Aug 22
2
[LLVMdev] Passing return values on the stack & storing arbitrary sized integers
Hi Fabian, Anton, On 22/08/2012 08:25, Fabian Scheler wrote: >>> here are the definitions of these register classes: >>> >>> // Data register class >>> def DR : RegisterClass<"TriCore", [i32], 32, >>> (add D0, D1, D2, D3, D4, D5, D6, D7, >>>...
2007 Apr 03
2
[LLVMdev] LLVA and WCET Analysis
On Apr 3, 2007, at 10:55 AM, Andrew Lenharth wrote: > On 4/2/07, Fabian Scheler <fabian.scheler at gmail.com> wrote: >> Hello everybody, >> >> I'm curious whether there have been any attempts to perform >> performance analysis on the LLVA level. I am interested in the >> derivation of flow-facts (loop bounds etc. - what about the >&gt...
2009 Jun 17
8
[LLVMdev] Why are functions renamed for .cpp files with llvm-gcc?
Hello, I wonder why there is a difference in how llvm-gcc compiles .c and .cpp files. Example: ---bar.cpp---- int bar() { return 42; } -------------- $ llvm-gcc -emit-llvm -c bar.cpp Now running bar.o through llvm-dis gives: -------------------------------- define i32 @_Z3barv() nounwind { < clip > } -------------------------------- Above, function 'bar' has been renamed
2012 Aug 20
0
[LLVMdev] Passing return values on the stack & storing arbitrary sized integers
On Mon, Aug 20, 2012 at 12:01 AM, Fabian Scheler <fabian.scheler at gmail.com> wrote: > Hi Eli, > >>>>> 2. Storing arbitrary sized integers >>>>> >>>>> The testcase "test/CodeGen/Generic/APIntLoadStore.ll" checks for >>>>> loading/storing e.g. i33 integers from/into...
2012 Aug 16
2
[LLVMdev] More Back-End Porting Troubles
...er part of the 64bit register pair and write 0 to higher part. >> Finally, these parts are glued together using ISD::BUILD_PAIR. >> However, when I try to insert such nodes into the DAG within >> TriCoreTargetLowering, I run into an assertion: >> >> llc: >> /home/scheler/git/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp:704: >> void llvm::InstrEmitter::EmitMachineNode(llvm::SDNode*, bool, bool, >> llvm::DenseMap<llvm::SDValue, unsigned int>&): Assertion >> `NumMIOperands >= II.getNumOperands() && NumMIOperands <= >>...
2012 Aug 16
0
[LLVMdev] More Back-End Porting Troubles
> -----Original Message----- > From: Fabian Scheler [mailto:fabian.scheler at gmail.com] > Sent: Thursday, August 16, 2012 4:58 AM > To: LLVM Developers Mailing List; Villmow, Micah > Cc: Stellard, Thomas; cameron.mcinally at nyu.edu > Subject: Re: [LLVMdev] More Back-End Porting Troubles > > Hi, > > first of all: thanks fo...
2013 Sep 26
0
[LLVMdev] RTSC - Real-Time Systems Compiler
Dear Tobias, Is the attached patch for the LLVM User's page acceptable to you? -- John T. -------------- next part -------------- Index: Users.html =================================================================== --- Users.html (revision 191450) +++ Users.html (working copy) @@ -447,6 +447,14 @@ <td>Language-independent library for alias analysis</td> </tr> +
2013 Oct 14
0
[LLVMdev] RTSC - Real-Time Systems Compiler
On 9/30/13 7:19 AM, Tobias Klaus wrote: > Hello John, > > Thank you very much for your fast response and the patch. > > Is it possible to add Fabian Scheler and Florian Franzmann to the > people section as proposed in the attached patch? Done, and the patch is committed. Thanks, Bill, for adding the ProjectsWithLLVM entry. -- John T. > > I hope to manage to write a description for the 'ProjectsWithLLVM' > page this week and se...
2013 Oct 15
2
[LLVMdev] RTSC - Real-Time Systems Compiler
...he person, who designed it initially? Thanks in advance! Tobias Am 14.10.2013 22:51, schrieb John Criswell: > On 9/30/13 7:19 AM, Tobias Klaus wrote: >> Hello John, >> >> Thank you very much for your fast response and the patch. >> >> Is it possible to add Fabian Scheler and Florian Franzmann to the >> people section as proposed in the attached patch? > > Done, and the patch is committed. > > Thanks, Bill, for adding the ProjectsWithLLVM entry. > > -- John T. > >> >> I hope to manage to write a description for the 'Project...
2011 Feb 02
1
Reproducable hang caused by IMAP server
...protocols = imap pop3 service auth { unix_listener /var/spool/postfix/private/auth { group = postfix mode = 0660 user = postfix } } ssl_cert = </etc/openssl/certs/dovecot.pem ssl_key = </etc/openssl/private/dovecot.pem userdb { driver = passwd } Kind regards -- Matthias Scheler http://zhadum.org.uk/ -------------- next part -------------- A non-text attachment was scrubbed... Name: imap.pcap Type: application/octet-stream Size: 13916 bytes Desc: not available URL: <http://dovecot.org/pipermail/dovecot/attachments/20110202/ab6b7d9a/attac...
2013 Aug 14
1
Patch to log the cipher suite used for TLS
...rip=2001:8b0:114:1::2, lip=2001:8b0:114:1::2, mpid=1156, TLS=<TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)>, session=<0js/suLj9gAgAQiwARQAAQAAAAAAAAAC> Not sure why TLS 1.2 is only used in this case. It might be "mutt" doing that. Kind regards -- Matthias Scheler http://zhadum.org.uk/ -------------- next part -------------- $NetBSD$ Log the cipher used by a TLS connection. --- src/login-common/client-common.c.orig 2013-06-16 22:04:28.000000000 +0100 +++ src/login-common/client-common.c 2013-08-13 21:23:15.000000000 +0100 @...