Displaying 5 results from an estimated 5 matches for "amdil_barri".
Did you mean:
amdil_barrier
2012 Nov 30
2
[LLVMdev] Tablegen bug???
If the source being scanned has "llvm.AMDIL.barrier.global, it will match the first barrier test and return AMDIL_barrier, not AMDIL_barrier_global.
On Nov 29, 2012, at 7:19 PM, Chris Lattner <clattner at apple.com>
wrote:
> Out of curiosity, what is wrong about that? It looks ok to me.
>
> -Chris
>
> On Nov 29, 2012, at 6:52 PM, "Relph, Richard" <Richard.Relph at amd.com>...
2012 Nov 30
3
[LLVMdev] Tablegen bug???
...um value recognizer code.
#ifdef GET_FUNCTION_RECOGNIZER
StringRef NameR(Name+6, Len-6); // Skip over 'llvm.'
switch (Name[5]) { // Dispatch on first letter.
default: break;
case 'A':
…
if (NameR.startswith("MDIL.barrier.")) return AMDILIntrinsic::AMDIL_barrier;
if (NameR.startswith("MDIL.barrier.global.")) return AMDILIntrinsic::AMDIL_barrier_global;
if (NameR.startswith("MDIL.barrier.local.")) return AMDILIntrinsic::AMDIL_barrier_local;
if (NameR.startswith("MDIL.barrier.region.")) return AMDILIntrinsic::AMDIL_ba...
2012 Nov 30
0
[LLVMdev] Tablegen bug???
...#ifdef GET_FUNCTION_RECOGNIZER
> StringRef NameR(Name+6, Len-6); // Skip over 'llvm.'
> switch (Name[5]) { // Dispatch on first letter.
> default: break;
> case 'A':
> …
> if (NameR.startswith("MDIL.barrier.")) return AMDILIntrinsic::AMDIL_barrier;
> if (NameR.startswith("MDIL.barrier.global.")) return AMDILIntrinsic::AMDIL_barrier_global;
> if (NameR.startswith("MDIL.barrier.local.")) return AMDILIntrinsic::AMDIL_barrier_local;
> if (NameR.startswith("MDIL.barrier.region.")) return AMDILIntrins...
2013 Jul 03
0
[LLVMdev] Tablegen bug???
...another one, or we are getting lucky.
>
> -Chris
>
> On Nov 29, 2012, at 7:24 PM, "Relph, Richard" <Richard.Relph at amd.com>
> wrote:
>
> > If the source being scanned has "llvm.AMDIL.barrier.global, it will
> match the first barrier test and return AMDIL_barrier, not
> AMDIL_barrier_global.
> >
> >
> > On Nov 29, 2012, at 7:19 PM, Chris Lattner <clattner at apple.com>
> > wrote:
> >
> >> Out of curiosity, what is wrong about that? It looks ok to me.
> >>
> >> -Chris
> >>
> >...
2012 Dec 01
0
[LLVMdev] Tablegen bug???
...insically in mainline are a prefix if another one, or we are getting lucky.
-Chris
On Nov 29, 2012, at 7:24 PM, "Relph, Richard" <Richard.Relph at amd.com> wrote:
> If the source being scanned has "llvm.AMDIL.barrier.global, it will match the first barrier test and return AMDIL_barrier, not AMDIL_barrier_global.
>
>
> On Nov 29, 2012, at 7:19 PM, Chris Lattner <clattner at apple.com>
> wrote:
>
>> Out of curiosity, what is wrong about that? It looks ok to me.
>>
>> -Chris
>>
>> On Nov 29, 2012, at 6:52 PM, "Relph, Ri...