> +# stack size: 100 MB should be enough for anybody. ;)
> +ULIMITCMD="$ULIMITCMD ulimit -s 10;"
What about over-all virtual memory (-v)?
D.
___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llv
Hi Evan,
> > Finally, when doing libcalls, set isZExt on
> > a parameter if it is "unsigned". Currently
> > isSExt is set when signed, and nothing is
> > set otherwise. This should be right for all
> > calls to standard library routines.
>
> I am not sure I totally understand the reason for thi
> update the one reference to CFEBuildInstrs.html that I see.
Thanks Chris! Can you please also update the 2.2 release notes, and
where it says (about Ada and Fortran) "they need to be built from source",
make that a link to GCCFEBuildIntrs.
Ciao,
Duncan.
___
On Feb 14, 2008, at 3:30 PM, Evan Cheng wrote:
> This is not a new issue. But I am wondering if this may be a compile
> time issue if the number of legal FP immediate is sufficiently large?
> Should we build a hash table for it instead?
If a target had a huge number of legal fp immediates, it co
On Feb 14, 2008, at 5:23 PM, Dale Johannesen wrote:
> n Feb 14, 2008, at 3:40 PM, Evan Cheng wrote:
>> Thanks. Since you are hacking on this, can you check something for
>> me?
>> I seem to be getting this annoying warning (something like
>> "generating
>> 64-bit code for 32-bit cpu") when I do
Author: djg
Date: Thu Feb 14 19:29:57 2008
New Revision: 47151
URL: http://llvm.org/viewvc/llvm-project?rev=47151&view=rev
Log:
Change MemOperand's size and offset to be 64-bit.
Modified:
llvm/trunk/include/llvm/CodeGen/MemOperand.h
Modified: llvm/trunk/include/llvm/CodeGen/MemOperand.h
URL:
On Feb 12, 2008, at 1:42 PM, Chris Lattner wrote:
>
> On Feb 12, 2008, at 11:27 AM, Dan Gohman wrote:
>
>> Hi Chris,
>>
>> Thanks for the careful review! I've responded to parts of it already,
>> and I'll
>> be responding to more soon.
>
> Thanks Dan!
>
>> On Feb 10, 2008, at 11:56 AM, Chris Latt
Author: dpatel
Date: Thu Feb 14 19:24:49 2008
New Revision: 47150
URL: http://llvm.org/viewvc/llvm-project?rev=47150&view=rev
Log:
Fix PR2028
Added:
llvm/trunk/test/Other/2008-02-14-PassManager.ll
Modified:
llvm/trunk/lib/Transforms/Scalar/LoopRotation.cpp
Modified: llvm/trunk/lib/Transf
On Feb 14, 2008, at 3:40 PM, Evan Cheng wrote:
> Thanks. Since you are hacking on this, can you check something for me?
> I seem to be getting this annoying warning (something like "generating
> 64-bit code for 32-bit cpu") when I do (for example) -march=x86-64 -
> mattr=-sse41. Any idea what's c
Author: johannes
Date: Thu Feb 14 19:22:41 2008
New Revision: 47149
URL: http://llvm.org/viewvc/llvm-project?rev=47149&view=rev
Log:
nocona, core2 and penryn support 64 bit.
Modified:
llvm/trunk/lib/Target/X86/X86.td
Modified: llvm/trunk/lib/Target/X86/X86.td
URL:
http://llvm.org/viewvc/ll
Author: lattner
Date: Thu Feb 14 18:57:28 2008
New Revision: 47148
URL: http://llvm.org/viewvc/llvm-project?rev=47148&view=rev
Log:
Support vector constant zeros, thanks to Zack Rusin for the testcase.
Modified:
llvm/trunk/lib/ExecutionEngine/ExecutionEngine.cpp
Modified: llvm/trunk/lib/Exec
Author: laurov
Date: Thu Feb 14 17:46:20 2008
New Revision: 47145
URL: http://llvm.org/viewvc/llvm-project?rev=47145&view=rev
Log:
Fix PR1437 and limit stack size.
Modified:
test-suite/trunk/RunSafely.sh
Modified: test-suite/trunk/RunSafely.sh
URL:
http://llvm.org/viewvc/llvm-project/test-
Author: laurov
Date: Thu Feb 14 17:43:19 2008
New Revision: 47144
URL: http://llvm.org/viewvc/llvm-project?rev=47144&view=rev
Log:
Shell scripts are not binary files.
Modified:
test-suite/trunk/DiffOutput.sh (props changed)
test-suite/trunk/RunSafely.sh (props changed)
test-suite
Thanks. Since you are hacking on this, can you check something for me?
I seem to be getting this annoying warning (something like "generating
64-bit code for 32-bit cpu") when I do (for example) -march=x86-64 -
mattr=-sse41. Any idea what's causing this bogus warning? Is it when -
mattr is us
On Feb 14, 2008, at 9:28 AM, Duncan Sands wrote:
> Author: baldrick
> Date: Thu Feb 14 11:28:50 2008
> New Revision: 47122
>
> URL: http://llvm.org/viewvc/llvm-project?rev=47122&view=rev
> Log:
> In TargetLowering::LowerCallTo, don't assert that
> the return value is zero-extended if it isn't
> s
Author: johannes
Date: Thu Feb 14 17:35:16 2008
New Revision: 47143
URL: http://llvm.org/viewvc/llvm-project?rev=47143&view=rev
Log:
Rewrite tblgen handling of subtarget features so
it follows the order of the enum, not alphabetical.
The motivation is to make -mattr=+ssse3,+sse41
select SSE41 as i
This is not a new issue. But I am wondering if this may be a compile
time issue if the number of legal FP immediate is sufficiently large?
Should we build a hash table for it instead?
Evan
On Feb 14, 2008, at 12:57 AM, Nate Begeman wrote:
>
> switch (TLI.getOperationAction(ISD::ConstantF
Author: dpatel
Date: Thu Feb 14 17:18:47 2008
New Revision: 47141
URL: http://llvm.org/viewvc/llvm-project?rev=47141&view=rev
Log:
If loop header is also loop exiting block then OrigPN is incoming value for B
loop header.
Fixes PR 2030.
Added:
llvm/trunk/test/Transforms/LoopIndexSplit/2008-
Author: djg
Date: Thu Feb 14 16:38:45 2008
New Revision: 47138
URL: http://llvm.org/viewvc/llvm-project?rev=47138&view=rev
Log:
Fix a warning about comparison between signed and unsigned,
being consistent with the rest of the APInt implementation.
Modified:
llvm/trunk/lib/Support/APInt.cpp
M
Author: criswell
Date: Thu Feb 14 14:42:17 2008
New Revision: 47134
URL: http://llvm.org/viewvc/llvm-project?rev=47134&view=rev
Log:
Fixed formatting; no functionality changes.
Modified:
poolalloc/trunk/lib/PoolAllocate/TransformFunctionBody.cpp
Modified: poolalloc/trunk/lib/PoolAllocate/Tra
Author: criswell
Date: Thu Feb 14 14:24:14 2008
New Revision: 47133
URL: http://llvm.org/viewvc/llvm-project?rev=47133&view=rev
Log:
Use getPoolType() to determine the type of the pool descriptor.
Modified:
poolalloc/trunk/lib/PoolAllocate/PoolAllocate.cpp
poolalloc/trunk/lib/PoolAllocate
Author: criswell
Date: Thu Feb 14 14:23:37 2008
New Revision: 47132
URL: http://llvm.org/viewvc/llvm-project?rev=47132&view=rev
Log:
Change the getPoolType() method to switch between different pool sizes
depending upon whether we're compiling for use with SAFECode.
Modified:
poolalloc/trunk/i
Author: lattner
Date: Thu Feb 14 13:18:13 2008
New Revision: 47129
URL: http://llvm.org/viewvc/llvm-project?rev=47129&view=rev
Log:
Fix PR2029
Added:
llvm/trunk/test/Transforms/LowerInvoke/2008-02-14-CritEdgePhiCrash.ll
Modified:
llvm/trunk/lib/Transforms/Utils/LowerInvoke.cpp
Modified:
Changes in directory llvm-www/releases:
download.html updated: 1.49 -> 1.50
---
Log message:
update the one reference to CFEBuildInstrs.html that I see.
---
Diffs of the changes: (+2 -2)
download.html |4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm-www/releases/
Author: lattner
Date: Thu Feb 14 12:48:56 2008
New Revision: 47128
URL: http://llvm.org/viewvc/llvm-project?rev=47128&view=rev
Log:
Fix a miscompilation from Dan's recent apintification.
Added:
llvm/trunk/test/CodeGen/X86/2008-02-14-BitMiscompile.ll
Modified:
llvm/trunk/lib/CodeGen/Select
Author: sampo
Date: Thu Feb 14 12:43:04 2008
New Revision: 47127
URL: http://llvm.org/viewvc/llvm-project?rev=47127&view=rev
Log:
Fix single precision FP constants on SPU. They are actually legal,
which allows us to kill a target-specific node.
Modified:
llvm/trunk/lib/Target/CellSPU/SPUISel
On Feb 14, 2008, at 6:52 AM, Duncan Sands wrote:
> Hi Dale, this test is failing for me (x86-32 linux):
> there is nothing called retval.
>
> // RUN: %llvmgxx -S -O0 -emit-llvm %s -o - | grep retval | grep S242
> | grep {i32 1} | count 2
OK, that's because Linux returns S242 by the sret mechan
Author: baldrick
Date: Thu Feb 14 11:53:22 2008
New Revision: 47124
URL: http://llvm.org/viewvc/llvm-project?rev=47124&view=rev
Log:
Rename CFEBuildInstrs.html to GCCFEBuildInstrs.html.
Update all references to it and place a redirection
page at the old address.
Added:
llvm/trunk/docs/CFEBuil
Author: baldrick
Date: Thu Feb 14 11:28:50 2008
New Revision: 47122
URL: http://llvm.org/viewvc/llvm-project?rev=47122&view=rev
Log:
In TargetLowering::LowerCallTo, don't assert that
the return value is zero-extended if it isn't
sign-extended. It may also be any-extended.
Also, if a floating poin
Hi Dale, this test is failing for me (x86-32 linux):
there is nothing called retval.
// RUN: %llvmgxx -S -O0 -emit-llvm %s -o - | grep retval | grep S242 | grep
{i32 1} | count 2
Ciao,
Duncan.
; ModuleID = '2008-02-13-sret.cpp'
target datalayout =
"e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:
Author: sampo
Date: Thu Feb 14 02:57:00 2008
New Revision: 47121
URL: http://llvm.org/viewvc/llvm-project?rev=47121&view=rev
Log:
Change how FP immediates are handled.
1) ConstantFP is now expand by default
2) ConstantFP is not turned into TargetConstantFP during Legalize
if it is legal.
Thi
31 matches
Mail list logo