Displaying 13 results from an estimated 13 matches for "acsl".
Did you mean:
acl
2013 May 09
2
[LLVMdev] LoopPass symbol error
...ocs/WritingAnLLVMPass.html
Everything works fine, I did it many times for Function Passes, but in the
runOnLoopmethod, whenever I call a method of the loop L passed as argument,
for example L->begin(), I get the following error:
opt: symbol lookup error: /home/giacomo/llvmcsfv/Debug+Asserts/lib/Acsl.so:
> undefined symbol: _ZNK4llvm8LoopBaseINS_10BasicBlockENS_4LoopEE5beginEv
Where Acsl is the name of the loadable module. If I remove all the
instructions from runOnPass but a debug print, it works fine (it prints
it), so the problem is not the module.
Does anybody have any Idea?
Thank you...
2013 May 09
2
[LLVMdev] LoopPass symbol error
...verything works fine, I did it many times for Function Passes, but in the
> runOnLoopmethod, whenever I call a method of the loop L passed as argument,
> for example L->begin(), I get the following error:
>
> opt: symbol lookup error:
>> /home/giacomo/llvmcsfv/Debug+Asserts/lib/Acsl.so: undefined symbol:
>> _ZNK4llvm8LoopBaseINS_10BasicBlockENS_4LoopEE5beginEv
>
>
> Where Acsl is the name of the loadable module. If I remove all the
> instructions from runOnPass but a debug print, it works fine (it prints
> it), so the problem is not the module.
> Does a...
2013 May 09
0
[LLVMdev] LoopPass symbol error
...VMPass.html
> Everything works fine, I did it many times for Function Passes, but in the runOnLoopmethod, whenever I call a method of the loop L passed as argument, for example L->begin(), I get the following error:
>
> opt: symbol lookup error: /home/giacomo/llvmcsfv/Debug+Asserts/lib/Acsl.so: undefined symbol: _ZNK4llvm8LoopBaseINS_10BasicBlockENS_4LoopEE5beginEv
>
> Where Acsl is the name of the loadable module. If I remove all the instructions from runOnPass but a debug print, it works fine (it prints it), so the problem is not the module.
> Does anybody have any Idea?
&...
2013 May 09
0
[LLVMdev] LoopPass symbol error
..., I did it many times for Function Passes, but in
>> the runOnLoopmethod, whenever I call a method of the loop L passed as
>> argument, for example L->begin(), I get the following error:
>>
>> opt: symbol lookup error:
>>> /home/giacomo/llvmcsfv/Debug+Asserts/lib/Acsl.so: undefined symbol:
>>> _ZNK4llvm8LoopBaseINS_10BasicBlockENS_4LoopEE5beginEv
>>
>>
>> Where Acsl is the name of the loadable module. If I remove all the
>> instructions from runOnPass but a debug print, it works fine (it prints
>> it), so the problem is not...
2013 May 01
1
[LLVMdev] undefined symbol for LoopPass
...cs/WritingAnLLVMPass.html
Everything works fine, I did it many times for Function Passes, but in the
runOnPass method, whenever I call a method of the loop L passed as
argument, for example L->begin(), I get the following error:
opt: symbol lookup error: /home/giacomo/llvmcsfv/Debug+Asserts/lib/Acsl.so:
> undefined symbol: _ZNK4llvm8LoopBaseINS_10BasicBlockENS_4LoopEE5beginEv
Where Acsl is the name of the loadable module. If I remove all the
instructions from runOnPass but a debug print, it works fine (it prints
it), so the problem is not the module.
Does anybody have any Idea?
Thank you...
2013 Apr 05
2
[LLVMdev] Z3 and loadable optimization
...WritingAnLLVMPass.html. I want to use the Z3 library,
installed in my system, in my optimization. When I include z3++.h (the name
of the library) in the code and use its classes, it compiles well, but when
I try to run it it says:
> opt: symbol lookup error: /home/giacomo/llvm/Debug+Asserts/lib/Acsl.so:
> undefined symbol: Z3_mk_config
>
What's the issue?
Thanks
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130405/bdb9cbee/attachment.html>
2013 May 08
0
[LLVMdev] undefined symbol for LoopPass
...ocs/WritingAnLLVMPass.html
Everything works fine, I did it many times for Function Passes, but in the
runOnLoopmethod, whenever I call a method of the loop L passed as argument,
for example L->begin(), I get the following error:
opt: symbol lookup error: /home/giacomo/llvmcsfv/Debug+Asserts/lib/Acsl.so:
> undefined symbol: _ZNK4llvm8LoopBaseINS_10BasicBlockENS_4LoopEE5beginEv
Where Acsl is the name of the loadable module. If I remove all the
instructions from runOnPass but a debug print, it works fine (it prints
it), so the problem is not the module.
Does anybody have any Idea?
Thank you...
2005 Oct 04
1
very close but some small error
I'm attempting to install and run a program called ACSL (advanced
continuous simulation language) on wine.
So far the closest I've got is by installing
Wine 20050725
on my Ubuntu (Debian) Linux by using the latest
wine-config-sidenet-1.8.6
which appears to install ok and then installs the software ok.
However when I try to run it using
wine acslX...
2012 Nov 13
1
[LLVMdev] annotations for optimization?
Hello everyone,
As a research project we are trying to figure out how to insert some
annotations in the compiler in order to optimize the code. For example:
/*@ ensures x == 5 */
if(x>5){
{...}
}
where the comment is written in
ACSL<http://en.wikipedia.org/wiki/ANSI/ISO_C_Specification_Language>.
The example is trivial, but gives the idea, if LLVM is be able to read the
annotation, it would optimize the code removing the if below.
The question is: does exist an annotation language to do that? if it
doesnt't exist, wh...
2013 Apr 05
0
[LLVMdev] Z3 and loadable optimization
...se the Z3
> library, installed in my system, in my optimization. When I include
> z3++.h (the name of the library) in the code and use its classes, it
> compiles well, but when I try to run it it says:
>
> opt: symbol lookup error:
> /home/giacomo/llvm/Debug+Asserts/lib/Acsl.so: undefined symbol:
> Z3_mk_config
>
> What's the issue?
If the Z3 library is a dynamically linked library, then it's probably
not being loaded into opt. You might be able to force loading of it
with the -load option or by setting your LD_LIBRARY_PATH environment
variabl...
2013 Apr 05
1
[LLVMdev] Z3 and loadable optimization
...I want to use the Z3
> library, installed in my system, in my optimization. When I include z3++.h
> (the name of the library) in the code and use its classes, it compiles
> well, but when I try to run it it says:
>
>> opt: symbol lookup error: /home/giacomo/llvm/Debug+Asserts/lib/Acsl.so:
>> undefined symbol: Z3_mk_config
>>
> What's the issue?
>
>
> If the Z3 library is a dynamically linked library, then it's probably not
> being loaded into opt. You might be able to force loading of it with the
> -load option or by setting your LD_LIBRARY...
2016 Mar 01
1
Question about Formal Verification
I'd just like to thank everyone who replied on this; the suggestions and
resources are very helpful!
~Scott
On Tue, Feb 9, 2016 at 8:38 PM, Andrew Santosa <santosa_1999 at yahoo.com>
wrote:
> LLBMC http://llbmc.org uses bounded model checking technique to find
> errors in LLVM IR.
> Model checking is essentially search, and since LLBMC is bounded, the
> search for errors
2002 Jul 16
6
Sage Line 50
Hi all,
I am attempting to get Sage to support their software if the files are
on Samba (Linux). They (like a lot of people I've heard) say "We don't
support Linux, Goodbye." even when the client is on Win98/NT. We have been
having trouble on a particular site, and they refuse to support Sage Line
50 if the files are on Linux which is absurd, because Linux is much more