From reid at x10sys.com Mon Apr 23 02:23:16 2007
From: reid at x10sys.com (Reid Spencer)
Date: Mon, 23 Apr 2007 02:23:16 -0500
Subject: [llvm-commits] CVS: llvm/lib/System/Unix/Program.inc
Message-ID: <200704230723.l3N7NGqO024469@zion.cs.uiuc.edu>
Changes in directory llvm/lib/System/Unix:
Program.inc updated: 1.23 -> 1.24
---
Log message:
Cygwin doesn't have the RSS_LIMIT for get/setrlimit.
---
Diffs of the changes: (+2 -0)
Program.inc | 2 ++
1 files changed, 2 insertions(+)
Index: llvm/lib/System/Unix/Program.inc
diff -u llvm/lib/System/Unix/Program.inc:1.23 llvm/lib/System/Unix/Program.inc:1.24
--- llvm/lib/System/Unix/Program.inc:1.23 Fri Feb 16 13:11:06 2007
+++ llvm/lib/System/Unix/Program.inc Mon Apr 23 02:22:51 2007
@@ -119,10 +119,12 @@
getrlimit (RLIMIT_DATA, &r);
r.rlim_cur = limit;
setrlimit (RLIMIT_DATA, &r);
+#ifndef __CYGWIN__
// Resident set size.
getrlimit (RLIMIT_RSS, &r);
r.rlim_cur = limit;
setrlimit (RLIMIT_RSS, &r);
+#endif
// Virtual memory.
getrlimit (RLIMIT_AS, &r);
r.rlim_cur = limit;
From baldrick at free.fr Mon Apr 23 03:11:04 2007
From: baldrick at free.fr (Duncan Sands)
Date: Mon, 23 Apr 2007 10:11:04 +0200
Subject: [llvm-commits] CVS: llvm/test/lib/llvm.exp
In-Reply-To: <200704221414.l3MEET4k025424@zion.cs.uiuc.edu>
References: <200704221414.l3MEET4k025424@zion.cs.uiuc.edu>
Message-ID: <200704231011.04764.baldrick@free.fr>
Hi Reid,
> + if { [ string first "$lang" "$llvmgcc_langs" ] >= 0 } {
won't c match c,c++,objc and objc++; and c++ match both c++ and objc++,
etc?
Best wishes,
Duncan.
From jeffc at jolt-lang.org Mon Apr 23 08:55:22 2007
From: jeffc at jolt-lang.org (Jeff Cohen)
Date: Mon, 23 Apr 2007 08:55:22 -0500
Subject: [llvm-commits] CVS: llvm/win32/Bitcode/Bitcode.vcproj
Message-ID: <200704231355.l3NDtM19031172@zion.cs.uiuc.edu>
Changes in directory llvm/win32/Bitcode:
Bitcode.vcproj updated: 1.1 -> 1.2
---
Log message:
Unbreak VC++ build.
---
Diffs of the changes: (+2 -2)
Bitcode.vcproj | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/win32/Bitcode/Bitcode.vcproj
diff -u llvm/win32/Bitcode/Bitcode.vcproj:1.1 llvm/win32/Bitcode/Bitcode.vcproj:1.2
--- llvm/win32/Bitcode/Bitcode.vcproj:1.1 Sun Apr 22 10:00:52 2007
+++ llvm/win32/Bitcode/Bitcode.vcproj Mon Apr 23 08:55:05 2007
@@ -149,10 +149,10 @@
RelativePath="..\..\include\llvm\Bitcode\BitstreamWriter.h">
+Calysto +is a scalable context- and path-sensitive SSA-based static +assertion checker. Unlike other static +checkers, Calysto analyzes SSA directly, which means that it not only +checks the original code, but also the front-end (including +SSA-optimizations) of the compiler which +was used to compile the code. The advantage of doing static checking on +the SSA is language independency and the fact that the checked code is much +closer to the generated assembly than the source code. +
+ ++Several main factors contribute to Calysto's scalability: +
+Currently, Calysto is still in the development phase, and the first results +are encouraging. Most likely, the first public release will happen some +time in the fall 2007. +Spear +and Calysto generated +benchmarks +are available. +
+ +| Unconfirmed Attendees | |
|---|---|
| Name | Organization |
| Rafael Espindola | |
| Lang Hames | University of Sydney |
| Michael McCracken | UCSD, Ph.D. Candidate |
| Unconfirmed 1 | NASA, Ames |
Total unconfirmed: 3
+Total unconfirmed: 4
@@ -355,6 +356,6 @@ src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!">Total confirmed: 38
+Total confirmed: 40
| Unconfirmed Attendees | |||
|---|---|---|---|
| Name | Organization | ||
| string | -The data layout string describing the endianness, - pointer size, and type alignments for which the module was written - (blank means no data layout specified, i.e. a platform-independent - module). | +string | +The data layout string describing the endianness, + pointer size, and type alignments for which the module was written + (blank means no data layout specified, i.e. a platform-independent + module). |
| llist(string) | @@ -959,6 +959,11 @@string | The inline asm block for this module. | |
| zlist(alias) | +A zero terminated list of aliases occurring in the + module. | +||
Aliases are written using 3 uint32_vbr +that encode information about alias itself and aliasee.
+ +The table below provides the bit layout of +the first uint32_vbr which describes alias itself.
+ +| Type | +Description | +
|---|---|
| bit(0-1) | +Alias linkage. 0 - External linkage, 1 - Internal + linkage, 2 - Weak linkage. | +
| bit(2-31) | +Type slot number of type for the alias itself. | +
The next two uint32_vbr's describes the + aliasee.
+ +| Type | +Description | +
|---|---|
| uint32_vbr | +Type slot number of type for the aliasee. | +
| uint32_vbr | +Slot number of the aliasee. | +
A constant pool defines as set of constant values. There are
@@ -2097,7 +2152,7 @@
Reid Spencer and Chris Lattner
The LLVM Compiler Infrastructure
-Last modified: $Date: 2007/04/21 08:16:24 $
+Last modified: $Date: 2007/04/25 14:27:10 $