Displaying 4 results from an estimated 4 matches for "newheader".
Did you mean:
newheaders
2009 Dec 03
0
[LLVMdev] Preserving ProfileInfo in several Passes
...he ProfileInfo passes as "CFGOnly?"
If so, that would let them be automatically preserved by passes
which don't modify the CFG (and that call AU.setPreservesCFG()).
> + if (ProfileInfo* PI = getAnalysisIfAvailable<ProfileInfo>()) {
> + PI->splitEdge(OrigPreHeader, NewHeader, NewPreHeader);
> + }
> +
> // Preserve canonical loop form, which means Exit block should
> // have only one predecessor.
> SplitEdge(L->getLoopLatch(), Exit, this);
Would it make sense to move the ProfileInfo updating code into
SplitEdge? That way all users of SplitEd...
2009 Dec 03
2
[LLVMdev] Preserving ProfileInfo in several Passes
Hi all,
this (altough a big patch) is actually pretty straight forward: It
(tries) to preserve ProfileInfo in all -std-compile-opts passes and all
X86-Backend passes.
There is still some passes that have corner cases where the ProfileInfo
is not correct after the pass. Some passes are still missing...
How shall I proceed with this?
Andi
-------------- next part --------------
A non-text
2005 Dec 29
2
Jigdo, etc...
...ors.kernel.org/centos/4.2/
While doing this I have come upon a few questions:
a) it seems the server cd's have a lot of stuff not present in the normal
directory mirror, I guess this is an artifact of the build process?
[the template files for the servercd's are ~120MB]
b) what are the .newheaders and .repodata directories on i386 CD1?
c) why do the mirror repodata/*.xml.gz files not match neither the CD nor
DVD versions for i386?
d) why does the i386 DVD not match ideally, but the x86_64 DVD matches
for _all_ files. The x86_64 CD1 also matches _much_ better than the i386
CD1...
e) w...
2009 Dec 07
1
[LLVMdev] Preserving ProfileInfo in several Passes
...that would let them be automatically preserved by passes
> which don't modify the CFG (and that call AU.setPreservesCFG()).
Yes, it would, how do I do this? :-)
>> + if (ProfileInfo* PI = getAnalysisIfAvailable<ProfileInfo>()) {
>> + PI->splitEdge(OrigPreHeader, NewHeader, NewPreHeader);
>> + }
>> +
>> // Preserve canonical loop form, which means Exit block should
>> // have only one predecessor.
>> SplitEdge(L->getLoopLatch(), Exit, this);
>
> Would it make sense to move the ProfileInfo updating code into...