search for: howtouseattribut

Displaying 6 results from an estimated 6 matches for "howtouseattribut".

Did you mean: howtouseattributes
2013 Feb 12
2
[LLVMdev] Using the New Attributes Classes
Hi Sean, I think it can go in as it is. It's a good start. Thanks, Joe! -bw On Feb 9, 2013, at 9:46 PM, Sean Silva <silvas at purdue.edu> wrote: > This looks like a good starting point. I would prefer to call it HowToUseAttributes.rst though (it is essentially a HowTo). > > Bill, is it ok to commit this, or would you like cook up something different to go into the docs? > > -- Sean Silva
2013 Feb 12
0
[LLVMdev] Using the New Attributes Classes
Cool I renamed it, per Sean's suggestion, to HowToUseAttributes. Committed as r174961 The doc should be live now: http://llvm.org/docs/HowToUseAttributes.html Cheers, Joe Abbey On Feb 12, 2013, at 3:26 AM, Bill Wendling <wendling at apple.com<mailto:wendling at apple.com>> wrote: Hi Sean, I think it can go in as it is. It's a good start...
2019 Mar 14
4
[RFC] We are running out of slots in the Attribute::AttrKind enum
I would like to add a target-dependent attribute to the LLVM IR, and the guidance in http://llvm.org/docs/HowToUseAttributes.html says that target-dependent attributes should not occupy a slot in the Attribute::AttrKind enum, but I have yet to find an attribute that is represented in the IR that does not also have a slot in the AttrKind enum. We are limited to 63 slots in the AttrKind enum because it is represented in...
2013 Feb 10
2
[LLVMdev] Using the New Attributes Classes
The attached patch creates a skeleton to expand Attributes documentation in the future. It is currently only linked to the index. Ok to commit? Joe -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130209/e0c7bd7e/attachment.html> -------------- next part -------------- A non-text attachment was
2013 Feb 10
0
[LLVMdev] Using the New Attributes Classes
This looks like a good starting point. I would prefer to call it HowToUseAttributes.rst though (it is essentially a HowTo). Bill, is it ok to commit this, or would you like cook up something different to go into the docs? -- Sean Silva -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/201302...
2013 Jul 05
0
[LLVMdev] Building function parameter AttributeSets quickly
...e the parameter index of attributes is via the addAttribute methods of the Function class or the AttributeSet. This is quite inefficient as a new AttributeSet is constructed every time. In fact, it takes the bulk of the time my codegen consumes when dealing with large parameter sets. "HowToUseAttributes" suggests that AttrBuilder can be used as a mutable helper for this purpose. However, it seems to me that this can build the set of attributes that describe a single parameter, rather than a full set with indices. I'm essentially looking for something like: static AttributeSet get...