Displaying 6 results from an estimated 6 matches for "llvm_readonly".
2012 Mar 09
2
[LLVMdev] RFE: Rename LLVM_ATTRIBUTE_{READONLY, READNONE} to LLVM_{READONLY, READNONE}
Hi all,
I would like to rename
LLVM_ATTRIBUTE_READONLY to LLVM_READONLY
and
LLVM_ATTRIBUTE_READNONE to LLVM_READNONE
Any objections?
- Daniel
2012 Mar 09
0
[LLVMdev] RFE: Rename LLVM_ATTRIBUTE_{READONLY, READNONE} to LLVM_{READONLY, READNONE}
What's the reason for renaming them?
-bw
On Mar 8, 2012, at 4:57 PM, Daniel Dunbar wrote:
> Hi all,
>
> I would like to rename
> LLVM_ATTRIBUTE_READONLY to LLVM_READONLY
> and
> LLVM_ATTRIBUTE_READNONE to LLVM_READNONE
>
> Any objections?
>
> - Daniel
> _______________________________________________
> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/ll...
2012 Mar 09
2
[LLVMdev] RFE: Rename LLVM_ATTRIBUTE_{READONLY, READNONE} to LLVM_{READONLY, READNONE}
...of two things:
1) it being an attribute is an implementation detail
2) it being long makes it annoying to use :)
-Chris
>
> -bw
>
> On Mar 8, 2012, at 4:57 PM, Daniel Dunbar wrote:
>
>> Hi all,
>>
>> I would like to rename
>> LLVM_ATTRIBUTE_READONLY to LLVM_READONLY
>> and
>> LLVM_ATTRIBUTE_READNONE to LLVM_READNONE
>>
>> Any objections?
>>
>> - Daniel
>> _______________________________________________
>> LLVM Developers mailing list
>> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
>> http:...
2012 Mar 09
0
[LLVMdev] RFE: Rename LLVM_ATTRIBUTE_{READONLY, READNONE} to LLVM_{READONLY, READNONE}
...il
> 2) it being long makes it annoying to use :)
Exactly.
- Daniel
> -Chris
>
>>
>> -bw
>>
>> On Mar 8, 2012, at 4:57 PM, Daniel Dunbar wrote:
>>
>>> Hi all,
>>>
>>> I would like to rename
>>> LLVM_ATTRIBUTE_READONLY to LLVM_READONLY
>>> and
>>> LLVM_ATTRIBUTE_READNONE to LLVM_READNONE
>>>
>>> Any objections?
>>>
>>> - Daniel
>>> _______________________________________________
>>> LLVM Developers mailing list
>>> LLVMdev at cs.uiuc.edu http...
2019 Apr 01
3
Please expose predicates to MachineVerifier
Could we expose predicates defined in the target InstrInfo.td file to the MachineVerifier? We use BuildMI() to create many instructions after ISEL, but the predicates are not being checked at this point. Thus, I could forget to check the target and build an instruction that is illegal for a specific configuration. In such a case it would be nice if the MachineVerifier could detect this for me.
2014 Dec 09
3
[LLVMdev] [cfe-dev][Openmp-dev] Clang Plugin to analyze OpenMP AST
Hi,
I am writing a plugin to get information about the OpenMP constructs from the AST.
I am basically writing a “RecursiveASTVisitor” and I am trying to find the OpenMP statement and get information like filename and line of code.
When I am visiting recursively each statement I have my own switch on the “StmtClass” and for now I am focusing on “OMPParallelForDirectiveClass”.
In my understanding,