< prev index next >

src/hotspot/cpu/sparc/macroAssembler_sparc.hpp

Print this page

        

@@ -237,11 +237,11 @@
 // Address is an abstraction used to represent a memory location.
 //
 // Note: A register location is represented via a Register, not
 //       via an address for efficiency & simplicity reasons.
 
-class Address VALUE_OBJ_CLASS_SPEC {
+class Address {
  private:
   Register           _base;           // Base register.
   RegisterOrConstant _index_or_disp;  // Index register or constant displacement.
   RelocationHolder   _rspec;
 

@@ -318,11 +318,11 @@
 
   friend class Assembler;
 };
 
 
-class AddressLiteral VALUE_OBJ_CLASS_SPEC {
+class AddressLiteral {
  private:
   address          _address;
   RelocationHolder _rspec;
 
   RelocationHolder rspec_from_rtype(relocInfo::relocType rtype, address addr) {

@@ -450,11 +450,11 @@
 // actual argument or an incoming formal parameter, whether
 // it resides in memory or in a register, in a manner consistent
 // with the SPARC Application Binary Interface, or ABI.  This is
 // often referred to as the native or C calling convention.
 
-class Argument VALUE_OBJ_CLASS_SPEC {
+class Argument {
  private:
   int _number;
   bool _is_in;
 
  public:
< prev index next >