Displaying 5 results from an estimated 5 matches for "pass_nam".
Did you mean:
pass_name
2011 Dec 08
3
[LLVMdev] Adding option to LLVM opt to disable a specific pass from command line
...- Some of the passes are executed multiple times, how would you select
> which invocation to disable ? Or would you disable all invocation of such
> passes ?
>
By default I guess I would like to disable all invocation of such passes.
We could also imagine to have an option -disable-pass=[pass_name:inv_num,
...] to deal with multiple invocation.
- Some passes are required by another passes. In such cases PassManager
> will insist on running them, which may conflict with the user request from
> command line. Who wins?
>
How to I know that a pass is required by another ?
Let's...
2012 Dec 10
1
[LLVMdev] issue writing llvm metadata
...t;getContext(), temp);
> load->setMetadata("mydata",Node);
On running the pass with my input_file, I could not find the new metadata node in the .o file when i run llvm-dis with it . What am I missing ? Please help me out!
I run the pass as
opt -load path_to_my_library.so -pass_name < input_file.o > /dev/null
Should I do something different for a transform pass to work?
Thank you!
regards,
Ashwin
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20121210/0b39d919/attachment.html...
2008 Jan 27
1
calling a list element from a list name passed to a function
Hi,
'true_name' is a list of numerical, matrix, and text items
I do
pass_name <- "true_name"
and pass the name of the list to a function so that the character
class variable 'passed_name' contains the name of the list called
'true_name'
Inside the function, how can I get a specified element from the list?
For example, if I want to get
t...
2011 Dec 07
0
[LLVMdev] Adding option to LLVM opt to disable a specific pass from command line
Hello,
On Dec 7, 2011, at 2:07 AM, Seb wrote:
> Hi all,
>
> I would like to add an option for LLVM 'opt' to disable a specific optimization pass from command line.
>
> The idea is to have something like:
>
> opt -O2 -disable-pass=[passname,...]
>
> Do you think it could be useful ?
I have few questions :
- Why (and when) would you us this ?
- Some of the
2011 Dec 07
2
[LLVMdev] Adding option to LLVM opt to disable a specific pass from command line
Hi all,
I would like to add an option for LLVM 'opt' to disable a specific
optimization pass from command line.
The idea is to have something like:
opt -O2 -disable-pass=[passname,...]
Do you think it could be useful ? How should I proceed to develop it and
commit changes to LLVM trunk ?
Thanks for your advices and recommandations.
Best Regards
Seb
-------------- next part