Displaying 10 results from an estimated 10 matches for "derefined".
Did you mean:
defined
2017 Jul 10
2
[ThinLTO] Making ThinLTO functions not fail hasExactDefinition (specifically preventing it from being derefined)
...e functionattr optimizations that LTO can
(since LTO is able to convert everything to Internal). This is a problem
because every functionattr optimization expects an exact definition by
calling hasExactDefinition (http://llvm-cs.pcc.me.uk/
include/llvm/IR/GlobalValue.h#387) which doesn't want a derefined function
(mayBeDerefined http://llvm-cs.pcc.me.uk/include/llvm/IR/GlobalValue.h#119).
According to the current definition, an AvailableExternally function could
be derefined so hasExactDefinition fails.
Does anyone have any ideas on how to make a function with
External/AvailableExternally linkage...
2017 Jul 11
2
[ThinLTO] Making ThinLTO functions not fail hasExactDefinition (specifically preventing it from being derefined)
...t;> (since LTO is able to convert everything to Internal). This is a problem
>> because every functionattr optimization expects an exact definition by
>> calling hasExactDefinition
>> (http://llvm-cs.pcc.me.uk/include/llvm/IR/GlobalValue.h#387) which doesn't
>> want a derefined function (mayBeDerefined
>> http://llvm-cs.pcc.me.uk/include/llvm/IR/GlobalValue.h#119). According to
>> the current definition, an AvailableExternally function could be derefined
>> so hasExactDefinition fails.
>>
>> Does anyone have any ideas on how to make a functio...
2018 Feb 16
3
Missing attribute inference cases
This email is just to summarize a bit of digging I did last night into
our attribute inference. Unfortunately, I'm not going to have time to
implement any of the gaps I noticed, but I figured someone else out
there might be interested.
*Missing Attributes*
argmemonly - influences AA, particularly relevant for libraries which
wrap build in functions which are annotated, but don't
2018 Feb 16
2
Missing attribute inference cases
Maybe we could list some of these as a GSoC project?
Seems like a self-contained task that can be simple as desired and as hard
as the student wants it to be.
Nuno
-----Original Message-----
From: Philip Reames via llvm-dev
Sent: Friday, February 16, 2018 6:48 PM
To: llvm-dev
Subject: Re: [llvm-dev] Missing attribute inference cases
On 02/16/2018 10:29 AM, Philip Reames via llvm-dev wrote:
2018 Feb 17
2
Missing attribute inference cases
Sure, but is anyone willing to mentor? I don't have time. I can
advise, but only infrequently.
Philip
On 02/16/2018 03:47 PM, Davide Italiano wrote:
> Yes, I agree with you this sounds like a great GSoC.
>
> On Fri, Feb 16, 2018 at 3:42 PM, Nuno Lopes via llvm-dev
> <llvm-dev at lists.llvm.org> wrote:
>> Maybe we could list some of these as a GSoC project?
2018 Feb 16
0
Missing attribute inference cases
On 02/16/2018 10:29 AM, Philip Reames via llvm-dev wrote:
>
> This email is just to summarize a bit of digging I did last night into
> our attribute inference. Unfortunately, I'm not going to have time to
> implement any of the gaps I noticed, but I figured someone else out
> there might be interested.
>
> *Missing Attributes*
>
> argmemonly - influences AA,
2018 Feb 16
0
Missing attribute inference cases
Yes, I agree with you this sounds like a great GSoC.
On Fri, Feb 16, 2018 at 3:42 PM, Nuno Lopes via llvm-dev
<llvm-dev at lists.llvm.org> wrote:
> Maybe we could list some of these as a GSoC project?
> Seems like a self-contained task that can be simple as desired and as hard
> as the student wants it to be.
>
> Nuno
>
> -----Original Message----- From: Philip Reames
2018 Feb 17
0
Missing attribute inference cases
I can step in, if that's ok with you.
Nuno
-----Original Message-----
From: Philip Reames
Sent: Saturday, February 17, 2018 1:04 AM
To: Davide Italiano ; Nuno Lopes
Cc: llvm-dev
Subject: Re: [llvm-dev] Missing attribute inference cases
Sure, but is anyone willing to mentor? I don't have time. I can
advise, but only infrequently.
Philip
On 02/16/2018 03:47 PM, Davide Italiano wrote:
2018 Feb 19
1
Missing attribute inference cases
SGTM
On 02/17/2018 03:52 PM, Nuno Lopes wrote:
> I can step in, if that's ok with you.
> Nuno
>
> -----Original Message----- From: Philip Reames
> Sent: Saturday, February 17, 2018 1:04 AM
> To: Davide Italiano ; Nuno Lopes
> Cc: llvm-dev
> Subject: Re: [llvm-dev] Missing attribute inference cases
>
> Sure, but is anyone willing to mentor? I don't have
2018 Sep 14
5
RFC: Adding a !thread.private metadata
Problem
LLVM's memory model for NonAtomic accesses is generally fairly weak, but
explicitly disallows inserting stores that didn't occur in the original
program. This is required for any potentially shared location, but is
overkill for any memory location which is provably only accessed by a
single thread.
My particular motivating example is a single thread private field in our