Displaying 20 results from an estimated 500 matches similar to: "[LLVMdev] hello world error"
2011 Jun 29
0
[LLVMdev] hello world error
Hi,
I found that machine dead code elimination, does not respect the calling
convention of alpha and eliminates r16, which was set correctly during code
generation. I verified it with -print-after-all.
Does anybody have a patch for this?
On Wed, Jun 29, 2011 at 11:12 AM, Ankit Sethia <asethia at eecs.umich.edu>wrote:
> Hi All,
>
> I am using llvm-2.9 to cross compile to alpha. I
2011 Jun 29
1
[LLVMdev] hello world error
Hi,
Can people suggest how this is solved for other ISAs? This happens only for
Alpha and not for x86-64. The register 16 does not have any uses within that
function, but is used inside puts. So Machine DCE thinks it is dead code.
On Wed, Jun 29, 2011 at 4:20 PM, Ankit Sethia <asethia at eecs.umich.edu>wrote:
> Hi,
>
> I found that machine dead code elimination, does not respect
2011 Jun 11
1
[LLVMdev] alpha assembler with llc
Hi,
I configure llvm to generate code for alpha. I use a the following steps to
generate code from the source files:
1) llvm-gcc -c main.c -emit-llvm main.bc
2) opt -load <library fo myPass> -myPass main.bc main.opt.bc
3) llc -march=alpha main.opt.bc -o main.S
4) alphaev67-unknown-linux-gnu-as main.S -o main.o
Most of the files that i compile run just fine. Suddenly, i have hit on a
file
2011 Jul 14
1
[LLVMdev] code generation for variadic function
Hi All,
I am trying to understand how a back-end generates code for a function that
has variable number of arguments. I would also to like to know what changes
do i have to do to the corresponding ISAs InstrInfo.td when a call to such a
function is made? Any pointers or documentation in this regard is greatly
appreciated.
--
Ankit
-------------- next part --------------
An HTML attachment
2011 Jun 25
3
[LLVMdev] dump a module from inside GDB to a file
Hi All,
I changed the CFG of a big function using a pass that runs on a function, I
am having trouble debugging it. Is there someway to dump a module to a file
from inside gdb? I have access to the Module pointer. Let me know if
anything else is needed.
--
*Ankit*
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2011 Jun 25
2
[LLVMdev] dump a module from inside GDB to a file
Ankit,
>From within GDB you can run the following command:
"call m->dump()"
This will print the module in the bitcode in a textual format.
From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On Behalf Of Ankit Sethia
Sent: Saturday, June 25, 2011 20:56
To: llvmdev at cs.uiuc.edu
Subject: [LLVMdev] dump a module from inside GDB to a file
Hi All,
I
2011 Jun 25
0
[LLVMdev] dump a module from inside GDB to a file
Hi All,
I changed the CFG of a big function using a pass that runs on a function, I
am having trouble debugging it. Is there someway to dump a module to a file
from inside gdb? I have access to the Module pointer. Let me know if
anything else is needed.
--
Ankit
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2001 Jul 07
2
Bad unaligned kernel access with ext3 0.8.0
Hello!
This is Kernel 2.4.6-ac1 with ext3-0.8.0 compiled with cvs-gcc
version 3.1 20010616 on alpha ev4.
I have prepared one ext3 filesystem to play with. When my rc-scripts call
mount -a during boot I receive this:
Jul 6 22:01:30 Marvin kernel: Bad unaligned kernel access at fffffc0000883f54: fffffc00063f2e6e 2a 2
and the mount of this filesystem fails. A subsequent manual second try to
2009 Mar 13
6
please help me PLEASEEEEEEEE
Dear ALL
Please tell me how to configure Openldap in rhel 5
Please send me links & document
Thanks in advance
Ankit Jariwala
9725655020
2007 Aug 29
3
[LLVMdev] Custom GEP lowering
On Aug 28, 2007, at 7:02 AM, Dan Gohman wrote:
> On Mon, Aug 27, 2007 at 07:26:55PM -0700, Scott Michel wrote:
>> It looks like I need to be able to intercept GEP lowering (in
>> SelectionDAGLowering::visitGetElementPtr) and insert something else
>> other than the shifts and adds. The basic problem is that CellSPU
>> loads and stores on 16-byte boundaries. Consequently,
2020 Sep 17
3
[NPM] Register target specific pass with opt
Hello LLVM community,
I was trying to port a target specific loop transformation pass (HexagonVectorLoopCarriedReusePass) to the New Pass Manager. However, I could not figure out a way to register this pass with opt. I can see that llvm/lib/Passes/PassRegistry.def is the registry for target independent passes. Can anyone point me to an example/API which can help me in registering this pass so
2006 Jun 26
0
[klibc 21/43] alpha support for klibc
The parts of klibc specific to the alpha architecture.
Signed-off-by: H. Peter Anvin <hpa at zytor.com>
---
commit 5e5ce29210ac33a0b3704eb9ab5e5d5b55375575
tree 2ec24df596e13c21b68da4d905f546770d36fdad
parent 8529b52550ba78984998d3a9cc9deb467217fa3e
author H. Peter Anvin <hpa at zytor.com> Sun, 25 Jun 2006 16:58:14 -0700
committer H. Peter Anvin <hpa at zytor.com> Sun, 25 Jun
2011 Jun 23
2
[LLVMdev] Instr Description Problem of MCore Backend
Hi, all:
Now I'm working on writing a backend for Moto MCore, but I don't know how to
describe some instructions.
First, I've already written MCoreRegisterInfo.td like these:
class MCoreReg<bits<4> num, string name> : Register<name> {
let Namespace = "MCore";
field bits<4> Num = num;
}
def R0 : MCoreReg< 0, "R0">,
2014 Feb 26
2
Test errors on fresh installation
Hi all,
I installed xapian smoothly as per the guidelines mentioned in
the HACKING file. However, I am getting test errors on tests related to
python3 bindings after running them using `make check` on this fresh
installation. The log can be seen here <http://pastebin.com/bnsTFG2e>. Can
anyone here help me out to figure out why they are failing? Please let me
know if any more
2010 Apr 21
2
[LLVMdev] Function pointers bitcasted to varargs
Hi all,
I had the following function that used function pointers with void arguments,
typedef void (*FP)();
void foo() {
printf("hello world from foo\n");
}
int main() {
FP fp;
fp = foo;
(*fp)();
}
The corresponding bitcode, with no optimizations is
target datalayout =
2007 Aug 29
0
[LLVMdev] Custom GEP lowering
On Aug 28, 2007, at 6:15 PM, Scott Michel wrote:
> On Aug 28, 2007, at 7:02 AM, Dan Gohman wrote:
>
>> On Mon, Aug 27, 2007 at 07:26:55PM -0700, Scott Michel wrote:
>>> It looks like I need to be able to intercept GEP lowering (in
>>> SelectionDAGLowering::visitGetElementPtr) and insert something else
>>> other than the shifts and adds. The basic problem is
2011 Aug 19
2
[LLVMdev] How to halt a program
Guys,
I would like to instrument the bytecode that LLVM produces with
assertions. I have written the instrumentation code manually, but I do not
know how to halt the program in case the assertion is false. I took a look
into the bytecode that LLVM produces for a program like:
#include <stdlib.h>
int main() {
exit(1);
}
And it is like this:
define i32 @main() nounwind {
entry:
2011 Oct 05
2
[LLVMdev] LLVM IR is a compiler IR
All,
I should have chimed in earlier, but have been working on two more
side-channel variants of this conversation.
At the beginning the PNaCl team was strongly pushing for trying to keep
platform ABI compatibility on all
platforms while taking one portable bitcode stream as input. During the
discussions we've had over the past few
weeks it became obvious that that is simply not tractable,
2012 Feb 06
0
[LLVMdev] misc questions on opt and bitcode
On Feb 5, 2012, at 11:32 AM, Arpan Sen wrote:
> For the very simple example below, I get Unknown instruction error from lli and llvm-dis, while llc does not print anything. Not sure what is that I am missing here. My llvm-gcc version is i686-apple-darwin11-llvm-gcc-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.1.00)
> 1-39-155-188:pastebin Babai$ llvm-gcc example.c
2014 Feb 26
2
Test errors on fresh installation
Hi Olly,
I updated my local repo and built it again, but still getting the
error. I took a look at python3/test-suite.log file, but I could not locate
the source of test failure. Please find attached the log file with this
email. I am available on IRC(nick : ankit_agrawal) if that seems a
convenient medium for you to help me out with this issue. Thanks.
Regards,
Ankit Agrawal,