hotspot/src/share/vm/oops/constMethod.hpp
changeset 27471 6e56277909f1
parent 23515 f4872ef5df09
child 27612 7201412afbd0
equal deleted inserted replaced
27467:cdc1d5bc86cf 27471:6e56277909f1
   275   void set_stackmap_data(Array<u1>* sd) { _stackmap_data = sd; }
   275   void set_stackmap_data(Array<u1>* sd) { _stackmap_data = sd; }
   276   void copy_stackmap_data(ClassLoaderData* loader_data, u1* sd, int length, TRAPS);
   276   void copy_stackmap_data(ClassLoaderData* loader_data, u1* sd, int length, TRAPS);
   277   bool has_stackmap_table() const { return _stackmap_data != NULL; }
   277   bool has_stackmap_table() const { return _stackmap_data != NULL; }
   278 
   278 
   279   void init_fingerprint() {
   279   void init_fingerprint() {
   280     const uint64_t initval = CONST64(0x8000000000000000);
   280     const uint64_t initval = UCONST64(0x8000000000000000);
   281     _fingerprint = initval;
   281     _fingerprint = initval;
   282   }
   282   }
   283 
   283 
   284   uint64_t fingerprint() const                   {
   284   uint64_t fingerprint() const                   {
   285     // Since reads aren't atomic for 64 bits, if any of the high or low order
   285     // Since reads aren't atomic for 64 bits, if any of the high or low order