Revision: 7391
Author:   [email protected]
Date:     Mon Mar 28 06:34:10 2011
Log:      Remove unused method, this is not used anymore after 7360.
Review URL: http://codereview.chromium.org/6735012
http://code.google.com/p/v8/source/detail?r=7391

Modified:
 /branches/bleeding_edge/src/ia32/lithium-codegen-ia32.cc
 /branches/bleeding_edge/src/x64/lithium-codegen-x64.cc

=======================================
--- /branches/bleeding_edge/src/ia32/lithium-codegen-ia32.cc Fri Mar 25 03:29:34 2011 +++ /branches/bleeding_edge/src/ia32/lithium-codegen-ia32.cc Mon Mar 28 06:34:10 2011
@@ -114,16 +114,6 @@
   memcpy(copy.start(), builder.Finalize(), copy.length());
   masm()->RecordComment(copy.start());
 }
-
-
-bool LCodeGen::GenerateRelocPadding() {
-  int reloc_size = masm()->relocation_writer_size();
-  while (reloc_size < deoptimization_reloc_size.min_size) {
-    __ RecordComment(RelocInfo::kFillerCommentString, true);
-    reloc_size += RelocInfo::kMinRelocCommentSize;
-  }
-  return !is_aborted();
-}


 bool LCodeGen::GeneratePrologue() {
=======================================
--- /branches/bleeding_edge/src/x64/lithium-codegen-x64.cc Fri Mar 25 03:29:34 2011 +++ /branches/bleeding_edge/src/x64/lithium-codegen-x64.cc Mon Mar 28 06:34:10 2011
@@ -63,9 +63,6 @@
   }

   virtual void AfterCall() {
-    // Ensure that we have enough space in the reloc info to patch
-    // this with calls when doing deoptimization.
-    codegen_->masm()->RecordComment(RelocInfo::kFillerCommentString, true);
     codegen_->RecordSafepoint(pointers_, deoptimization_index_);
   }

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to