Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/hotspot/share/asm/codeBuffer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#include "utilities/debug.hpp"
#include "utilities/growableArray.hpp"
#include "utilities/linkedlist.hpp"
#include "utilities/resizeableResourceHash.hpp"
#include "utilities/resizableHashTable.hpp"
#include "utilities/macros.hpp"

template <typename T>
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/cds/aotArtifactFinder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
#include "oops/instanceKlass.hpp"
#include "oops/objArrayKlass.hpp"
#include "oops/trainingData.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"

// All the classes that should be included in the AOT cache (in at least the "allocated" state)
static GrowableArrayCHeap<Klass*, mtClassShared>* _all_cached_classes = nullptr;
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/cds/aotClassLinker.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#include "oops/oopsHierarchy.hpp"
#include "utilities/exceptions.hpp"
#include "utilities/growableArray.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"
#include "utilities/macros.hpp"

class AOTLinkedClassTable;
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/cds/aotConstantPoolResolver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#include "oops/oopsHierarchy.hpp"
#include "runtime/handles.hpp"
#include "utilities/exceptions.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"
#include "utilities/macros.hpp"

class ConstantPool;
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/cds/aotReferenceObjSupport.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#include "oops/oopHandle.inline.hpp"
#include "runtime/fieldDescriptor.inline.hpp"
#include "runtime/javaCalls.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"

// Handling of java.lang.ref.Reference objects in the AOT cache
// ============================================================
Expand Down
4 changes: 2 additions & 2 deletions src/hotspot/share/cds/archiveBuilder.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
#include "runtime/os.hpp"
#include "utilities/bitMap.hpp"
#include "utilities/growableArray.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/resizeableResourceHash.hpp"
#include "utilities/hashTable.hpp"
#include "utilities/resizableHashTable.hpp"

class ArchiveHeapInfo;
class CHeapBitMap;
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/cds/archiveHeapWriter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#include "utilities/bitMap.hpp"
#include "utilities/exceptions.hpp"
#include "utilities/growableArray.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"
#include "utilities/macros.hpp"

class MemRegion;
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/cds/cdsHeapVerifier.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#include "cds/heapShared.hpp"
#include "memory/iterator.hpp"
#include "utilities/growableArray.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"

class InstanceKlass;
class Symbol;
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/cds/classListParser.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include "utilities/globalDefinitions.hpp"
#include "utilities/growableArray.hpp"
#include "utilities/istream.hpp"
#include "utilities/resizeableResourceHash.hpp"
#include "utilities/resizableHashTable.hpp"

class constantPoolHandle;
class Thread;
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/cds/heapShared.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
#include "oops/oopHandle.hpp"
#include "oops/oopsHierarchy.hpp"
#include "utilities/growableArray.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"

#if INCLUDE_CDS_JAVA_HEAP
class DumpedInternedStrings;
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/cds/lambdaProxyClassDictionary.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include "classfile/javaClasses.hpp"
#include "memory/metaspaceClosure.hpp"
#include "utilities/growableArray.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"

// This file contains *legacy* optimization for lambdas before JEP 483. May be removed in the future.
//
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/cds/metaspaceShared.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
#include "utilities/align.hpp"
#include "utilities/bitMap.inline.hpp"
#include "utilities/defaultStream.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"
#include "utilities/macros.hpp"
#include "utilities/ostream.hpp"

Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/cds/regeneratedClasses.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#include "runtime/mutexLocker.hpp"
#include "runtime/thread.hpp"
#include "utilities/growableArray.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"

using RegeneratedObjTable = HashTable<address, address, 15889, AnyObj::C_HEAP, mtClassShared>;
static RegeneratedObjTable* _regenerated_objs = nullptr; // InstanceKlass* and Method* orig_obj -> regen_obj
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/classfile/bytecodeAssembler.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include "oops/symbol.hpp"
#include "utilities/globalDefinitions.hpp"
#include "utilities/growableArray.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"

/**
* Bytecode Assembler
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/classfile/classFileParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
#include "utilities/formatBuffer.hpp"
#include "utilities/globalDefinitions.hpp"
#include "utilities/growableArray.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"
#include "utilities/macros.hpp"
#include "utilities/ostream.hpp"
#include "utilities/utf8.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/classfile/classLoaderStats.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#include "oops/oopsHierarchy.hpp"
#include "runtime/vmOperation.hpp"
#include "services/diagnosticCommand.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"

class ClassLoaderStatsDCmd : public DCmd {
public:
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/classfile/loaderConstraints.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#include "oops/klass.inline.hpp"
#include "oops/symbolHandle.hpp"
#include "runtime/mutexLocker.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"

// Overview
//
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/classfile/moduleEntry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
#include "runtime/safepoint.hpp"
#include "utilities/events.hpp"
#include "utilities/growableArray.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"
#include "utilities/ostream.hpp"
#include "utilities/quickSort.hpp"

Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/classfile/moduleEntry.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#include "oops/symbolHandle.hpp"
#include "runtime/mutexLocker.hpp"
#include "utilities/growableArray.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"
#include "utilities/macros.hpp"
#include "utilities/ostream.hpp"
#if INCLUDE_JFR
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/classfile/packageEntry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
#include "runtime/java.hpp"
#include "utilities/events.hpp"
#include "utilities/growableArray.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"
#include "utilities/ostream.hpp"
#include "utilities/quickSort.hpp"

Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/classfile/packageEntry.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include "oops/symbolHandle.hpp"
#include "runtime/atomic.hpp"
#include "utilities/growableArray.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"
#include "utilities/macros.hpp"
#include "utilities/ostream.hpp"
#if INCLUDE_JFR
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/classfile/placeholders.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#include "oops/symbolHandle.hpp"
#include "runtime/javaThread.hpp"
#include "runtime/mutexLocker.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"

class PlaceholderKey {
SymbolHandle _name;
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/classfile/resolutionErrors.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include "oops/symbol.hpp"
#include "runtime/handles.inline.hpp"
#include "runtime/mutexLocker.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"

class ResolutionErrorKey {
ConstantPool* _cpool;
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/classfile/stringTable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
#include "utilities/concurrentHashTable.inline.hpp"
#include "utilities/concurrentHashTableTasks.inline.hpp"
#include "utilities/macros.hpp"
#include "utilities/resizeableResourceHash.hpp"
#include "utilities/resizableHashTable.hpp"
#include "utilities/utf8.hpp"
#if INCLUDE_G1GC
#include "gc/g1/g1CollectedHeap.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/classfile/systemDictionaryShared.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
#include "runtime/java.hpp"
#include "runtime/javaCalls.hpp"
#include "runtime/mutexLocker.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"
#include "utilities/stringUtils.hpp"

SystemDictionaryShared::ArchiveInfo SystemDictionaryShared::_static_archive;
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/classfile/verifier.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#include "runtime/handles.hpp"
#include "utilities/exceptions.hpp"
#include "utilities/growableArray.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"

// The verifier class
class Verifier : AllStatic {
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/code/nmethod.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
#include "utilities/dtrace.hpp"
#include "utilities/events.hpp"
#include "utilities/globalDefinitions.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"
#include "utilities/xmlstream.hpp"
#if INCLUDE_JVMCI
#include "jvmci/jvmciRuntime.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/compiler/disassembler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
#include "runtime/os.hpp"
#include "runtime/stubCodeGenerator.hpp"
#include "runtime/stubRoutines.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"

void* Disassembler::_library = nullptr;
bool Disassembler::_tried_to_load_library = false;
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/gc/z/zVerify.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
#include "runtime/thread.hpp"
#include "utilities/debug.hpp"
#include "utilities/globalDefinitions.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"
#include "utilities/preserveException.hpp"
#include "utilities/vmError.hpp"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#include "oops/instanceKlass.inline.hpp"
#include "runtime/mutexLocker.hpp"
#include "utilities/growableArray.hpp"
#include "utilities/resizeableResourceHash.hpp"
#include "utilities/resizableHashTable.hpp"

constexpr static unsigned int TABLE_SIZE = 1009;
constexpr static unsigned int MAX_TABLE_SIZE = 0x3fffffff;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
#include "runtime/safepoint.hpp"
#include "utilities/exceptions.hpp"
#include "utilities/growableArray.hpp"
#include "utilities/resizeableResourceHash.hpp"
#include "utilities/resizableHashTable.hpp"

ModuleEntry* JfrMethodTracer::_jdk_jfr_module = nullptr;
GrowableArray<JfrInstrumentedClass>* JfrMethodTracer::_instrumented_classes = nullptr;
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/jfr/utilities/jfrSet.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

#include "jfr/utilities/jfrAllocation.hpp"
#include "jfr/utilities/jfrTypes.hpp"
#include "utilities/resizeableResourceHash.hpp"
#include "utilities/resizableHashTable.hpp"

template <typename AllocPolicy = JfrCHeapObj, AnyObj::allocation_type AllocType = AnyObj::C_HEAP, MemTag memtag = mtTracing>
class ConfigTraceID : public AllStatic {
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/jvmci/jvmciCompilerToVMInit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
#include "runtime/flags/jvmFlag.hpp"
#include "runtime/sharedRuntime.hpp"
#include "runtime/stubRoutines.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"
#if INCLUDE_SHENANDOAHGC
#include "gc/shenandoah/shenandoahHeap.hpp"
#include "gc/shenandoah/shenandoahHeapRegion.hpp"
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/logging/logAsyncWriter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#include "runtime/nonJavaThread.hpp"
#include "runtime/os.inline.hpp"
#include "runtime/semaphore.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"

class LogFileStreamOutput;

Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/memory/metaspaceClosure.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#include "utilities/globalDefinitions.hpp"
#include "utilities/growableArray.hpp"
#include "utilities/macros.hpp"
#include "utilities/resizeableResourceHash.hpp"
#include "utilities/resizableHashTable.hpp"
#include <type_traits>

// The metadata hierarchy is separate from the oop hierarchy
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/nmt/nativeCallStackPrinter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include "memory/arena.hpp"
#include "nmt/memTag.hpp"
#include "utilities/globalDefinitions.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"

class outputStream;
class NativeCallStack;
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/oops/constantPool.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
#include "utilities/align.hpp"
#include "utilities/bytes.hpp"
#include "utilities/constantTag.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"
#include "utilities/macros.hpp"

// A ConstantPool is an array containing class constants as described in the
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/oops/trainingData.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
#include "oops/objArrayKlass.hpp"
#include "runtime/handles.hpp"
#include "runtime/mutexLocker.hpp"
#include "utilities/resizeableResourceHash.hpp"
#include "utilities/resizableHashTable.hpp"

class ciEnv;
class ciBaseObject;
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/opto/compile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
#include "runtime/timer.hpp"
#include "utilities/align.hpp"
#include "utilities/copy.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"
#include "utilities/macros.hpp"

// -------------------- Compile::mach_constant_base_node -----------------------
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/opto/mempointer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#include "classfile/vmSymbols.hpp"
#include "opto/addnode.hpp"
#include "opto/mempointer.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"

MemPointerParserCallback MemPointerParserCallback::_empty;

Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/prims/foreignGlobals.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include "memory/resourceArea.hpp"
#include "prims/foreignGlobals.inline.hpp"
#include "runtime/jniHandles.inline.hpp"
#include "utilities/hashtable.hpp"
#include "utilities/hashTable.hpp"

StubLocations::StubLocations() {
for (uint32_t i = 0; i < LOCATION_LIMIT; i++) {
Expand Down
6 changes: 3 additions & 3 deletions src/hotspot/share/prims/jvmtiTagMapTable.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#include "gc/shared/collectedHeap.hpp"
#include "memory/allocation.hpp"
#include "oops/weakHandle.hpp"
#include "utilities/resizeableResourceHash.hpp"
#include "utilities/resizableHashTable.hpp"

class JvmtiEnv;
class JvmtiTagMapKeyClosure;
Expand Down Expand Up @@ -68,11 +68,11 @@ typedef
ResizeableHashTable <JvmtiTagMapKey, jlong,
AnyObj::C_HEAP, mtServiceability,
JvmtiTagMapKey::get_hash,
JvmtiTagMapKey::equals> ResizableResourceHT;
JvmtiTagMapKey::equals> ResizableHT;

class JvmtiTagMapTable : public CHeapObj<mtServiceability> {
private:
ResizableResourceHT _table;
ResizableHT _table;

public:
JvmtiTagMapTable();
Expand Down
Loading