Displaying 20 results from an estimated 10000 matches similar to: "[LLVMdev] [HEADS-UP] Some lower-case "create" interfaces going away soon"
2008 Apr 04
2
[LLVMdev] PATCH: Use size reduction -- wave1
heisenbug wrote:
> On Apr 3, 10:53 pm, Gabor Greif <ga... at mac.com> wrote:
> ...
>
>
>>> 3) Make sure that make check and some reasonable subset of llvm-test
>>> passes with this patch :)
>>>
>> I have never run llvm-test in the past. Is it just checking it out and
>> following a readme?
>>
>
>
> After
2008 Apr 29
3
[LLVMdev] [PATCH] use-diet for review
Chris Lattner wrote:
> Hi Gabor, I don't see OperandTraits.h.
Sorry, I relied "svn diff" to include freshly added files.
Apparently it did not :-/
Here are they.
I pondered of putting all in Use.cpp into Value.cpp,
but I am not so sure.
Cheers,
Gabor
-------------- next part --------------
A non-text attachment was scrubbed...
Name: OperandTraits.h
Type:
2008 Apr 04
0
[LLVMdev] PATCH: Use size reduction -- wave1
On Apr 4, 7:51 pm, Török Edwin <edwinto... at gmail.com> wrote:
> heisenbug wrote:
> > On Apr 3, 10:53 pm, Gabor Greif <ga... at mac.com> wrote:
> > ...
>
> >>> 3) Make sure that make check and some reasonable subset of llvm-test
> >>> passes with this patch :)
>
> >> I have never run llvm-test in the past. Is it just checking it
2008 Apr 21
3
[LLVMdev] does llvm-gcc (4.2) build?
Hi all,
can anybody confirm that llvm-gcc is broken?
After following all the instructions, make gets stuck while:
ggreif$ gmake
gmake \
CFLAGS="-g -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wmissing-format-attribute -fno-common " \
CONFIG_H="config.h auto-host.h
2008 Apr 30
0
[LLVMdev] [PATCH] use-diet for review
On Apr 29, 2008, at 9:40 AM, Gabor Greif wrote:
> Sorry, I relied "svn diff" to include freshly added files.
svn add file
svn diff .
will show it.
2008 Apr 29
5
[LLVMdev] [PATCH] use-diet for review
Hi all,
I have reported more than enough about the space savings achieved
and the associated costs, here comes the current patch for review.
Since this one is substantially smaller than the previous one, I did
not cut it in pieces. The front part is about headers and the rest
the .cpp and other files.
Cheers,
Gabor
-------------- next part --------------
An embedded and charset-unspecified
2008 Apr 29
0
[LLVMdev] [PATCH] use-diet for review
Hi Gabor,
Thanks for posting the memory savings. 13% less memory usage
in 447.dealII is very impressive.
I haven't taken more than a very brief peek at this patch, but I
have a few questions already.
Is there a header missing? I don't see
DECLARE_TRANSPARENT_OPERAND_ACCESSORS
defined anywhere.
Also, what affect does this macro have on doxygen?
In User.h:
+public:
+ template
2009 Sep 27
5
[LLVMdev] A basicblock iterator bug in llvm
Dear developers:
When I am doing basicblock pass, I meet a bug: there is an
iterator "I" in a basicblock, and it is not pointing to the first
instruction in this basicblock. However, "I--;" will fail by an
assertion.
The basic block ("I" is pointing to the second instruction) in test.ll:
bb: ; preds = %bb1
%1 = call i32 (i8*, ...)* @printf(i8* noalias
2008 Jul 01
4
[LLVMdev] llvm/tools/lto* rename heads up
Devang removed the old llvm/tools/lto directory and renamed lto2 ->
lto. The end result of this is that 'svn up' may complain. If you
get an error about this from svn, just do:
$ rm -rf llvm/tools/lto*
$ svn up llvm/tools
to fix it,
-Chris
2008 Jul 01
0
[LLVMdev] llvm/tools/lto* rename heads up
I have experienced this with a svn 1.5 client but not with 1.4.6.
Did anybody see this with a 1.4.6 (or older) client?
Btw. what is the server version?
Anyway this seems to be a bug in subversion.
Cheers,
Gabor
PS: http://subversion.tigris.org/servlets/ReadMsg?list=users&msgNo=79361
On Jul 1, 5:27 am, Chris Lattner <clatt... at apple.com> wrote:
> Devang removed the old
2012 Jun 01
0
[LLVMdev] Heads up: MCRegisterInfo register list functions going away
I am going to remove these functions from MCRegisterInfo:
getSubRegisters()
getSuperRegisters()
getOverlaps()
getAliasSet()
They have been replaced with iterator classes, also defined in MCRegisterInfo.h:
MCSubRegIterator
MCSuperRegIterator
MCRegAliasIterator
The tree has lots of examples of how to use all three.
/jakob
2014 Apr 23
1
VETO! Re: heads up: tcpwrappers support going away
On Tue, Apr 22, 2014 at 9:33 AM, Damien Miller <djm at mindrot.org> wrote:
> Hi,
>
> This is an early warning: OpenSSH will drop tcpwrappers in the next
> release. sshd_config has supported the Match keyword for a long time
> and it is possible to express more useful conditions (e.g. matching
> by user and address) than tcpwrappers allowed.
>
> Removing it reduces the
2010 Jun 08
0
[LLVMdev] Heads up: Local register allocator going away
On Fri, 2010-06-04 at 20:05 +0200, Jakob Stoklund Olesen wrote:
> You should fix SPUTargetLowering::LowerCall to make sure there is an unbroken chain of flag ties between CopyFromReg and BRASL. At least ARM, MBlaze, and Blackfin are doing this, if you need example code.
>
Thanks for the tip. This got fixed in 105601.
And with that, half of the problematic tests appearing with
2014 Apr 22
2
heads up: tcpwrappers support going away
Hi,
This is an early warning: OpenSSH will drop tcpwrappers in the next
release. sshd_config has supported the Match keyword for a long time
and it is possible to express more useful conditions (e.g. matching
by user and address) than tcpwrappers allowed.
Removing it reduces the amount of code in the 'hot' pre-authentication
path in sshd and rids us of a dependency.
-d
2009 Sep 27
0
[LLVMdev] A basicblock iterator bug in llvm
On 27 Sep., 05:45, hc2... at columbia.edu wrote:
> Dear developers:
> When I am doing basicblock pass, I meet a bug: there is an
> iterator "I" in a basicblock, and it is not pointing to the first
> instruction in this basicblock. However, "I--;" will fail by an
> assertion.
Hi hc!
are you on SVN trunk?
Cheers,
Gabor
>
> The basic block
2010 Jun 04
1
[LLVMdev] Heads up: Local register allocator going away
On Jun 4, 2010, at 3:05 AM, Sylvere Teissier wrote:
>
> In my target the CALL instruction change the link Register %LR
> In the target InstrInfo.td I have "Defs=[LR]" on the CALL instruction
> definition to handle that.
So your CALL instructions are clobbering your callee-saved registers, eh? ;-)
> It works well with others registers allocators: when there is a call
2014 Apr 23
3
hackers celebrate this day: openssh drops security! was: Re: heads up: tcpwrappers support going away
On 23 April 2014 21:43, mancha <mancha1 at zoho.com> wrote:
> On Wed, Apr 23, 2014 at 12:26:58PM -0700, Iain Morgan wrote:
>> A slightly better solution would be a PAM module that uses the same
>> syntax as libwrap. Possibly someone has already written such a module.
>
> Possibly, but only for platforms which use for PAM.
Pam is executed so late in the chain that any
2008 Apr 21
0
[LLVMdev] does llvm-gcc (4.2) build?
On Mon, 21 Apr 2008, Gabor Greif wrote:
> Hi all,
>
> can anybody confirm that llvm-gcc is broken?
It builds for me on x86, darwin8 (svn rev: 50048). What are you using to
configure it?
Whenever I have had problems building llvm-gcc, I usually have to delete
my install and obj dir, make clean llvm, and start over from the top.
Its a pain, but it works usually.
-Tanya
>
>
2009 Sep 27
0
[LLVMdev] A basicblock iterator bug in llvm
AAAH!
I see you are still at 2.5. Then this patch (the fix)
is relevant for you:
<http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/
ilist.h?r1=66061&r2=68785&diff_format=h>
Cheers,
Gabor
On 27 Sep., 05:45, hc2... at columbia.edu wrote:
> Dear developers:
> When I am doing basicblock pass, I meet a bug: there is an
> iterator "I" in
2010 Jun 04
0
[LLVMdev] Heads up: Local register allocator going away
On Thu, 2010-06-03 at 02:53 +0200, Jakob Stoklund Olesen wrote:
> If you are using the local register allocator, please try switching to the fast allocator and report any bugs you find.
>
Tried it, and it seems to break quite a big chunk of our tests on SPU :)
Before r103488 ("Mostly rewrite RegAllocFast") there was no problem.
But with r103488, I get a: