Displaying 20 results from an estimated 900 matches similar to: "[LLVMdev] Error with llc after using llvm-g++ WIN32"
2006 May 24
0
[LLVMdev] Error with llc after using llvm-g++ WIN32
On May 24, 2006, at 5:03 AM, Anton Korobeynikov wrote:
> Hello, Ashwin.
>
> You wrote Wednesday, May 24, 2006, 11:25:11 AM:
>
> AC> "Pass::getClassPassInfo<PassClass>() "Pass class not
> AC> registered!"" failed: file
> AC> "/cygdrive/c/llvm/llvm/include/llvm/PassAnalysisSupport.h",
> line 76
> AC> Aborted
> Same
2006 May 24
3
[LLVMdev] Error with llc after using llvm-g++ WIN32
Hello, Ashwin.
You wrote Wednesday, May 24, 2006, 11:25:11 AM:
AC> "Pass::getClassPassInfo<PassClass>() "Pass class not
AC> registered!"" failed: file
AC> "/cygdrive/c/llvm/llvm/include/llvm/PassAnalysisSupport.h", line 76
AC> Aborted
Same for me.
AC> Wihtout the -march specified (using native x86 assembly) it does
AC> convert it into
2006 May 25
0
[LLVMdev] Error with llc after using llvm-g++ WIN32
The patch is now in. Sorry about the delay!
Evan
On May 25, 2006, at 10:20 AM, Ashwin Chandra wrote:
> Hi Anton,
> Is the patch going to be uploaded to the CVS source?
>
> Ashwin
>
>
> On 5/24/06, Evan Cheng <evan.cheng at apple.com> wrote:
>
> On May 24, 2006, at 5:03 AM, Anton Korobeynikov wrote:
>
> > Hello, Ashwin.
> >
> > You wrote
2006 May 25
3
[LLVMdev] Error with llc after using llvm-g++ WIN32
Hi Anton,
Is the patch going to be uploaded to the CVS source?
Ashwin
On 5/24/06, Evan Cheng <evan.cheng at apple.com> wrote:
>
>
> On May 24, 2006, at 5:03 AM, Anton Korobeynikov wrote:
>
> > Hello, Ashwin.
> >
> > You wrote Wednesday, May 24, 2006, 11:25:11 AM:
> >
> > AC> "Pass::getClassPassInfo<PassClass>() "Pass class
2006 May 26
0
[LLVMdev] Error with llc after using llvm-g++ WIN32
Hi Evan,
Actually the unrecognized commas disappeared with the patch. What remains is
a call to ".local" which doesn't exist in x86 or at least is not compilable
by g++.
Ashwin
On 5/25/06, Ashwin Chandra <ashwin.chandra1 at gmail.com> wrote:
>
> Hi Evan,
> I updated cvs and recompilled llvm. Still getting some unrecognized commas
> in the compilation of the
2006 May 26
2
[LLVMdev] Error with llc after using llvm-g++ WIN32
Hi Evan,
I updated cvs and recompilled llvm. Still getting some unrecognized commas
in the compilation of the assembly file after using llc. I guess this is
still future work...
Ashwin
On 5/25/06, Evan Cheng <evan.cheng at apple.com> wrote:
>
> The patch is now in. Sorry about the delay!
>
> Evan
>
> On May 25, 2006, at 10:20 AM, Ashwin Chandra wrote:
>
> Hi
2006 Jun 01
2
[LLVMdev] Status on llvm-g++ -> llc -> C backend
Does anyone have a patch or fix for the failure:
*assertion "Pass::getClassPassInfo<PassClass>() && "Pass class not
registered!"" failed: file
"/cygdrive/c/llvm/llvm/include/llvm/PassAnalysisSupport.h", line 76
*
-Ash
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 Jun 02
0
[LLVMdev] Status on llvm-g++ -> llc -> C backend
On Thu, 1 Jun 2006, Ashwin Chandra wrote:
> Does anyone have a patch or fix for the failure:
> *assertion "Pass::getClassPassInfo<PassClass>() && "Pass class not
> registered!"" failed: file
> "/cygdrive/c/llvm/llvm/include/llvm/PassAnalysisSupport.h", line 76
I don't see that failure. We'll need more info to reproduce the issue.
2019 Apr 02
2
How can I use llvm::LoopInfo in the runOnModule method?
Hi all,
I tried to have a LoopInfo object in a function pass, and add addRequired
in getAnalysisUsage, and then use getAnalysis in runOnFunction(). It worked
OK.
Now I want to have a module pass to traverse the functions, and similarly,
I want to have to loop information of the functions.
When I did the above in runOnModule, and build the module pass, the
following error popped out, and the
2015 Jun 08
2
[LLVMdev] Use Callgraph
Hi All,
I tried to use CallGraph in llvm by adding
"AU.addRequired<CallGraph>();" in getAnalysisUsage function.
But it reports an error:
include/llvm/PassAnalysisSupport.h:56:39: error: ‘ID’ is not a member of
‘llvm::CallGraph’
return addRequiredID(PassClass::ID);
How to use it correctly?
Thanks,
Haopeng
2019 Apr 03
3
How can I use llvm::LoopInfo in the runOnModule method?
Interesting that we're getting a relative flood of these recently.
See here:
http://lists.llvm.org/pipermail/llvm-dev/2019-March/131346.html
I don't think one can reliably get a Function analysis pass from within
a ModulePass using the legacy pass manager. You have to manually
construct the pass yourself.
-David
Jonathan Smith via llvm-dev <llvm-dev at
2019 Mar 24
3
call an existing IPO pass
Hi,
I found an existing pass "CalledValuePropagation" that can solve the
problem I raised a few days ago regarding the "callees" metadata (
https://groups.google.com/forum/#!topic/llvm-dev/yjtZVMH_aC4). Now I have
difficulty in calling this pass in my own pass.
In my own pass, I called
"getAnalysis<CalledValuePropagationPass>()"
and in the
1999 Mar 09
1
Help with (hopefully) simple configuration problem
I have a (mostly) windows environment into which I am attempting
to integrate a SAMBA based printer server (Solaris 2.5.1 SPARC).
I'm running SAMBA 1.9.18p10. I need the print server to do
two things:
1. Perform as local network browser/WINS server
for the local subnet it is on (10.255.8.128/27)
2. Register itself and clients on it's subnet
with the browsers/WINS servers/whatever
2004 Aug 09
0
[LLVMdev] How to get LoopInfo within Pass subclass?
On Mon, 9 Aug 2004, Michael McCracken wrote:
> On Aug 5, 2004, at 8:11 PM, Chris Lattner wrote:
> > Sure, you can do that. Just use F->getParent() to get to the Module.
>
> D'oh. OK, so I can do what I need with a hack for now.
Ok.
> > We have no problem with people asking questions. :) The PassManager
> > is actually do for a rewrite. The current
2020 Jun 22
2
How to create a user WIHTOUT beeing prompted for the password
Hi,
Everything is in the title, How to create a user WIHTOUT beeing prompted for
the password ?
Did not find a method via command line .
Any option is welcome !
Thanks
--
This email has been checked for viruses by Avast antivirus software.
https://www.avast.com/antivirus
2004 Aug 09
2
[LLVMdev] How to get LoopInfo within Pass subclass?
On Aug 5, 2004, at 8:11 PM, Chris Lattner wrote:
>
> Sure, you can do that. Just use F->getParent() to get to the Module.
D'oh. OK, so I can do what I need with a hack for now.
>> Also, out of curiosity, why the stateless restriction - is it because
>> passes may someday be run in parallel?
>
> Yup, exactly. That and we want to be able to make multiple instances
2020 Jun 22
2
How to create a user WIHTOUT beeing prompted for the password
Hi ,
Just AD in fact :-)
More chances ?
Lionel
sent from my Iphone, sorry for typo
> Le 22 juin 2020 ? 11:17, Rowland penny via samba <samba at lists.samba.org> a ?crit :
>
> ?On 22/06/2020 09:27, Lionel Monchecourt via samba wrote:
>> Hi,
>>
>> Everything is in the title, How to create a user WIHTOUT beeing prompted for
>> the password ?
>
> No
2008 Apr 19
0
[LLVMdev] PATCH: Use size reduction -- wave2
On Apr 18, 5:51 pm, heisenbug <ggr... at gmail.com> wrote:
> On Apr 17, 7:01 pm, Owen Anderson <resis... at mac.com> wrote:
>
> > Gabor,
>
> > Have you updated llvm2cpp to generate calls to the appropriate new
>
> Yes. These are caught by my conversion scripts.
>
> > constructors? Also, could you check the code in the tutorials to make
> >
2004 Aug 10
1
[LLVMdev] How to get LoopInfo within Pass subclass?
On Aug 9, 2004, at 1:46 PM, Chris Lattner wrote:
>> Well, I took a look at it a bit over the weekend. I am probably not
>> the
>> right person to do the complete rewrite, for instance reworking the
>> Pass class hierarchy doesn't sound like something I'd want to do. Just
>> getting to this point has been a bit of an education in real C++.
>
> Ok, fair
2002 Feb 19
2
a good way of life
Thank you all for your answers.
One told me that in order to allow the students to
upload/download from their home directories, FTP or
something like that is a simple and easy choice.
As domain logon and roaming profil is not needed and
FTP can be logged, I'll use this.
Another question for our brillants candidates :
How to batch the creation of a Samba account ?
I mean, everytime you