< prev index next >

src/hotspot/share/asm/codeBuffer.hpp

Print this page

        

*** 75,85 **** }; // This class represents a stream of code and associated relocations. // There are a few in each CodeBuffer. // They are filled concurrently, and concatenated at the end. ! class CodeSection VALUE_OBJ_CLASS_SPEC { friend class CodeBuffer; public: typedef int csize_t; // code size type; would be size_t except for history private: --- 75,85 ---- }; // This class represents a stream of code and associated relocations. // There are a few in each CodeBuffer. // They are filled concurrently, and concatenated at the end. ! class CodeSection { friend class CodeBuffer; public: typedef int csize_t; // code size type; would be size_t except for history private:
*** 244,254 **** void print(const char* name); #endif //PRODUCT }; class CodeString; ! class CodeStrings VALUE_OBJ_CLASS_SPEC { private: #ifndef PRODUCT CodeString* _strings; #ifdef ASSERT // Becomes true after copy-out, forbids further use. --- 244,254 ---- void print(const char* name); #endif //PRODUCT }; class CodeString; ! class CodeStrings { private: #ifndef PRODUCT CodeString* _strings; #ifdef ASSERT // Becomes true after copy-out, forbids further use.
< prev index next >