OSDN Git Service

Add a clarifying comment on HLoadClass::InstructionDataEquals.
authorCalin Juravle <calin@google.com>
Thu, 8 Oct 2015 15:48:31 +0000 (16:48 +0100)
committerCalin Juravle <calin@google.com>
Fri, 9 Oct 2015 13:34:08 +0000 (14:34 +0100)
Change-Id: I4c298a453f03cde9d32fe43aff86886835af16fe

compiler/optimizing/nodes.h

index 615012e..c126b59 100644 (file)
@@ -4510,6 +4510,9 @@ class HLoadClass : public HExpression<1> {
   bool CanBeMoved() const OVERRIDE { return true; }
 
   bool InstructionDataEquals(HInstruction* other) const OVERRIDE {
+    // Note that we don't need to test for generate_clinit_check_.
+    // Whether or not we need to generate the clinit check is processed in
+    // prepare_for_register_allocator based on existing HInvokes and HClinitChecks.
     return other->AsLoadClass()->type_index_ == type_index_ &&
         other->AsLoadClass()->needs_access_check_ == needs_access_check_;
   }