Improved performance of garbage collection by changing the way we use the marking stack in the event of stack overflow during full garbage collection and by changing the way we mark roots.

Cleaned up ARM version by removing top of stack caching and by introducing push/pop elimination.

Cleaned up the way runtime functions are called to allow runtime calls with no arguments.

Changed Windows build options to make sure that exceptions are disabled and that optimization flags are enabled.

Added first version of Visual Studio project files.



git-svn-id: http://v8.googlecode.com/svn/trunk@13 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
diff --git a/src/assembler.cc b/src/assembler.cc
index b3c8afb..ebe0d6a 100644
--- a/src/assembler.cc
+++ b/src/assembler.cc
@@ -435,10 +435,8 @@
   }
   return "unknown relocation type";
 }
-#endif  // ENABLE_DISASSEMBLER
 
 
-#ifdef DEBUG
 void RelocInfo::Print() {
   PrintF("%p  %s", pc_, RelocModeName(rmode_));
   if (rmode_ == comment) {
@@ -461,8 +459,10 @@
 
   PrintF("\n");
 }
+#endif  // ENABLE_DISASSEMBLER
 
 
+#ifdef DEBUG
 void RelocInfo::Verify() {
   switch (rmode_) {
     case embedded_object: