Revision: 13839
Author:   [email protected]
Date:     Wed Mar  6 06:10:02 2013
Log:      Better hydrogen printing for the allocate instruction

[email protected]
BUG=

Review URL: https://codereview.chromium.org/12391057
http://code.google.com/p/v8/source/detail?r=13839

Modified:
 /branches/bleeding_edge/src/hydrogen-instructions.cc
 /branches/bleeding_edge/src/hydrogen-instructions.h

=======================================
--- /branches/bleeding_edge/src/hydrogen-instructions.cc Wed Mar 6 02:49:34 2013 +++ /branches/bleeding_edge/src/hydrogen-instructions.cc Wed Mar 6 06:10:02 2013
@@ -2659,6 +2659,11 @@
 HType HAllocate::CalculateInferredType() {
   return type_;
 }
+
+
+void HAllocate::PrintDataTo(StringStream* stream) {
+  size()->PrintNameTo(stream);
+}


 HType HFastLiteral::CalculateInferredType() {
=======================================
--- /branches/bleeding_edge/src/hydrogen-instructions.h Tue Mar 5 01:14:28 2013 +++ /branches/bleeding_edge/src/hydrogen-instructions.h Wed Mar 6 06:10:02 2013
@@ -4671,6 +4671,8 @@
   bool MustAllocateDoubleAligned() const {
     return (flags_ & ALLOCATE_DOUBLE_ALIGNED) != 0;
   }
+
+  virtual void PrintDataTo(StringStream* stream);

   DECLARE_CONCRETE_INSTRUCTION(Allocate)

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to