mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-25 22:04:51 +02:00
8199283: Remove ValueObj class for allocation subclassing for compiler code
Reviewed-by: stefank, tschatzl
This commit is contained in:
parent
214248fe11
commit
ee9d695757
27 changed files with 62 additions and 62 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue