[llvm-commits] CVS: llvm-www/pubs/2009-04-TECS-MEMMU.html 2009-04-TECS-MEMMU.pdf pubs.js

Chris Lattner sabre at nondot.org
Fri Jun 26 23:52:02 PDT 2009



Changes in directory llvm-www/pubs:

2009-04-TECS-MEMMU.html added (r1.1)
2009-04-TECS-MEMMU.pdf added (r1.1)
pubs.js updated: 1.19 -> 1.20
---
Log message:

add MEMMU: Memory expansion for MMU-less embedded systems


---
Diffs of the changes:  (+74 -1)

 2009-04-TECS-MEMMU.html |   66 ++++++++++++++++++++++++++++++++++++++++++++++++
 2009-04-TECS-MEMMU.pdf  |    0 
 pubs.js                 |    9 +++++-
 3 files changed, 74 insertions(+), 1 deletion(-)


Index: llvm-www/pubs/2009-04-TECS-MEMMU.html
diff -c /dev/null llvm-www/pubs/2009-04-TECS-MEMMU.html:1.1
*** /dev/null	Sat Jun 27 01:48:28 2009
--- llvm-www/pubs/2009-04-TECS-MEMMU.html	Sat Jun 27 01:48:15 2009
***************
*** 0 ****
--- 1,66 ----
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+ <html>
+ <head>
+   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+   <link rel="stylesheet" href="../llvm.css" type="text/css" media="screen">
+   <title>MEMMU: Memory expansion for MMU-less embedded systems</title>
+ </head>
+ <body>
+ 
+ <div class="pub_title">
+ MEMMU: Memory expansion for MMU-less embedded systems
+ </div>
+ <div class="pub_author">
+   Lan S. Bai, Lei Yang, and Robert P. Dick	
+ </div>
+ 
+ <h2>Abstract:</h2>
+ <blockquote>
+ Random access memory (RAM) is tightly constrained in the least expensive, lowest-power embedded systems such as sensor network nodes and portable consumer electronics. The most widely used sensor network nodes have only 4 to 10KB of RAM and do not contain memory management units (MMUs). It is difficult to implement complex applications under such tight memory constraints. Nonetheless, price and power-consumption constraints make it unlikely that increases in RAM in these systems will keep pace with the increasing memory requirements of applications.<p>
+ 
+ We propose the use of automated compile-time and runtime techniques to increase the amount of usable memory in MMU-less embedded systems. The proposed techniques do not increase hardware cost, and require few or no changes to existing applications. We have developed runtime library routines and compiler transformations to control and optimize the automatic migration of application data between compressed and uncompressed memory regions, as well as a fast compression algorithm well suited to this application. These techniques were experimentally evaluated on Crossbow TelosB sensor network nodes running a number of data-collection and signal-processing applications. Our results indicate that available memory can be increased by up to 50% with less than 10% performance degradation for most benchmarks.
+ </blockquote>
+ 
+ <h2>Published:</h2>
+ <blockquote>
+ "MEMMU: Memory expansion for MMU-less embedded systems"<br>
+ Lan S. Bai, Lei Yang, and Robert P. Dick<br>
+ <i>
+ Proceedings of the ACM Transactions on Embedded Computing Systems (TECS)
+ </i>, New York, NY, April 2009.
+ </blockquote>
+ 
+ <h2>Download:</h2>
+ <h3>Paper:</h3>
+ <ul>
+   <li><a href="2009-04-TECS-MEMMU.pdf">
+   MEMMU: Memory expansion for MMU-less embedded systems
+   </a> (PDF)</li>
+ </ul>
+ 
+ <h2>BibTeX Entry:</h2>
+ <pre>
+ @article{1509295,
+  author = {Bai, Lan S. and Yang, Lei and Dick, Robert P.},
+  title = {MEMMU: Memory expansion for MMU-less embedded systems},
+  journal = {ACM Trans. Embed. Comput. Syst.},
+  volume = {8},
+  number = {3},
+  year = {2009},
+  issn = {1539-9087},
+  pages = {1--33},
+  doi = {http://doi.acm.org/10.1145/1509288.1509295},
+  publisher = {ACM},
+  address = {New York, NY, USA},
+ }
+ </pre>
+ 
+ <!-- *********************************************************************** -->
+ <hr>
+   <a href="http://jigsaw.w3.org/css-validator/check/referer"><img
+   src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!"></a>
+   <a href="http://validator.w3.org/check/referer"><img
+   src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!" /></a>
+ 
+ </body>
+ </html>


Index: llvm-www/pubs/2009-04-TECS-MEMMU.pdf


Index: llvm-www/pubs/pubs.js
diff -u llvm-www/pubs/pubs.js:1.19 llvm-www/pubs/pubs.js:1.20
--- llvm-www/pubs/pubs.js:1.19	Sat Jun 27 01:40:12 2009
+++ llvm-www/pubs/pubs.js	Sat Jun 27 01:48:16 2009
@@ -41,6 +41,14 @@
    month: 5,
    year: 2009},
 
+  {url: '2009-04-TECS-MEMMU.html',
+   title: 'MEMMU: Memory expansion for MMU-less embedded systems',
+   author: 'Lan S. Bai, Lei Yang, and Robert P. Dick',
+   published: "Proc. of the ACM Transactions on Embedded Computing Systems (TECS)",
+   location: "New York, NY, USA",
+   month: 4,
+   year: 2009},
+
   {url: '2009-04-SCOPES-SimulationOfInterruptsWithRollback.html',
    title: 'Precise simulation of interrupts using a rollback mechanism',
    author: 'Florian Brandner',
@@ -49,7 +57,6 @@
    month: 4,
    year: 2009},
 
-
   {url: '2009-04-SCOPES-RegisterAllocationDeconstructed.html',
    title: 'Register allocation deconstructed',
    author: 'David Ryan Koes and Seth Copen Goldstein',






More information about the llvm-commits mailing list