Searched refs:GrowableArray (Results 1 - 25 of 269) sorted by relevance

1234567891011

/openjdk10/hotspot/src/share/vm/gc/g1/
H A Dg1SurvivorRegions.hpp32 class GrowableArray;
37 GrowableArray<HeapRegion*>* _regions;
50 const GrowableArray<HeapRegion*>* regions() const {
/openjdk10/hotspot/src/share/vm/classfile/
H A DdefaultMethods.hpp46 InstanceKlass* klass, const GrowableArray<Method*>* mirandas, TRAPS);
H A DklassFactory.hpp34 class GrowableArray;
76 GrowableArray<Handle>* cp_patches,
/openjdk10/hotspot/src/share/vm/ci/
H A DciConstantPoolCache.hpp38 GrowableArray<int>* _keys;
39 GrowableArray<void*>* _elements;
H A DciObjectFactory.hpp44 static GrowableArray<ciMetadata*>* _shared_ci_metadata;
49 GrowableArray<ciMetadata*>* _ci_metadata;
50 GrowableArray<ciMethod*>* _unloaded_methods;
51 GrowableArray<ciKlass*>* _unloaded_klasses;
52 GrowableArray<ciInstance*>* _unloaded_instances;
53 GrowableArray<ciReturnAddress*>* _return_addresses;
54 GrowableArray<ciSymbol*>* _symbols; // keep list of symbols created
142 GrowableArray<ciMetadata*>* get_ci_metadata() const { return _ci_metadata; }
H A DciConstantPoolCache.cpp40 new (arena) GrowableArray<void*>(arena, expected_size, 0, 0);
41 _keys = new (arena) GrowableArray<int>(arena, expected_size, 0, 0);
/openjdk10/hotspot/src/share/vm/aot/
H A DaotLoader.hpp33 template <class T> class GrowableArray;
42 static GrowableArray<AOTCodeHeap*>* _heaps;
43 static GrowableArray<AOTLib*>* _libraries;
49 static GrowableArray<AOTCodeHeap*>* heaps();
50 static GrowableArray<AOTLib*>* libraries();
H A DaotLoader.inline.hpp31 GrowableArray<AOTCodeHeap*>* AOTLoader::heaps() { return _heaps; }
32 GrowableArray<AOTLib*>* AOTLoader::libraries() { return _libraries; }
/openjdk10/hotspot/src/share/vm/code/
H A DscopeDesc.hpp77 GrowableArray<ScopeValue*>* locals();
78 GrowableArray<ScopeValue*>* expressions();
79 GrowableArray<MonitorValue*>* monitors();
80 GrowableArray<ScopeValue*>* objects();
110 GrowableArray<ScopeValue*>* _objects;
117 GrowableArray<ScopeValue*>* decode_scope_values(int decode_offset);
118 GrowableArray<MonitorValue*>* decode_monitor_values(int decode_offset);
119 GrowableArray<ScopeValue*>* decode_object_values(int decode_offset);
H A DdebugInfoRec.hpp64 // - GrowableArray<ScopeValue*>
65 // - GrowableArray<MonitorValue*>
113 void dump_object_pool(GrowableArray<ScopeValue*>* objects);
121 DebugToken* create_scope_values(GrowableArray<ScopeValue*>* values);
122 DebugToken* create_monitor_values(GrowableArray<MonitorValue*>* monitors);
169 GrowableArray<DIR_Chunk*>* _all_chunks;
181 // Note: Would use GrowableArray<PcDesc>, but structs are not supported.
198 int serialize_monitor_values(GrowableArray<MonitorValue*>* monitors);
199 int serialize_scope_values(GrowableArray<ScopeValue*>* values);
H A DscopeDesc.cpp91 GrowableArray<ScopeValue*>* ScopeDesc::decode_scope_values(int decode_offset) {
95 GrowableArray<ScopeValue*>* result = new GrowableArray<ScopeValue*> (length);
102 GrowableArray<ScopeValue*>* ScopeDesc::decode_object_values(int decode_offset) {
104 GrowableArray<ScopeValue*>* result = new GrowableArray<ScopeValue*>();
117 GrowableArray<MonitorValue*>* ScopeDesc::decode_monitor_values(int decode_offset) {
121 GrowableArray<MonitorValue*>* result = new GrowableArray<MonitorValue*> (length);
132 GrowableArray<ScopeValu
[all...]
H A DexceptionHandlerTable.hpp107 GrowableArray<intptr_t>* handler_bcis, // the exception handler entry point bcis
108 GrowableArray<intptr_t>* scope_depths_from_top_scope,
112 // the lookup; zero (or null GrowableArray) indicates
114 GrowableArray<intptr_t>* handler_pcos // pc offsets for the compiled handlers
/openjdk10/hotspot/src/share/vm/prims/
H A DjvmtiExtensions.hpp41 static GrowableArray<jvmtiExtensionFunctionInfo*>* _ext_functions;
42 static GrowableArray<jvmtiExtensionEventInfo*>* _ext_events;
/openjdk10/hotspot/src/share/vm/interpreter/
H A Drewriter.hpp40 GrowableArray<int> _cp_map;
41 GrowableArray<int> _cp_cache_map; // for Methodref, Fieldref,
43 GrowableArray<int> _reference_map; // maps from cp index to resolved_refs index (or -1)
44 GrowableArray<int> _resolved_references_map; // for strings, methodHandle, methodType
45 GrowableArray<int> _invokedynamic_references_map; // for invokedynamic resolved refs
46 GrowableArray<int> _method_handle_invokers;
54 GrowableArray<int> _invokedynamic_cp_cache_map;
57 GrowableArray<address>* _patch_invokedynamic_bcps;
58 GrowableArray<int>* _patch_invokedynamic_refs;
77 _patch_invokedynamic_bcps = new GrowableArray<addres
[all...]
H A DbytecodeHistogram.cpp85 static GrowableArray<HistoEntry*>* sorted_array(int* array, int length) {
86 GrowableArray<HistoEntry*>* a = new GrowableArray<HistoEntry*>(length);
94 static int total_count(GrowableArray<HistoEntry*>* profile) {
120 GrowableArray<HistoEntry*>* profile = sorted_array(_counters, Bytecodes::number_of_codes);
162 GrowableArray<HistoEntry*>* profile = sorted_array(_counters, number_of_pairs);
/openjdk10/hotspot/src/share/vm/runtime/
H A DstackValueCollection.hpp34 GrowableArray<StackValue*>* _values;
37 StackValueCollection() { _values = new GrowableArray<StackValue*>(); }
38 StackValueCollection(int length) { _values = new GrowableArray<StackValue*>(length); }
/openjdk10/hotspot/src/share/vm/utilities/
H A Dhistogram.hpp84 GrowableArray<HistogramElement*>* _elements;
85 GrowableArray<HistogramElement*>* elements() { return _elements; }
H A DintHisto.hpp54 GrowableArray<int>* _elements;
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/utilities/
H A DGrowableArray.java33 public class GrowableArray<T> extends GenericGrowableArray { class in inherits:GenericGrowableArray
43 Type type = db.lookupType("GrowableArray<int>");
51 public static <S> GrowableArray<S> create(Address addr, InstanceConstructor<S> v) {
53 return new GrowableArray<S>(addr, v);
64 private GrowableArray(Address addr, InstanceConstructor<T> v) { method in class:GrowableArray
/openjdk10/hotspot/src/share/vm/opto/
H A Drootnode.hpp69 virtual void related(GrowableArray<Node*> *in_rel, GrowableArray<Node*> *out_rel, bool compact) const;
H A Descape.hpp132 GrowableArray<PointsToNode*> _edges; // List of nodes this node points to
133 GrowableArray<PointsToNode*> _uses; // List of nodes which point to this node
255 GrowableArray<PointsToNode*> _bases; // List of JavaObject nodes which point to this node
323 GrowableArray<PointsToNode*> _nodes; // Map from ideal nodes to
326 GrowableArray<PointsToNode*> _worklist; // Nodes to be processed
383 bool complete_connection_graph(GrowableArray<PointsToNode*>& ptnodes_worklist,
384 GrowableArray<JavaObjectNode*>& non_escaped_worklist,
385 GrowableArray<JavaObjectNode*>& java_objects_worklist,
386 GrowableArray<FieldNode*>& oop_fields_worklist);
389 void verify_connection_graph(GrowableArray<PointsToNod
[all...]
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/ci/
H A DciObjectFactory.java75 public GrowableArray<ciMetadata> objects() {
76 return GrowableArray.create(ciMetadataField.getValue(getAddress()), ciMetadataConstructor);
79 public GrowableArray<ciSymbol> symbols() {
80 return GrowableArray.create(symbolsField.getValue(getAddress()), ciSymbolConstructor);
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/opto/
H A DInlineTree.java33 import sun.jvm.hotspot.utilities.GrowableArray;
84 public GrowableArray<InlineTree> subtrees() {
87 return GrowableArray.create(addr, inlineTreeConstructor);
101 GrowableArray<InlineTree> subt = subtrees();
113 GrowableArray<InlineTree> subt = subtrees();
128 GrowableArray<InlineTree> subt = subtrees();
/openjdk10/hotspot/src/share/vm/services/
H A DdiagnosticFramework.cpp340 GrowableArray<const char *>* DCmdParser::argument_name_array() {
342 GrowableArray<const char *>* array = new GrowableArray<const char *>(count);
356 GrowableArray<DCmdArgumentInfo*>* DCmdParser::argument_info_array() {
358 GrowableArray<DCmdArgumentInfo*>* array = new GrowableArray<DCmdArgumentInfo *>(count);
427 GrowableArray<const char*>* DCmdWithParser::argument_name_array() {
431 GrowableArray<DCmdArgumentInfo*>* DCmdWithParser::argument_info_array() {
549 GrowableArray<const char*>* DCmdFactory::DCmd_list(DCmdSource source) {
551 GrowableArray<cons
[all...]
H A DdiagnosticFramework.hpp253 GrowableArray<const char*>* argument_name_array();
254 GrowableArray<DCmdArgumentInfo*>* argument_info_array();
327 virtual GrowableArray<const char*>* argument_name_array() {
328 GrowableArray<const char*>* array = new GrowableArray<const char*>(0);
331 virtual GrowableArray<DCmdArgumentInfo*>* argument_info_array() {
332 GrowableArray<DCmdArgumentInfo*>* array = new GrowableArray<DCmdArgumentInfo*>(0);
357 virtual GrowableArray<const char*>* argument_name_array();
358 virtual GrowableArray<DCmdArgumentInf
[all...]

Completed in 192 milliseconds

1234567891011