Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6633953

type2aelembytes[T_ADDRESS] should be 8 bytes in 64 bit VM

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • hs12
    • 7
    • hotspot
    • None
    • b02
    • sparc
    • solaris_9
    • Not verified

        In globalDefinitions.cpp from the first day T_ADDRESS size is defined as 'int' size:

        int type2aelembytes[T_CONFLICT+1] = {
        ...
          T_OBJECT_aelem_bytes, // T_OBJECT = 12,
          T_ARRAY_aelem_bytes, // T_ARRAY = 13,
          0, // T_VOID = 14,
          T_INT_aelem_bytes, // T_ADDRESS = 15,
          0 // T_CONFLICT = 16,
        };

        I think, this is because T_OBJECT_aelem_bytes was also 4 when it was created.
        T_OBJECT and T_ARRAY sizes were fixed when VM was changed to support 64 bits oops.

        The incorrect T_ADDRESS size in 64-bits VM produces whong size of StoreP nodes
        attached to Initialize:

          virtual int memory_size() const { return type2aelembytes[memory_type()]; }

        As result EA can't find stores through Initialize node.
        The current code which use InitializeNode::find_captured_store() may also be broken.
        I think, it works now because LoadP and StoreP has the same T_ADDRESS type.

              kvn Vladimir Kozlov
              kvn Vladimir Kozlov
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

                Created:
                Updated:
                Resolved:
                Imported:
                Indexed: