src/hotspot/share/oops/accessBackend.hpp
changeset 52070 e4d72440d60e
parent 50728 9375184cec98
child 52100 62523934374c
equal deleted inserted replaced
52069:3ecaae33241a 52070:e4d72440d60e
   408 
   408 
   409   static void clone(oop src, oop dst, size_t size);
   409   static void clone(oop src, oop dst, size_t size);
   410 
   410 
   411   static oop resolve(oop obj) { return obj; }
   411   static oop resolve(oop obj) { return obj; }
   412 
   412 
   413   static bool equals(oop o1, oop o2) { return o1 == o2; }
   413   static bool equals(oop o1, oop o2) { return (void*)o1 == (void*)o2; }
   414 };
   414 };
   415 
   415 
   416 // Below is the implementation of the first 4 steps of the template pipeline:
   416 // Below is the implementation of the first 4 steps of the template pipeline:
   417 // * Step 1: Set default decorators and decay types. This step gets rid of CV qualifiers
   417 // * Step 1: Set default decorators and decay types. This step gets rid of CV qualifiers
   418 //           and sets default decorators to sensible values.
   418 //           and sets default decorators to sensible values.