Displaying 20 results from an estimated 10000 matches similar to: "[LLVMdev] llvm pass"
2013 Feb 11
2
[LLVMdev] llvm pass
hello sir,
i build llvm-clang successfully in my pc but while running a pass i am
geetting this error
praveen at ubuntu:~/Desktop/LLVM/
build/Release$ opt -load /lib/LLVMHello.so --help
Error opening '/lib/LLVMHello.so': /lib/LLVMHello.so: cannot open shared
object file: No such file or directory
-load request ignored.
please help me to overcome the error.
-------------- next part
2013 Feb 11
0
[LLVMdev] llvm pass
---------- Forwarded message ----------
From: Manoj C <manoj.chinthala at gmail.com>
Date: Mon, Feb 11, 2013 at 11:05 AM
Subject: llvm pass
To: llvmdev at cs.uiuc.edu
hello sir,
i build llvm-clang successfully in my pc but while running a pass i am
geetting this error
praveen at ubuntu:~/Desktop/LLVM/
build/Release$ opt -load /lib/LLVMHello.so --help
Error opening
2012 Aug 21
2
[LLVMdev] issues registering passes in osx 10.8
Hi everyone,
This is Ashwin. I have a mac running osx 10.8. I am new to LLVM and have the version 3.1 installed. I am trying to get some LLVM transform passes running on my machine. After having compiled the LLVM source without making changes to the configuration files I am able to run the LLVM gcc and clang. But I am having some trouble using the passes. I tried loading the hello pass inside the
2013 Aug 22
1
Re: QemuAgentCommand API documents
----- Original Message -----
> From: "Michal Privoznik" <mprivozn@redhat.com>
> To: "Praveen Kumar" <prkumar@redhat.com>
> Cc: libvirt-users@redhat.com
> Sent: Thursday, August 22, 2013 1:15:54 PM
> Subject: Re: [libvirt-users] QemuAgentCommand API documents
>
> The API you're looking for is the one you've found:
>
2012 Aug 22
0
[LLVMdev] issues registering passes in osx 10.8
Have you tried to pass --enable-shared to configure? It works for me.
$ opt -load /usr/local/lib/LLVMHello.dylib -help | grep hello
-hello - Hello World Pass
-hello2 - Hello World Pass (with getAnalysisUsage implemented)
- xi
On Aug 21, 2012, at 5:55 PM, Ashwin kumar <ashwinkumar18 at gmail.com> wrote:
>
2020 Nov 11
0
[cfe-dev] Running LLVMHello Pass from Clang(-cl)
Björn,
Can you try adding -fno-integrated-cc1 to the command-line, see if you get more infos?
De : cfe-dev <cfe-dev-bounces at lists.llvm.org> De la part de Eric Astor via cfe-dev
Envoyé : November 11, 2020 8:39 AM
À : Gaier, Bjoern <Bjoern.Gaier at horiba.com>
Cc : Clang Dev <cfe-dev at lists.llvm.org>
Objet : Re: [cfe-dev] Running LLVMHello Pass from Clang(-cl)
The
2011 May 02
2
[LLVMdev] Hello Pass Problem
Hi all
I am trying hello pass in llvm. I have compiled and could generate
LLVMHello.so but while giving the pass using opt i am getting below
mentioned error.
Command used: *opt-2.8 -load
../../cse231_project/llvm/llvm-2.9/Debug/lib/LLVMHello.so -hello < hello.bc*
Error opening '../../cse231_project/llvm/llvm-2.9/Debug/lib/LLVMHello.so':
2009 Apr 13
0
[LLVMdev] Problem on running "hello world" pass on VS2008
Hello, everyone!
Recently, I build llvm project for Visual Studio 2008 using cmake successfulley.
I modify the project LLVMHello of the entire solution to generate LLVMHello.dll instead of LLVMHello.lib without other changes.
Then, the flowing commands is executed:
opt -load LLVMHello.dll --help
But, I can't find the information string for hello pass.
opt -load LLVMHello.dll
2011 Mar 19
1
Weighting Schemes
Hi!
I am Praveen Kumar, an Applied Mathematics student and I am interested in
developing other weighting schemes for Xapian through GSOC.
I did not have any formal course in Information Retrieval in our institute.
The theory that I presently know is
from the Xapian documentations and other references and resources mentioned
on the website which I read
to design our own Probabilistic Information
2018 Mar 09
0
Externally loadable Alias Analysis pass
I am currectly experimenting with -Xclang option.. I have a simple pass (to
just print function names).
I ran: clang -Xclang -load -Xclang LLVMHello.so t.c
but nothing was printed, no output from the pass.
when I run: opt -load LLVMHello.so -hello t.ll
I get the output from pass (i.e. list of function names)
Part of the source ode of the Hello pass:
struct Hello : public FunctionPass {
2013 Aug 22
2
QemuAgentCommand API documents
Hi,
I was going through the maillist[0] and found virDomainQemuAgentCommand() support function added to python module. I also checked the API documentation and didn't able to find any pointer for this particular function. Is API documentation[1] not updated with these function details yet or I am looking to a wrong place?
Another question is I am using libvirt-1.0.5.5-1.fc19.x86_64 and
2011 Sep 14
2
[LLVMdev] LLVMHello pass compile error under Cygwin
I've built LLVM/Clang from svn under Cygwin on Windows 7. I'd like to
build on the LLVMHello pass example, however, when I try:
$ cd $LLVM/lib/Transforms/Hello
$ make
I receive a large number of errors which start with:
llvm[0]: Linking Debug+Asserts Loadable Module LLVMHello.dll
/cygdrive/c/Users/Graham/home/projects/llvm_cygwin/lib/Transforms/Hello/Debug+Asserts/Hello.o:
In function
2011 Sep 14
0
[LLVMdev] LLVMHello pass compile error under Cygwin
Graham, good morning.
To build LLVMHello on cygming, you should configure llvm with --enable-shared .
Even with enable-shared, you might build lib/Transforms/Hello manually.
(yeah, on cygming, LLVMHello should depend on tools/llvm-shlib)
And, you'd be better to build with --enable-optimized.
With enable-shared, llvm-shlib tends to fail with too many debug symbols.
HTH, ...Takumi
2006 Aug 28
0
[LLVMdev] opt -load error on Darwin
On Sun, 2006-08-27 at 21:57 -0500, Jing Yu wrote:
> Hi,
>
Hi Jing,
> I am following the instructions on Writing an LLVM Pass on
> Darwin(8.7.0) powerpc. The loadable library is built. But "opt -load
> " gives error saying "Symbol not found". I am using LLVM 1.8. Could
> someone tell me how to fix it? I have tried the same procedure on
> Pentium4 Redhat9.
2006 Aug 28
2
[LLVMdev] opt -load error on Darwin
Hi,
I am following the instructions on Writing an LLVM Pass on Darwin(8.7.0)
powerpc. The loadable library is built. But "opt -load " gives error saying
"Symbol not found". I am using LLVM 1.8. Could someone tell me how to fix
it? I have tried the same procedure on Pentium4 Redhat9. Everything is ok
there. So I think there must be some specific problem on Darwin that I
should
2012 Aug 21
2
[LLVMdev] issues registering passes in osx 10.8
Thank you. The edit made no difference. I did a clean install and the same error is reported.
Any other suggestions?
regards,
Ashwin
On Aug 21, 2012, at 2:59 PM, Joshua Cranmer <pidgeot18 at gmail.com> wrote:
> On 8/21/2012 3:52 PM, Ashwin kumar wrote:
>> Hi everyone,
>>
>> This is Ashwin. I have a mac running osx 10.8. I am new to LLVM and have the version 3.1
2011 Oct 13
0
[LLVMdev] Error trying to register a pass
~/llvm/llvm_core/llvm-2.9$ opt -load ../llvm-2.9/Release/lib/LLVMHello.so
-hello cdfg.c
Error opening '../llvm-2.9/Release/lib/LLVMHello.so':
../llvm-2.9/Release/lib/LLVMHello.so: undefined symbol:
_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb
-load request ignored.
opt: Unknown command line argument '-hello'. Try: 'opt -help'
I'm getting the above error,
2011 Oct 13
0
[LLVMdev] Register Pass Error
~/llvm/llvm_core/llvm-2.9$ opt -load ../llvm-2.9/Release/lib/
LLVMHello.so -hello cdfg.c
Error opening '../llvm-2.9/Release/lib/LLVMHello.so':
../llvm-2.9/Release/lib/LLVMHello.so: undefined symbol:
_ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb
-load request ignored.
opt: Unknown command line argument '-hello'. Try: 'opt -help'
I'm getting the above error,
2016 Sep 12
2
Fix typo to CentosPackager page in HowTos section
Hi,
Current page[0] contain a typo under "Generating your user
certificate" section. If you check Usage of centos-cert tool it
mention
" -n, --new-cert Generate a new Fedora Certificate" instead "
-n, --new-cert Generate a new CentOS Certificate". It would be
nice if someone fix that typo or provide me edit permission to do so.
2009 Oct 12
1
[LLVMdev] current state of building analysis passes out-of-tree with llvm-config?
Hi,
what's the current state of being able to build simple analysis passes
out-of-tree against only llvm headers and libraries with llvm-config?
I see that clang and klee do not use llvm-config but for example
rubinius does. Should both approaches be documented?
Currently for example docs/WritingAnLLVMPass.html says
"you need to create a new directory somewhere in the LLVM source