8199283: Remove ValueObj class for allocation subclassing for compiler code

Reviewed-by: stefank, tschatzl
This commit is contained in:
Coleen Phillimore 2018-03-09 20:01:38 -05:00
parent 214248fe11
commit ee9d695757
27 changed files with 62 additions and 62 deletions

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -77,7 +77,7 @@ public:
// 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 {
class CodeSection {
friend class CodeBuffer;
public:
typedef int csize_t; // code size type; would be size_t except for history
@ -246,7 +246,7 @@ class CodeSection VALUE_OBJ_CLASS_SPEC {
};
class CodeString;
class CodeStrings VALUE_OBJ_CLASS_SPEC {
class CodeStrings {
private:
#ifndef PRODUCT
CodeString* _strings;