Displaying 6 results from an estimated 6 matches for "int_var_annotation".
2009 Jan 22
2
[LLVMdev] Implementing customized intrinsic
...need to appear at LLVM IR.
So it seems that the annotation intrinsic does not fit the scenario.
Haohui
On Jan 21, 2009, at 8:01 PM, Tanya M. Lattner wrote:
>
> Does the llvm annotation intrinsic not work for what you are trying
> to do?
>
> http://llvm.org/docs/LangRef.html#int_var_annotation
> http://llvm.org/docs/LangRef.html#int_annotation
>
> -Tanya
>
> On Wed, 21 Jan 2009, Haohui Mai wrote:
>
>> Dear all,
>>
>> Currently I'm working on a project that add various checks into the
>> LLVM bitcode. For example, I insert function calls befo...
2009 Jan 22
0
[LLVMdev] Implementing customized intrinsic
Does the llvm annotation intrinsic not work for what you are trying to do?
http://llvm.org/docs/LangRef.html#int_var_annotation
http://llvm.org/docs/LangRef.html#int_annotation
-Tanya
On Wed, 21 Jan 2009, Haohui Mai wrote:
> Dear all,
>
> Currently I'm working on a project that add various checks into the
> LLVM bitcode. For example, I insert function calls before every
> load / store instructions to...
2009 Jan 22
3
[LLVMdev] Implementing customized intrinsic
Dear all,
Currently I'm working on a project that add various checks into the
LLVM bitcode. For example, I insert function calls before every
load / store instructions to guarantee that these instructions are
safe. I really want to implement them as LLVM intrinsics or ``special
function calls'' so that I am able to leverage the power of things
like InstVisitor. However, it
2009 Mar 06
0
[LLVMdev] Inserting annotations
Hi,
As far as I know, Instruction class does not inherit "Annotable" Class. Only
Function inherits annotable according to the documentation of annotable
class.
What you are asking would require adding annotations at instruction level,
which does not seem to be possible. You can maintain external maps between
instructions and your annotations,
--Kapil
On Thu, Mar 5, 2009 at 7:17 PM,
2011 Sep 22
1
[LLVMdev] new annotations in IR?
How can they processed? I cant seem to find any solid information about how
they exist in IR form from a Passes perspective. I see things like
@llvm.var.annotation in dumps but no relevant sounding methods to get at
these.
Thank you
On Thu, Sep 22, 2011 at 1:20 PM, Julien Lerouge <jlerouge at apple.com> wrote:
> On Thu, Sep 22, 2011 at 02:46:05AM -0400, Mark Brown wrote:
> > With
2009 Mar 06
3
[LLVMdev] Inserting annotations
Hello together,
how can i insert annotations in IR ?
I want actually write something like:
CallInst *call = CallInst::Create( ??? , aBasicBlock);
in my pass.
Regards
Raad
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090305/cd1db761/attachment.html>