hotspot/src/share/vm/includeDB_core
author johnc
Fri, 29 Jan 2010 14:51:38 -0800
changeset 4885 cee90a57b58f
parent 4737 046d094a69d8
child 4888 160bfc924682
permissions -rw-r--r--
6885297: java -XX:RefDiscoveryPolicy=2 or -XX:TLABWasteTargetPercent=0 cause VM crash Summary: Interval checking is now being performed on the values passed in for these two flags. The current acceptable range for RefDiscoveryPolicy is [0..1], and for TLABWasteTargetPercent it is [1..100]. Reviewed-by: apetrusenko, ysr
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
//
4581
e89fbd1bcb3d 6914206: change way of permission checking for generated MethodHandle adapters
twisti
parents: 4567
diff changeset
     2
// Copyright 1997-2010 Sun Microsystems, Inc.  All Rights Reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
// DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
// This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
// under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
// published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
// This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
// version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
// accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
// You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
// 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
// Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
// Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
// CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
// have any questions.
190
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
    22
//
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
// NOTE: DO NOT CHANGE THIS COPYRIGHT TO NEW STYLE - IT WILL BREAK makeDeps!
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// includeDB format:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// a comment starts with '// ' and goes to the end of the line
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// anything else is a pair of filenames.  The line "x.cpp y.hpp" means
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// "x.cpp must include y.hpp".  Similarly, "y.hpp z.hpp" means "any file including
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
// y.hpp must also include z.hpp, and z.hpp must be included before y.hpp".
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// Style hint: we try to keep the entries ordered alphabetically, both
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// globally (left-hand sides) and within a given file (right-hand sides)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// To avoid unnecessary conflicts with the work of other programmers,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// do not delete, move, or reformat pre-existing lines.  Do not attempt
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// to "optimize" this file incrementally.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// ============ Platform dependent include files ===========
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
// Some header files occur in clusters.  Header files which depend
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// on the token "generate_platform_dependent_include" are included
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
// directly by other header files, and should not be explicitly declared
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
// as dependencies.  Header files named H.inline.hpp generally contain
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
// bodies for inline functions declared in H.hpp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
//
190
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
    49
// NOTE: Files that use the token "generate_platform_dependent_include"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
// are expected to contain macro references like <os>, <arch_model>, ... and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
// makedeps has a dependency on these platform files looking like:
190
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
    52
// foo_<macro>.trailing_string
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
// (where "trailing_string" can be any legal filename strings but typically
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
// is "hpp" or "inline.hpp").
190
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
    55
//
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
// The dependency in makedeps (and enforced) is that an underscore
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
// will precedure the macro invocation. Note that this restriction
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
// is only enforced on filenames that have the dependency token
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
// "generate_platform_dependent_include" so other files using macro
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
// expansion (typically .cpp files) have no requirement to have
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
// an underscore precede the macro although this is encouraged for
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
// readibility.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
// ======= Circular dependencies and inline functions ==========
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
// (Sometimes, circular dependencies prevent complex function bodies
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
// from being defined directly in H.hpp.  In such cases, a client S.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
// of H.hpp must always declare a dependency on H.inline.hpp, which in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
// turn will declare a dependency on H.hpp.  If by some mischance S.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
// declares a dependency on H.hpp, the compiler may complain about missing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
// inline function bodies, or (perhaps) the program may fail to link.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
// The solution is to have S.cpp depend on H.inline.hpp instead of H.hpp.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
// Generally, if in response to a source code change the compiler
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
// issues an error in a file F (which may be either a header or a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
// source file), you should consider if the error arises from a missing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
// class definition C.  If that is the case, find the header file H which
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
// contains C (often, H=C.hpp, but you may have to search for C's definition).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
// Then, add a line to the includeDB file as appropriate.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
// Here are some typical compiler errors that may require changes to includeDB.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
// (Messages are taken from Sun's SPARC compiler.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
//   "klassVtable.cpp", line 96: Error: No_GC_Verifier is not defined.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
// Source code:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
//   No_GC_Verifier no_gc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
// The problem is that the class name No_GC_Verifier is not declared,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
// so the compiler is confused by the syntax.  The solution:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
//   klassVtable.cpp                    gcLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
// Sometimes the compiler has only partial knowledge about a class:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
//   "privilegedStack.cpp", line 60: Error: cast is not a member of instanceKlass.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
// Source code:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
//   if (_protection_domain != instanceKlass::cast(method->method_holder())->protection_domain()) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
// Here, instanceKlass is known to the compiler as a type, because of a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
// forward declaration somewhere ("class instanceKlass;").  The problem
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
// is that the compiler has not seen the body of instanceKlass, and so it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
// complains that it does not know about "instanceKlass::cast".  Solution:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
//   privilegedStack.cpp             instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
// Here's another example of a missing declaration:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
//   "privilegedStack.cpp", line 111: Error: The function AllocateHeap must have a prototype.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
// Source code:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
//   _array = NEW_C_HEAP_ARRAY(PrivilegedElement, initial_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
// The problem is that the macro call expands to use a heap function
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
// which is defined (for technical reasons) in a different file.  Solution:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
//   privilegedStack.cpp             allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
// The macro is defined in allocation.hpp, while the function is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
// defined (as an inline) in allocation.inline.hpp.  Generally, if you
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
// find you need a header H.hpp, and there is also a header
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
// H.inline.hpp use the latter, because it contains inline definitions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
// you will require.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
abstractCompiler.cpp                    abstractCompiler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
abstractCompiler.cpp                    mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
abstractCompiler.hpp                    compilerInterface.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
abstractInterpreter.hpp                 bytecodes.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
abstractInterpreter.hpp                 interp_masm_<arch_model>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
abstractInterpreter.hpp                 stubs.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
abstractInterpreter.hpp                 thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
abstractInterpreter.hpp                 top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
abstractInterpreter.hpp                 vmThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
accessFlags.cpp                         accessFlags.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
accessFlags.cpp                         oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
accessFlags.cpp                         os_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
accessFlags.hpp                         jvm.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
accessFlags.hpp                         top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
allocation.cpp                          allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
allocation.cpp                          allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
allocation.cpp                          os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
allocation.cpp                          os_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
allocation.cpp                          ostream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
allocation.cpp                          resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
allocation.cpp                          task.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
allocation.cpp                          threadCritical.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
allocation.hpp                          globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
allocation.hpp                          globals.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
allocation.inline.hpp                   os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
aprofiler.cpp                           aprofiler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
aprofiler.cpp                           collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
aprofiler.cpp                           oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
aprofiler.cpp                           oop.inline2.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
aprofiler.cpp                           permGen.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
aprofiler.cpp                           resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
aprofiler.cpp                           space.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
aprofiler.cpp                           systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
aprofiler.hpp                           allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
aprofiler.hpp                           klass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
aprofiler.hpp                           klassOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
aprofiler.hpp                           top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
aprofiler.hpp                           universe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
arguments.cpp                           allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
arguments.cpp                           arguments.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
arguments.cpp                           cardTableRS.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
arguments.cpp                           compilerOracle.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
arguments.cpp                           defaultStream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
arguments.cpp                           globals_extension.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
arguments.cpp                           java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
arguments.cpp                           javaAssertions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
arguments.cpp                           jvmtiExport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
arguments.cpp                           management.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
arguments.cpp                           oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
arguments.cpp                           os_<os_family>.inline.hpp
4885
cee90a57b58f 6885297: java -XX:RefDiscoveryPolicy=2 or -XX:TLABWasteTargetPercent=0 cause VM crash
johnc
parents: 4737
diff changeset
   178
arguments.cpp                           referenceProcessor.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
arguments.cpp                           universe.inline.hpp
2111
dab8a43dd738 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 1904
diff changeset
   180
arguments.cpp                           vm_version_<arch>.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
950
6112b627bb36 6721093: -XX:AppendRatio=N not supported
kamg
parents: 670
diff changeset
   182
arguments.hpp                           java.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
arguments.hpp                           perfData.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
arguments.hpp                           top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
array.cpp                               array.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
array.cpp                               resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
array.cpp                               thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
array.hpp                               allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
array.hpp                               allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
arrayKlass.cpp                          arrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
arrayKlass.cpp                          arrayKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
arrayKlass.cpp                          arrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
arrayKlass.cpp                          collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
arrayKlass.cpp                          gcLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
arrayKlass.cpp                          instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
arrayKlass.cpp                          javaClasses.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
arrayKlass.cpp                          jvmti.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
arrayKlass.cpp                          objArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
arrayKlass.cpp                          oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
arrayKlass.cpp                          systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
arrayKlass.cpp                          universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
arrayKlass.cpp                          vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
arrayKlass.hpp                          klass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
arrayKlass.hpp                          klassOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
arrayKlass.hpp                          klassVtable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
arrayKlass.hpp                          universe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
arrayKlassKlass.cpp                     arrayKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
arrayKlassKlass.cpp                     handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
arrayKlassKlass.cpp                     javaClasses.hpp
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 347
diff changeset
   215
arrayKlassKlass.cpp                     markSweep.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
arrayKlassKlass.cpp                     oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
arrayKlassKlass.hpp                     arrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
arrayKlassKlass.hpp                     klassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
arrayOop.cpp                            arrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
arrayOop.cpp                            objArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
arrayOop.cpp                            oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
arrayOop.cpp                            symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
arrayOop.hpp                            oop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
arrayOop.hpp                            universe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
arrayOop.hpp                            universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
assembler.cpp                           assembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
assembler.cpp                           assembler.inline.hpp
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
   232
assembler.cpp                           assembler_<arch>.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
assembler.cpp                           codeBuffer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
assembler.cpp                           icache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
assembler.cpp                           os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
assembler.hpp                           allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
assembler.hpp                           allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
assembler.hpp                           debug.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
assembler.hpp                           growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
assembler.hpp                           oopRecorder.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
assembler.hpp                           register_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
assembler.hpp                           relocInfo.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
assembler.hpp                           top.hpp
2111
dab8a43dd738 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 1904
diff changeset
   245
assembler.hpp                           vm_version_<arch>.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
assembler.inline.hpp                    assembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
assembler.inline.hpp                    codeBuffer.hpp
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 225
diff changeset
   249
assembler.inline.hpp                    disassembler.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
assembler.inline.hpp                    threadLocalStorage.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
   252
assembler_<arch>.cpp              assembler_<arch>.inline.hpp
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
   253
assembler_<arch>.cpp              biasedLocking.hpp
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
   254
assembler_<arch>.cpp              cardTableModRefBS.hpp
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
   255
assembler_<arch>.cpp              collectedHeap.inline.hpp
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
   256
assembler_<arch>.cpp              interfaceSupport.hpp
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
   257
assembler_<arch>.cpp              interpreter.hpp
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2338
diff changeset
   258
assembler_<arch>.cpp              methodHandles.hpp
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
   259
assembler_<arch>.cpp              objectMonitor.hpp
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
   260
assembler_<arch>.cpp              os.hpp
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
   261
assembler_<arch>.cpp              resourceArea.hpp
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
   262
assembler_<arch>.cpp              sharedRuntime.hpp
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
   263
assembler_<arch>.cpp              stubRoutines.hpp
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
   264
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
   265
assembler_<arch>.hpp              generate_platform_dependent_include
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
   266
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
   267
assembler_<arch>.inline.hpp       assembler.inline.hpp
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
   268
assembler_<arch>.inline.hpp       codeBuffer.hpp
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
   269
assembler_<arch>.inline.hpp       codeCache.hpp
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
   270
assembler_<arch>.inline.hpp       handles.inline.hpp
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
   271
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
   272
assembler_<os_arch>.cpp           assembler.hpp
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
   273
assembler_<os_arch>.cpp           assembler_<arch>.inline.hpp
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
   274
assembler_<os_arch>.cpp           os.hpp
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
   275
assembler_<os_arch>.cpp           threadLocalStorage.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
atomic.cpp                              atomic.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
atomic.cpp                              atomic_<os_arch>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
atomic.cpp                              os_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
atomic.hpp                              allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
atomic_<os_arch>.inline.hpp             atomic.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
atomic_<os_arch>.inline.hpp             os.hpp
2111
dab8a43dd738 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 1904
diff changeset
   285
atomic_<os_arch>.inline.hpp             vm_version_<arch>.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
// attachListener is jck optional, put cpp deps in includeDB_features
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
attachListener.hpp                      allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
attachListener.hpp                      debug.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
attachListener.hpp                      ostream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
4461
c17c526d36ef 6906727: UseCompressedOops: some card-marking fixes related to object arrays
ysr
parents: 3696
diff changeset
   293
barrierSet.cpp				barrierSet.inline.hpp
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 389
diff changeset
   294
barrierSet.cpp			        collectedHeap.hpp
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 389
diff changeset
   295
barrierSet.cpp				universe.hpp
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 389
diff changeset
   296
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
barrierSet.hpp                          memRegion.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
barrierSet.hpp                          oopsHierarchy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
barrierSet.inline.hpp                   barrierSet.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
barrierSet.inline.hpp                   cardTableModRefBS.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
bcEscapeAnalyzer.cpp                    bcEscapeAnalyzer.hpp
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 389
diff changeset
   304
bcEscapeAnalyzer.cpp                    bitMap.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
bcEscapeAnalyzer.cpp                    bytecode.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
bcEscapeAnalyzer.cpp                    ciConstant.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
bcEscapeAnalyzer.cpp                    ciField.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
bcEscapeAnalyzer.cpp                    ciMethodBlocks.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
bcEscapeAnalyzer.cpp                    ciStreams.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
bcEscapeAnalyzer.hpp                    allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
bcEscapeAnalyzer.hpp                    ciMethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
bcEscapeAnalyzer.hpp                    ciMethodData.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
bcEscapeAnalyzer.hpp                    dependencies.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
bcEscapeAnalyzer.hpp                    growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
biasedLocking.cpp                       biasedLocking.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
biasedLocking.cpp                       klass.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
biasedLocking.cpp                       markOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
biasedLocking.cpp                       synchronizer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
biasedLocking.cpp                       task.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
biasedLocking.cpp                       vframe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
biasedLocking.cpp                       vmThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
biasedLocking.cpp                       vm_operations.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
biasedLocking.hpp                       growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
biasedLocking.hpp                       handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 389
diff changeset
   329
bitMap.cpp                              allocation.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
bitMap.cpp                              bitMap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
bitMap.cpp                              copy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
bitMap.cpp                              os_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
bitMap.hpp                              allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
bitMap.hpp                              top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
bitMap.inline.hpp                       atomic.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
bitMap.inline.hpp                       bitMap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
blockOffsetTable.cpp                    blockOffsetTable.inline.hpp
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 347
diff changeset
   341
blockOffsetTable.cpp                    collectedHeap.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
blockOffsetTable.cpp                    iterator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
blockOffsetTable.cpp                    java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
blockOffsetTable.cpp                    oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
blockOffsetTable.cpp                    space.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
blockOffsetTable.cpp                    universe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
blockOffsetTable.hpp                    globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
blockOffsetTable.hpp                    memRegion.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
blockOffsetTable.hpp                    virtualspace.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
blockOffsetTable.inline.hpp             blockOffsetTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
blockOffsetTable.inline.hpp             space.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
bytecode.cpp                            bytecode.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
bytecode.cpp                            constantPoolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
bytecode.cpp                            fieldType.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
bytecode.cpp                            handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
bytecode.cpp                            linkResolver.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
bytecode.cpp                            oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
bytecode.cpp                            safepoint.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
bytecode.cpp                            signature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
bytecode.hpp                            allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
bytecode.hpp                            bytecodes.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
bytecode.hpp                            bytes_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
bytecode.hpp                            methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
bytecodeHistogram.cpp                   bytecodeHistogram.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
bytecodeHistogram.cpp                   growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
bytecodeHistogram.cpp                   os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
bytecodeHistogram.cpp                   resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
bytecodeHistogram.hpp                   allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
bytecodeHistogram.hpp                   bytecodes.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
bytecodeInterpreter.cpp                 no_precompiled_headers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
bytecodeInterpreter.cpp                 bytecodeHistogram.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
bytecodeInterpreter.cpp                 bytecodeInterpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
bytecodeInterpreter.cpp                 bytecodeInterpreter.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
bytecodeInterpreter.cpp                 cardTableModRefBS.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
bytecodeInterpreter.cpp                 collectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
bytecodeInterpreter.cpp                 exceptions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
bytecodeInterpreter.cpp                 frame.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
bytecodeInterpreter.cpp                 handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
bytecodeInterpreter.cpp                 interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
bytecodeInterpreter.cpp                 interpreterRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
bytecodeInterpreter.cpp                 interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
bytecodeInterpreter.cpp                 jvmtiExport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
bytecodeInterpreter.cpp                 objArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
bytecodeInterpreter.cpp                 oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
bytecodeInterpreter.cpp                 orderAccess_<os_arch>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
bytecodeInterpreter.cpp                 resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
bytecodeInterpreter.cpp                 sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
bytecodeInterpreter.cpp                 threadCritical.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
bytecodeInterpreter.cpp                 vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
bytecodeInterpreter_<arch>.cpp          assembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
bytecodeInterpreter_<arch>.cpp          bytecodeInterpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
bytecodeInterpreter_<arch>.cpp          bytecodeInterpreter.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
bytecodeInterpreter_<arch>.cpp          debug.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
bytecodeInterpreter_<arch>.cpp          deoptimization.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
bytecodeInterpreter_<arch>.cpp          frame.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
bytecodeInterpreter_<arch>.cpp          interp_masm_<arch_model>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
bytecodeInterpreter_<arch>.cpp          interpreterRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
bytecodeInterpreter_<arch>.cpp          interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
bytecodeInterpreter_<arch>.cpp          jvmtiExport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
bytecodeInterpreter_<arch>.cpp          jvmtiThreadState.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
bytecodeInterpreter_<arch>.cpp          methodDataOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
bytecodeInterpreter_<arch>.cpp          methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
bytecodeInterpreter_<arch>.cpp          oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
bytecodeInterpreter_<arch>.cpp          sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
bytecodeInterpreter_<arch>.cpp          stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
bytecodeInterpreter_<arch>.cpp          synchronizer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
bytecodeInterpreter_<arch>.cpp          vframeArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
bytecodeInterpreterWithChecks.cpp       bytecodeInterpreter.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
bytecodeInterpreter.hpp                 allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
bytecodeInterpreter.hpp                 bytes_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
bytecodeInterpreter.hpp                 frame.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
bytecodeInterpreter.hpp                 globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
bytecodeInterpreter.hpp                 globals.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
bytecodeInterpreter.hpp                 methodDataOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
bytecodeInterpreter.hpp                 methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
bytecodeInterpreter.hpp                 synchronizer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
bytecodeInterpreter.inline.hpp          bytecodeInterpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
bytecodeInterpreter.inline.hpp          stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
bytecodeInterpreter_<arch>.hpp          generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
bytecodeInterpreter_<arch>.inline.hpp   generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
bytecodeStream.cpp                      bytecodeStream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
bytecodeStream.cpp                      bytecodes.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
bytecodeStream.hpp                      allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
bytecodeStream.hpp                      bytecode.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
bytecodeStream.hpp                      bytes_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
bytecodeStream.hpp                      methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
bytecodeTracer.cpp                      bytecodeHistogram.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
bytecodeTracer.cpp                      bytecodeTracer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
bytecodeTracer.cpp                      bytecodes.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
bytecodeTracer.cpp                      interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
bytecodeTracer.cpp                      interpreterRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
bytecodeTracer.cpp                      methodDataOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
bytecodeTracer.cpp                      methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
bytecodeTracer.cpp                      mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
bytecodeTracer.cpp                      resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
bytecodeTracer.cpp                      timer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
bytecodeTracer.hpp                      allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
bytecodes.cpp                           bytecodes.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
bytecodes.cpp                           bytes_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
bytecodes.cpp                           methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
bytecodes.cpp                           resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
bytecodes.hpp                           allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
bytecodes.hpp                           top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
bytecodes_<arch>.cpp                    bytecodes.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
bytecodes_<arch>.hpp                    generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
bytes_<arch>.hpp                        allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
bytes_<os_arch>.inline.hpp              generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
cardTableModRefBS.cpp                   allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
cardTableModRefBS.cpp                   cardTableModRefBS.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
cardTableModRefBS.cpp                   cardTableRS.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
cardTableModRefBS.cpp                   java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
cardTableModRefBS.cpp                   mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
cardTableModRefBS.cpp                   sharedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
cardTableModRefBS.cpp                   space.hpp
2129
e810a33b5c67 6778669: Patch from Red Hat -- fixes compilation errors
twisti
parents: 2111
diff changeset
   479
cardTableModRefBS.cpp                   space.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
cardTableModRefBS.cpp                   universe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
cardTableModRefBS.cpp                   virtualspace.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
cardTableModRefBS.hpp                   modRefBarrierSet.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
cardTableModRefBS.hpp                   oop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
cardTableModRefBS.hpp                   oop.inline2.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
cardTableRS.cpp                         allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
cardTableRS.cpp                         cardTableRS.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
cardTableRS.cpp                         genCollectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
cardTableRS.cpp                         generation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
cardTableRS.cpp                         java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
cardTableRS.cpp                         oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
cardTableRS.cpp                         os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
cardTableRS.cpp                         space.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
cardTableRS.hpp                         cardTableModRefBS.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
cardTableRS.hpp                         genRemSet.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
cardTableRS.hpp                         memRegion.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
ciArray.cpp                             ciArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
ciArray.cpp                             ciKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
ciArray.cpp                             ciUtilities.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
ciArray.hpp                             arrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
ciArray.hpp                             ciObject.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
ciArray.hpp                             objArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
ciArray.hpp                             typeArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
ciArrayKlass.cpp                        ciArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
ciArrayKlass.cpp                        ciObjArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
ciArrayKlass.cpp                        ciTypeArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
ciArrayKlass.cpp                        ciUtilities.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
ciArrayKlass.hpp                        ciKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
ciArrayKlassKlass.hpp                   ciKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
ciCallProfile.hpp                       ciClassList.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   520
ciCallSite.cpp                          ciCallSite.hpp
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   521
ciCallSite.cpp                          ciUtilities.hpp
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   522
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   523
ciCallSite.hpp                          ciInstance.hpp
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   524
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
ciConstant.cpp                          allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
ciConstant.cpp                          allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
ciConstant.cpp                          ciConstant.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
ciConstant.cpp                          ciUtilities.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
ciConstant.hpp                          ciClassList.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
ciConstant.hpp                          ciNullObject.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
ciConstantPoolCache.cpp                 allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
ciConstantPoolCache.cpp                 allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
ciConstantPoolCache.cpp                 ciConstantPoolCache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
ciConstantPoolCache.cpp                 ciUtilities.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
ciConstantPoolCache.hpp                 growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
ciConstantPoolCache.hpp                 resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4562
diff changeset
   541
ciCPCache.cpp                           cpCacheOop.hpp
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4562
diff changeset
   542
ciCPCache.cpp                           ciCPCache.hpp
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4562
diff changeset
   543
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4562
diff changeset
   544
ciCPCache.hpp                           ciClassList.hpp
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4562
diff changeset
   545
ciCPCache.hpp                           ciObject.hpp
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4562
diff changeset
   546
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
ciEnv.cpp                               allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
ciEnv.cpp                               ciConstant.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
ciEnv.cpp                               ciEnv.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
ciEnv.cpp                               ciField.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
ciEnv.cpp                               ciInstance.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
ciEnv.cpp                               ciInstanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
ciEnv.cpp                               ciInstanceKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
ciEnv.cpp                               ciMethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
ciEnv.cpp                               ciNullObject.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
ciEnv.cpp                               ciObjArrayKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
ciEnv.cpp                               ciTypeArrayKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
ciEnv.cpp                               ciUtilities.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
ciEnv.cpp                               collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
ciEnv.cpp                               compileBroker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
ciEnv.cpp                               compileLog.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
ciEnv.cpp                               compilerOracle.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
ciEnv.cpp                               dtrace.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
ciEnv.cpp                               init.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
ciEnv.cpp                               jvmtiExport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
ciEnv.cpp                               linkResolver.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
ciEnv.cpp                               methodDataOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
ciEnv.cpp                               objArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
ciEnv.cpp                               oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
ciEnv.cpp                               oop.inline2.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
ciEnv.cpp                               oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
ciEnv.cpp                               reflection.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
ciEnv.cpp                               scopeDesc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
ciEnv.cpp                               sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
ciEnv.cpp                               systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
ciEnv.cpp                               universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
ciEnv.cpp                               vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
ciEnv.hpp                               ciClassList.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
ciEnv.hpp                               ciObjectFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
ciEnv.hpp                               debugInfoRec.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
ciEnv.hpp                               dependencies.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
ciEnv.hpp                               exceptionHandlerTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
ciEnv.hpp                               oopMap.hpp
4450
6d700b859b3e 6892658: C2 should optimize some stringbuilder patterns
never
parents: 4429
diff changeset
   585
ciEnv.hpp                               systemDictionary.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
ciEnv.hpp                               thread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
ciExceptionHandler.cpp                  ciExceptionHandler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
ciExceptionHandler.cpp                  ciUtilities.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
ciExceptionHandler.hpp                  ciClassList.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
ciExceptionHandler.hpp                  ciInstanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
ciField.cpp                             ciField.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
ciField.cpp                             ciInstanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
ciField.cpp                             ciUtilities.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
ciField.cpp                             collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
ciField.cpp                             fieldDescriptor.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
ciField.cpp                             linkResolver.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
ciField.cpp                             oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
ciField.cpp                             oop.inline2.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
ciField.cpp                             systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
ciField.cpp                             universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
ciField.hpp                             ciClassList.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
ciField.hpp                             ciConstant.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
ciField.hpp                             ciFlags.hpp
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   608
ciField.hpp                             ciInstance.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
ciFlags.cpp                             ciFlags.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
ciFlags.hpp                             accessFlags.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
ciFlags.hpp                             allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
ciFlags.hpp                             ciClassList.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
ciFlags.hpp                             jvm.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
ciInstance.cpp                          ciConstant.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
ciInstance.cpp                          ciField.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
ciInstance.cpp                          ciInstance.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
ciInstance.cpp                          ciInstanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
ciInstance.cpp                          ciUtilities.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
ciInstance.cpp                          oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
ciInstance.cpp                          systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
ciInstance.hpp                          ciObject.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
ciInstance.hpp                          instanceOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
ciInstanceKlass.cpp                     allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
ciInstanceKlass.cpp                     allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
ciInstanceKlass.cpp                     ciField.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
ciInstanceKlass.cpp                     ciInstance.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
ciInstanceKlass.cpp                     ciInstanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
ciInstanceKlass.cpp                     ciUtilities.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
ciInstanceKlass.cpp                     fieldDescriptor.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
ciInstanceKlass.cpp                     oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
ciInstanceKlass.cpp                     systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
ciInstanceKlass.hpp                     ciConstantPoolCache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
ciInstanceKlass.hpp                     ciFlags.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
ciInstanceKlass.hpp                     ciInstanceKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
ciInstanceKlass.hpp                     ciKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
ciInstanceKlass.hpp                     ciSymbol.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
ciInstanceKlassKlass.cpp                ciInstanceKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
ciInstanceKlassKlass.cpp                ciUtilities.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
ciInstanceKlassKlass.hpp                ciKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
ciKlass.cpp                             ciKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
ciKlass.cpp                             ciSymbol.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
ciKlass.cpp                             ciUtilities.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
ciKlass.cpp                             oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
ciKlass.hpp                             ciType.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
ciKlass.hpp                             klassOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
ciKlassKlass.cpp                        ciKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
ciKlassKlass.cpp                        ciUtilities.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
ciKlassKlass.hpp                        ciKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
ciKlassKlass.hpp                        ciSymbol.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
ciMethod.cpp                            abstractCompiler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
ciMethod.cpp                            allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
ciMethod.cpp                            bcEscapeAnalyzer.hpp
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 389
diff changeset
   666
ciMethod.cpp                            bitMap.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
ciMethod.cpp                            ciCallProfile.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
ciMethod.cpp                            ciExceptionHandler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
ciMethod.cpp                            ciInstanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
ciMethod.cpp                            ciMethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
ciMethod.cpp                            ciMethodBlocks.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
ciMethod.cpp                            ciMethodData.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
ciMethod.cpp                            ciMethodKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
ciMethod.cpp                            ciStreams.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
ciMethod.cpp                            ciSymbol.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
ciMethod.cpp                            ciUtilities.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
ciMethod.cpp                            compilerOracle.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
ciMethod.cpp                            deoptimization.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
ciMethod.cpp                            generateOopMap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
ciMethod.cpp                            interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
ciMethod.cpp                            linkResolver.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
ciMethod.cpp                            methodLiveness.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
ciMethod.cpp                            nativeLookup.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
ciMethod.cpp                            oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
ciMethod.cpp                            oopMapCache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
ciMethod.cpp                            resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
ciMethod.cpp                            systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
ciMethod.cpp                            xmlstream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
ciMethod.hpp                            bitMap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
ciMethod.hpp                            ciFlags.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
ciMethod.hpp                            ciInstanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
ciMethod.hpp                            ciObject.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
ciMethod.hpp                            ciSignature.hpp
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   695
ciMethod.hpp                            methodHandles.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
ciMethod.hpp                            methodLiveness.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
ciMethodBlocks.cpp                      bytecode.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
ciMethodBlocks.cpp                      ciMethodBlocks.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
ciMethodBlocks.cpp                      ciStreams.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
ciMethodBlocks.cpp                      copy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
ciMethodBlocks.hpp                      ciMethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
ciMethodBlocks.hpp                      growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
ciMethodBlocks.hpp                      resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
ciMethodData.cpp                        allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
ciMethodData.cpp                        ciMethodData.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
ciMethodData.cpp                        ciUtilities.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
ciMethodData.cpp                        copy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
ciMethodData.cpp                        deoptimization.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
ciMethodData.cpp                        resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
ciMethodData.hpp                        ciClassList.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
ciMethodData.hpp                        ciKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
ciMethodData.hpp                        ciObject.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
ciMethodData.hpp                        ciUtilities.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
ciMethodData.hpp                        methodDataOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
ciMethodData.hpp                        oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
ciMethodKlass.cpp                       ciMethodKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
ciMethodKlass.cpp                       ciUtilities.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
ciMethodKlass.hpp                       ciKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
ciMethodKlass.hpp                       ciSymbol.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   727
ciMethodHandle.cpp                      ciClassList.hpp
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   728
ciMethodHandle.cpp                      ciInstance.hpp
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   729
ciMethodHandle.cpp                      ciMethodHandle.hpp
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   730
ciMethodHandle.cpp                      ciUtilities.hpp
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   731
ciMethodHandle.cpp                      methodHandles.hpp
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   732
ciMethodHandle.cpp                      methodHandleWalk.hpp
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   733
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   734
ciMethodHandle.hpp                      methodHandles.hpp
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   735
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
ciNullObject.cpp                        ciNullObject.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
ciNullObject.hpp                        ciClassList.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
ciNullObject.hpp                        ciObject.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
ciNullObject.hpp                        ciUtilities.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
ciObjArray.hpp                          ciArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
ciObjArray.hpp                          ciClassList.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
ciObjArray.hpp                          objArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
190
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
   746
ciObjArray.cpp                          ciObjArray.hpp
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
   747
ciObjArray.cpp                          ciNullObject.hpp
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
   748
ciObjArray.cpp                          ciUtilities.hpp
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
   749
ciObjArray.cpp                          objArrayOop.hpp
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
   750
386
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 225
diff changeset
   751
ciObjArray.cpp                          ciObjArray.hpp
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 225
diff changeset
   752
ciObjArray.cpp                          ciNullObject.hpp
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 225
diff changeset
   753
ciObjArray.cpp                          ciUtilities.hpp
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 225
diff changeset
   754
ciObjArray.cpp                          objArrayOop.hpp
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 225
diff changeset
   755
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
ciObjArrayKlass.cpp                     ciInstanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
ciObjArrayKlass.cpp                     ciObjArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
ciObjArrayKlass.cpp                     ciObjArrayKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
ciObjArrayKlass.cpp                     ciSymbol.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
ciObjArrayKlass.cpp                     ciUtilities.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
ciObjArrayKlass.cpp                     objArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
ciObjArrayKlass.hpp                     ciArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
ciObjArrayKlassKlass.cpp                ciObjArrayKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
ciObjArrayKlassKlass.cpp                ciUtilities.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
ciObjArrayKlassKlass.hpp                ciArrayKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
ciObject.cpp                            ciObject.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
ciObject.cpp                            ciUtilities.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
ciObject.cpp                            collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
ciObject.cpp                            oop.inline2.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
ciObject.hpp                            allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
ciObject.hpp                            ciClassList.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
ciObject.hpp                            handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
ciObject.hpp                            jniHandles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
ciObjectFactory.cpp                     allocation.inline.hpp
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   781
ciObjectFactory.cpp                     ciCallSite.hpp
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 4562
diff changeset
   782
ciObjectFactory.cpp                     ciCPCache.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
ciObjectFactory.cpp                     ciInstance.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
ciObjectFactory.cpp                     ciInstanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
ciObjectFactory.cpp                     ciInstanceKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
ciObjectFactory.cpp                     ciMethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
ciObjectFactory.cpp                     ciMethodData.hpp
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   788
ciObjectFactory.cpp                     ciMethodHandle.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
ciObjectFactory.cpp                     ciMethodKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
ciObjectFactory.cpp                     ciNullObject.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
ciObjectFactory.cpp                     ciObjArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
ciObjectFactory.cpp                     ciObjArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
ciObjectFactory.cpp                     ciObjArrayKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
ciObjectFactory.cpp                     ciObjectFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
ciObjectFactory.cpp                     ciSymbol.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
ciObjectFactory.cpp                     ciSymbolKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
ciObjectFactory.cpp                     ciTypeArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
ciObjectFactory.cpp                     ciTypeArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
ciObjectFactory.cpp                     ciTypeArrayKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
ciObjectFactory.cpp                     ciUtilities.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
ciObjectFactory.cpp                     collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
ciObjectFactory.cpp                     fieldType.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
ciObjectFactory.cpp                     oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
ciObjectFactory.cpp                     oop.inline2.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
ciObjectFactory.cpp                     systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
ciObjectFactory.hpp                     ciClassList.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
ciObjectFactory.hpp                     ciObject.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
ciObjectFactory.hpp                     growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
ciSignature.cpp                         allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
ciSignature.cpp                         ciSignature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
ciSignature.cpp                         ciUtilities.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
ciSignature.cpp                         oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
ciSignature.cpp                         signature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
ciSignature.hpp                         ciClassList.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
ciSignature.hpp                         ciSymbol.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
ciSignature.hpp                         globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
ciSignature.hpp                         growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   822
ciStreams.cpp                           ciCallSite.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
ciStreams.cpp                           ciConstant.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
ciStreams.cpp                           ciField.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
ciStreams.cpp                           ciStreams.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
ciStreams.cpp                           ciUtilities.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
ciStreams.hpp                           ciClassList.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
ciStreams.hpp                           ciExceptionHandler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
ciStreams.hpp                           ciInstanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
ciStreams.hpp                           ciMethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
ciSymbol.cpp                            ciSymbol.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
ciSymbol.cpp                            ciUtilities.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
ciSymbol.cpp                            oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
ciSymbol.hpp                            ciObject.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
ciSymbol.hpp                            ciObjectFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
ciSymbol.hpp                            symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
ciSymbol.hpp                            vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
ciSymbolKlass.cpp                       ciSymbolKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
ciSymbolKlass.cpp                       ciUtilities.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
ciSymbolKlass.hpp                       ciKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
ciSymbolKlass.hpp                       ciSymbol.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
ciType.cpp                              ciType.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
ciType.cpp                              ciUtilities.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
ciType.cpp                              oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
ciType.cpp                              systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
ciType.hpp                              ciObject.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
ciType.hpp                              klassOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
ciTypeArray.cpp                         ciTypeArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
ciTypeArray.cpp                         ciUtilities.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
ciTypeArray.hpp                         ciArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
ciTypeArray.hpp                         ciClassList.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
ciTypeArray.hpp                         typeArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
ciTypeArrayKlass.cpp                    ciTypeArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
ciTypeArrayKlass.cpp                    ciUtilities.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
ciTypeArrayKlass.hpp                    ciArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
ciTypeArrayKlassKlass.cpp               ciTypeArrayKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
ciTypeArrayKlassKlass.cpp               ciUtilities.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
ciTypeArrayKlassKlass.hpp               ciArrayKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
ciUtilities.cpp                         ciUtilities.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
ciUtilities.hpp                         ciEnv.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
ciUtilities.hpp                         interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
classFileError.cpp                      classFileParser.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
classFileError.cpp                      stackMapTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
classFileError.cpp                      verifier.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
classFileParser.cpp                     allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
classFileParser.cpp                     classFileParser.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
classFileParser.cpp                     classLoader.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
classFileParser.cpp                     classLoadingService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
classFileParser.cpp                     constantPoolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
classFileParser.cpp                     gcLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
classFileParser.cpp                     instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
classFileParser.cpp                     javaCalls.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
classFileParser.cpp                     javaClasses.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
classFileParser.cpp                     jvmtiExport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
classFileParser.cpp                     klass.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
classFileParser.cpp                     klassOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
classFileParser.cpp                     klassVtable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
classFileParser.cpp                     methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
classFileParser.cpp                     oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
classFileParser.cpp                     perfData.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
classFileParser.cpp                     reflection.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
classFileParser.cpp                     signature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
classFileParser.cpp                     symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
classFileParser.cpp                     symbolTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
classFileParser.cpp                     systemDictionary.hpp
3575
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 2570
diff changeset
   903
classFileParser.cpp                     threadService.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
classFileParser.cpp                     timer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
classFileParser.cpp                     universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
classFileParser.cpp                     verificationType.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
classFileParser.cpp                     verifier.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
classFileParser.cpp                     vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
classFileParser.hpp                     accessFlags.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
classFileParser.hpp                     classFileStream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
classFileParser.hpp                     handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
classFileParser.hpp                     oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
classFileParser.hpp                     resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
classFileParser.hpp                     typeArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
classFileStream.cpp                     classFileStream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
classFileStream.cpp                     vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
classFileStream.hpp                     bytes_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
classFileStream.hpp                     top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
classLoader.cpp                         allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
classLoader.cpp                         arguments.hpp
4735
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4584
diff changeset
   925
classLoader.cpp                         bytecodeStream.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
classLoader.cpp                         classFileParser.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
classLoader.cpp                         classFileStream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
classLoader.cpp                         classLoader.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
classLoader.cpp                         collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
classLoader.cpp                         compilationPolicy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
classLoader.cpp                         compileBroker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
classLoader.cpp                         constantPoolKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
classLoader.cpp                         events.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
classLoader.cpp                         fprofiler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
classLoader.cpp                         generation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
classLoader.cpp                         handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
classLoader.cpp                         handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
classLoader.cpp                         hashtable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
classLoader.cpp                         hashtable.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
classLoader.cpp                         hpi.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
classLoader.cpp                         hpi_<os_family>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
classLoader.cpp                         init.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
classLoader.cpp                         instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
classLoader.cpp                         instanceRefKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
classLoader.cpp                         interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
classLoader.cpp                         java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
classLoader.cpp                         javaCalls.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
classLoader.cpp                         javaClasses.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
classLoader.cpp                         jvm_misc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
classLoader.cpp                         management.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
classLoader.cpp                         oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
classLoader.cpp                         oopFactory.hpp
4735
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4584
diff changeset
   953
classLoader.cpp                         oopMapCache.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
classLoader.cpp                         os_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
classLoader.cpp                         symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
classLoader.cpp                         systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
classLoader.cpp                         threadCritical.hpp
3575
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 2570
diff changeset
   958
classLoader.cpp                         threadService.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
classLoader.cpp                         timer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
classLoader.cpp                         universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
classLoader.cpp                         vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
classLoader.cpp                         vtune.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
classLoader.hpp                         classFileParser.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
classLoader.hpp                         perfData.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
classLoadingService.cpp                 allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
classLoadingService.cpp                 classLoadingService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
classLoadingService.cpp                 dtrace.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
classLoadingService.cpp                 memoryService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
classLoadingService.cpp                 mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
classLoadingService.cpp                 oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
classLoadingService.cpp                 systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
classLoadingService.cpp                 universe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
classLoadingService.hpp                 growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
classLoadingService.hpp                 handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
classLoadingService.hpp                 perfData.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
classify.cpp                            classify.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
classify.cpp                            systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
classify.hpp                            oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
codeBlob.cpp                            allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
codeBlob.cpp                            bytecode.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
codeBlob.cpp                            codeBlob.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
codeBlob.cpp                            codeCache.hpp
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 225
diff changeset
   989
codeBlob.cpp                            disassembler.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
codeBlob.cpp                            forte.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
codeBlob.cpp                            handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
codeBlob.cpp                            heap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
codeBlob.cpp                            interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
codeBlob.cpp                            memoryService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
codeBlob.cpp                            mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
codeBlob.cpp                            nativeInst_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
codeBlob.cpp                            oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
codeBlob.cpp                            relocInfo.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
codeBlob.cpp                            safepoint.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
codeBlob.cpp                            sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
codeBlob.cpp                            vframe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
codeBlob.cpp                            vtune.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
codeBlob.hpp                            codeBuffer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
codeBlob.hpp                            frame.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
codeBlob.hpp                            handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
codeBlob.hpp                            oopMap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
codeBuffer.cpp                          codeBuffer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
codeBuffer.cpp                          copy.hpp
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 225
diff changeset
  1011
codeBuffer.cpp                          disassembler.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
codeBuffer.hpp                          assembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
codeBuffer.hpp                          oopRecorder.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
codeBuffer.hpp                          relocInfo.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
codeBuffer_<arch>.hpp                   generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
codeCache.cpp                           allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
codeCache.cpp                           codeBlob.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
codeCache.cpp                           codeCache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
codeCache.cpp                           dependencies.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
codeCache.cpp                           gcLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
codeCache.cpp                           icache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
codeCache.cpp                           iterator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
codeCache.cpp                           java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
codeCache.cpp                           markSweep.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
codeCache.cpp                           memoryService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
codeCache.cpp                           methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
codeCache.cpp                           mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
codeCache.cpp                           nmethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
codeCache.cpp                           objArrayOop.hpp
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 347
diff changeset
  1033
codeCache.cpp                           oop.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
codeCache.cpp                           pcDesc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
codeCache.cpp                           resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
codeCache.hpp                           allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
codeCache.hpp                           codeBlob.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
codeCache.hpp                           heap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
codeCache.hpp                           instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
codeCache.hpp                           oopsHierarchy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
collectorPolicy.cpp                     adaptiveSizePolicy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
collectorPolicy.cpp                     arguments.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
collectorPolicy.cpp                     cardTableRS.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
collectorPolicy.cpp                     collectorPolicy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
collectorPolicy.cpp                     gcLocker.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
collectorPolicy.cpp                     genCollectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
collectorPolicy.cpp                     gcPolicyCounters.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
collectorPolicy.cpp                     generationSpec.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
collectorPolicy.cpp                     globals_extension.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
collectorPolicy.cpp                     handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
collectorPolicy.cpp                     java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
collectorPolicy.cpp                     space.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
collectorPolicy.cpp                     thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
collectorPolicy.cpp                     universe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
collectorPolicy.cpp                     vmGCOperations.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
collectorPolicy.cpp                     vmThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
collectorPolicy.hpp                     barrierSet.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
collectorPolicy.hpp                     genRemSet.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
collectorPolicy.hpp                     permGen.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
compactPermGen.hpp                      generation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
compactPermGen.hpp                      permGen.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
compactingPermGenGen.cpp                compactingPermGenGen.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
compactingPermGenGen.cpp                filemap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
compactingPermGenGen.cpp                genOopClosures.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
compactingPermGenGen.cpp                generation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
compactingPermGenGen.cpp                generationSpec.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
compactingPermGenGen.cpp                java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
compactingPermGenGen.cpp                oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
compactingPermGenGen.cpp                symbolTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
compactingPermGenGen.cpp                systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
compactingPermGenGen.hpp                generationCounters.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
compactingPermGenGen.hpp                space.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
compilationPolicy.cpp                   compilationPolicy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
compilationPolicy.cpp                   compiledIC.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
compilationPolicy.cpp                   compilerOracle.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
compilationPolicy.cpp                   events.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
compilationPolicy.cpp                   frame.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
compilationPolicy.cpp                   globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
compilationPolicy.cpp                   handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
compilationPolicy.cpp                   interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
compilationPolicy.cpp                   methodDataOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
compilationPolicy.cpp                   methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
compilationPolicy.cpp                   nativeLookup.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
compilationPolicy.cpp                   nmethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
compilationPolicy.cpp                   oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
compilationPolicy.cpp                   rframe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
compilationPolicy.cpp                   stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
compilationPolicy.cpp                   thread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
compilationPolicy.cpp                   timer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
compilationPolicy.cpp                   vframe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
compilationPolicy.cpp                   vm_operations.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
compilationPolicy.hpp                   allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
compilationPolicy.hpp                   compileBroker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
compilationPolicy.hpp                   growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
compilationPolicy.hpp                   nmethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
compilationPolicy.hpp                   vm_operations.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
compileBroker.cpp                       allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
compileBroker.cpp                       arguments.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
compileBroker.cpp                       codeCache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
compileBroker.cpp                       compilationPolicy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
compileBroker.cpp                       compileBroker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
compileBroker.cpp                       compileLog.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
compileBroker.cpp                       compilerOracle.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
compileBroker.cpp                       dtrace.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
compileBroker.cpp                       init.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
compileBroker.cpp                       interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
compileBroker.cpp                       javaCalls.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
compileBroker.cpp                       linkResolver.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
compileBroker.cpp                       methodDataOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
compileBroker.cpp                       methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
compileBroker.cpp                       nativeLookup.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
compileBroker.cpp                       oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
compileBroker.cpp                       os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
compileBroker.cpp                       sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
compileBroker.cpp                       systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
compileBroker.cpp                       vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
compileBroker.hpp                       abstractCompiler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
compileBroker.hpp                       compilerInterface.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
compileBroker.hpp                       perfData.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
compileLog.cpp                          allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
compileLog.cpp                          ciMethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
compileLog.cpp                          compileLog.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
compileLog.cpp                          methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
compileLog.cpp                          mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
compileLog.cpp                          os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
compileLog.hpp                          xmlstream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
compiledIC.cpp                          codeCache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
compiledIC.cpp                          compiledIC.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
compiledIC.cpp                          events.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
compiledIC.cpp                          icBuffer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
compiledIC.cpp                          icache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
compiledIC.cpp                          interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
compiledIC.cpp                          linkResolver.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
compiledIC.cpp                          methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
compiledIC.cpp                          nmethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
compiledIC.cpp                          oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
compiledIC.cpp                          oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
compiledIC.cpp                          sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
compiledIC.cpp                          stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
compiledIC.cpp                          symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
compiledIC.cpp                          systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
compiledIC.cpp                          vtableStubs.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
compiledIC.hpp                          compiledICHolderKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
compiledIC.hpp                          compiledICHolderOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
compiledIC.hpp                          klassOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
compiledIC.hpp                          linkResolver.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
compiledIC.hpp                          nativeInst_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
compiledICHolderKlass.cpp               collectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
compiledICHolderKlass.cpp               collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
compiledICHolderKlass.cpp               compiledICHolderKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
compiledICHolderKlass.cpp               handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
compiledICHolderKlass.cpp               javaClasses.hpp
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 347
diff changeset
  1168
compiledICHolderKlass.cpp               markSweep.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
compiledICHolderKlass.cpp               oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
compiledICHolderKlass.cpp               oop.inline2.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
compiledICHolderKlass.cpp               permGen.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
compiledICHolderKlass.cpp               universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
compiledICHolderKlass.hpp               compiledICHolderOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
compiledICHolderKlass.hpp               klass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
compiledICHolderKlass.hpp               methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
compiledICHolderOop.cpp                 compiledICHolderOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
compiledICHolderOop.hpp                 oop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
compilerInterface.hpp                   ciArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
compilerInterface.hpp                   ciArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
compilerInterface.hpp                   ciArrayKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
compilerInterface.hpp                   ciCallProfile.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
compilerInterface.hpp                   ciConstant.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
compilerInterface.hpp                   ciEnv.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
compilerInterface.hpp                   ciExceptionHandler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
compilerInterface.hpp                   ciField.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
compilerInterface.hpp                   ciFlags.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
compilerInterface.hpp                   ciInstance.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
compilerInterface.hpp                   ciInstanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
compilerInterface.hpp                   ciInstanceKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
compilerInterface.hpp                   ciKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
compilerInterface.hpp                   ciKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
compilerInterface.hpp                   ciMethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
compilerInterface.hpp                   ciMethodKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
compilerInterface.hpp                   ciNullObject.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
compilerInterface.hpp                   ciObjArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1200
compilerInterface.hpp                   ciObjArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1201
compilerInterface.hpp                   ciObjArrayKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1202
compilerInterface.hpp                   ciObject.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1203
compilerInterface.hpp                   ciSignature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1204
compilerInterface.hpp                   ciStreams.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
compilerInterface.hpp                   ciSymbol.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
compilerInterface.hpp                   ciSymbolKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
compilerInterface.hpp                   ciTypeArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1208
compilerInterface.hpp                   ciTypeArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
compilerInterface.hpp                   ciTypeArrayKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1210
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1211
compilerOracle.cpp                      allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1212
compilerOracle.cpp                      compilerOracle.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1213
compilerOracle.cpp                      handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1214
compilerOracle.cpp                      jniHandles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
compilerOracle.cpp                      klass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1216
compilerOracle.cpp                      methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
compilerOracle.cpp                      oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1218
compilerOracle.cpp                      oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1219
compilerOracle.cpp                      resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1220
compilerOracle.cpp                      symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1221
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1222
compilerOracle.hpp                      allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
compilerOracle.hpp                      oopsHierarchy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
compressedStream.cpp                    compressedStream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
compressedStream.cpp                    ostream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
compressedStream.hpp                    allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
constMethodKlass.cpp                    constMethodKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
constMethodKlass.cpp                    constMethodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
constMethodKlass.cpp                    gcLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1233
constMethodKlass.cpp                    handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1234
constMethodKlass.cpp                    interpreter.hpp
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 347
diff changeset
  1235
constMethodKlass.cpp                    markSweep.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
constMethodKlass.cpp                    oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1237
constMethodKlass.cpp                    oop.inline2.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
constMethodKlass.cpp                    resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1239
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1240
constMethodKlass.hpp                    oop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1241
constMethodKlass.hpp                    klass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
constMethodKlass.hpp                    orderAccess.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1244
constMethodOop.cpp                      constMethodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
constMethodOop.cpp                      methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1246
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
constMethodOop.hpp                      oop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1248
constMethodOop.hpp                      typeArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
constantPoolKlass.cpp                   collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
constantPoolKlass.cpp                   constantPoolKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
constantPoolKlass.cpp                   constantPoolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1253
constantPoolKlass.cpp                   handles.inline.hpp
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 347
diff changeset
  1254
constantPoolKlass.cpp                   javaClasses.hpp
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 347
diff changeset
  1255
constantPoolKlass.cpp                   markSweep.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1256
constantPoolKlass.cpp                   oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
constantPoolKlass.cpp                   oop.inline2.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
constantPoolKlass.cpp                   oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1259
constantPoolKlass.cpp                   permGen.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1260
constantPoolKlass.cpp                   symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1261
constantPoolKlass.cpp                   thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
constantPoolKlass.cpp                   universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
constantPoolKlass.hpp                   arrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
constantPoolKlass.hpp                   instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1266
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
constantPoolOop.cpp                     constantPoolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1268
constantPoolOop.cpp                     fieldType.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1269
constantPoolOop.cpp                     init.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1270
constantPoolOop.cpp                     instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1271
constantPoolOop.cpp                     javaClasses.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1272
constantPoolOop.cpp                     linkResolver.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
constantPoolOop.cpp                     objArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1274
constantPoolOop.cpp                     oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1275
constantPoolOop.cpp                     signature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1276
constantPoolOop.cpp                     symbolTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1277
constantPoolOop.cpp                     systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1278
constantPoolOop.cpp                     universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1279
constantPoolOop.cpp                     vframe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1280
constantPoolOop.cpp                     vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1281
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1282
constantPoolOop.hpp                     arrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1283
constantPoolOop.hpp                     bytes_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1284
constantPoolOop.hpp                     constantTag.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1285
constantPoolOop.hpp                     cpCacheOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1286
constantPoolOop.hpp                     typeArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1287
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1288
constantTag.cpp                         constantTag.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1289
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1290
constantTag.hpp                         jvm.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1291
constantTag.hpp                         top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1292
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1293
copy.cpp                                copy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1294
copy.cpp                                sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1295
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1296
copy.hpp                                stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1297
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1298
copy_<arch>.hpp                         generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1299
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1300
copy_<os_arch>.inline.hpp               generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1301
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1302
cpCacheKlass.cpp                        bytecodes.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1303
cpCacheKlass.cpp                        collectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1304
cpCacheKlass.cpp                        constantPoolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1305
cpCacheKlass.cpp                        cpCacheKlass.hpp
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2338
diff changeset
  1306
cpCacheKlass.cpp                        genOopClosures.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
cpCacheKlass.cpp                        handles.inline.hpp
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 347
diff changeset
  1308
cpCacheKlass.cpp                        javaClasses.hpp
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 347
diff changeset
  1309
cpCacheKlass.cpp                        markSweep.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
cpCacheKlass.cpp                        oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1311
cpCacheKlass.cpp                        permGen.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1312
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
cpCacheKlass.hpp                        arrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1314
cpCacheKlass.hpp                        cpCacheOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1315
cpCacheKlass.hpp                        instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1316
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1317
cpCacheOop.cpp                          cpCacheOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1318
cpCacheOop.cpp                          handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1319
cpCacheOop.cpp                          interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
cpCacheOop.cpp                          jvmtiRedefineClassesTrace.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1321
cpCacheOop.cpp                          markSweep.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1322
cpCacheOop.cpp                          objArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1323
cpCacheOop.cpp                          oop.inline.hpp
4429
d7eb4e2099aa 6858164: invokedynamic code needs some cleanup (post-6655638)
jrose
parents: 3696
diff changeset
  1324
cpCacheOop.cpp                          rewriter.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1325
cpCacheOop.cpp                          universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1326
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1327
cpCacheOop.hpp                          allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1328
cpCacheOop.hpp                          array.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
cpCacheOop.hpp                          arrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1330
cpCacheOop.hpp                          bytecodes.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1331
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1332
cppInterpreter.cpp                      bytecodeInterpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1333
cppInterpreter.cpp                      interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1334
cppInterpreter.cpp                      interpreterGenerator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
cppInterpreter.cpp                      interpreterRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1336
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1337
cppInterpreter.hpp                      abstractInterpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1338
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1339
cppInterpreter_<arch>.cpp               arguments.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1340
cppInterpreter_<arch>.cpp               arrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1341
cppInterpreter_<arch>.cpp               assembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1342
cppInterpreter_<arch>.cpp               bytecodeHistogram.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1343
cppInterpreter_<arch>.cpp               debug.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1344
cppInterpreter_<arch>.cpp               deoptimization.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1345
cppInterpreter_<arch>.cpp               frame.inline.hpp
1904
7aada8102b30 6793825: Missing include dependancies for GCC without predefined headers
coleenp
parents: 1620
diff changeset
  1346
cppInterpreter_<arch>.cpp               interfaceSupport.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1347
cppInterpreter_<arch>.cpp               interpreterRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
cppInterpreter_<arch>.cpp               interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
cppInterpreter_<arch>.cpp               interpreterGenerator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
cppInterpreter_<arch>.cpp               jvmtiExport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
cppInterpreter_<arch>.cpp               jvmtiThreadState.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1352
cppInterpreter_<arch>.cpp               methodDataOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1353
cppInterpreter_<arch>.cpp               methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
cppInterpreter_<arch>.cpp               oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1355
cppInterpreter_<arch>.cpp               sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1356
cppInterpreter_<arch>.cpp               stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1357
cppInterpreter_<arch>.cpp               synchronizer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1358
cppInterpreter_<arch>.cpp               cppInterpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1359
cppInterpreter_<arch>.cpp               timer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1360
cppInterpreter_<arch>.cpp               vframeArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1361
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1362
cppInterpreter_<arch>.hpp          generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1363
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1364
cppInterpreterGenerator_<arch>.hpp generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1365
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1366
debug.cpp                               arguments.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1367
debug.cpp                               bytecodeHistogram.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1368
debug.cpp                               codeCache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
debug.cpp                               collectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1370
debug.cpp                               compileBroker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1371
debug.cpp                               defaultStream.hpp
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 225
diff changeset
  1372
debug.cpp                               disassembler.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
debug.cpp                               events.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1374
debug.cpp                               frame.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1375
debug.cpp                               heapDumper.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1376
debug.cpp                               icBuffer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
debug.cpp                               interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1378
debug.cpp                               java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1379
debug.cpp                               markSweep.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
debug.cpp                               nmethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
debug.cpp                               oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1382
debug.cpp                               os_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1383
debug.cpp                               privilegedStack.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
debug.cpp                               resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
debug.cpp                               sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
debug.cpp                               stubCodeGenerator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
debug.cpp                               stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
debug.cpp                               systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
debug.cpp                               thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
debug.cpp                               top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
debug.cpp                               universe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1392
debug.cpp                               vframe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1393
debug.cpp                               vmError.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1394
debug.cpp                               vtableStubs.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1395
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1396
debug.hpp                               globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1397
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1398
debugInfo.cpp                           debugInfo.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1399
debugInfo.cpp                           debugInfoRec.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1400
debugInfo.cpp                           handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1401
debugInfo.cpp                           nmethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1402
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1403
debugInfo.hpp                           compressedStream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1404
debugInfo.hpp                           growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1405
debugInfo.hpp                           location.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1406
debugInfo.hpp                           nmethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1407
debugInfo.hpp                           oopRecorder.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1408
debugInfo.hpp                           stackValue.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1409
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1410
debugInfoRec.cpp                        debugInfoRec.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1411
debugInfoRec.cpp                        jvmtiExport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1412
debugInfoRec.cpp                        scopeDesc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1413
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1414
debugInfoRec.hpp                        ciClassList.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1415
debugInfoRec.hpp                        ciInstanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1416
debugInfoRec.hpp                        ciMethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1417
debugInfoRec.hpp                        debugInfo.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1418
debugInfoRec.hpp                        growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1419
debugInfoRec.hpp                        location.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1420
debugInfoRec.hpp                        oop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1421
debugInfoRec.hpp                        oopMap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1422
debugInfoRec.hpp                        pcDesc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
debug_<arch>.cpp                        codeCache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1425
debug_<arch>.cpp                        debug.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1426
debug_<arch>.cpp                        frame.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1427
debug_<arch>.cpp                        init.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1428
debug_<arch>.cpp                        nmethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1429
debug_<arch>.cpp                        os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1430
debug_<arch>.cpp                        top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1431
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1432
defNewGeneration.cpp                    collectorCounters.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1433
defNewGeneration.cpp                    copy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1434
defNewGeneration.cpp                    defNewGeneration.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1435
defNewGeneration.cpp                    gcLocker.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1436
defNewGeneration.cpp                    gcPolicyCounters.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1437
defNewGeneration.cpp                    genCollectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1438
defNewGeneration.cpp                    genOopClosures.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1439
defNewGeneration.cpp                    generationSpec.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1440
defNewGeneration.cpp                    instanceRefKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1441
defNewGeneration.cpp                    iterator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1442
defNewGeneration.cpp                    java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1443
defNewGeneration.cpp                    oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1444
defNewGeneration.cpp                    referencePolicy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1445
defNewGeneration.cpp                    space.inline.hpp
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 590
diff changeset
  1446
defNewGeneration.cpp                    spaceDecorator.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1447
defNewGeneration.cpp                    thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1448
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1449
defNewGeneration.hpp                    ageTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1450
defNewGeneration.hpp                    cSpaceCounters.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1451
defNewGeneration.hpp                    generation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1452
defNewGeneration.hpp                    generationCounters.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1453
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 347
diff changeset
  1454
defNewGeneration.inline.hpp             cardTableRS.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1455
defNewGeneration.inline.hpp             defNewGeneration.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1456
defNewGeneration.inline.hpp             space.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1457
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1458
defaultStream.hpp                       xmlstream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1459
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1460
deoptimization.cpp                      allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1461
deoptimization.cpp                      biasedLocking.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1462
deoptimization.cpp                      bytecode.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1463
deoptimization.cpp                      debugInfoRec.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1464
deoptimization.cpp                      deoptimization.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1465
deoptimization.cpp                      events.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1466
deoptimization.cpp                      interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1467
deoptimization.cpp                      interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1468
deoptimization.cpp                      jvmtiThreadState.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1469
deoptimization.cpp                      methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1470
deoptimization.cpp                      nmethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1471
deoptimization.cpp                      oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1472
deoptimization.cpp                      oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1473
deoptimization.cpp                      oopMapCache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1474
deoptimization.cpp                      pcDesc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1475
deoptimization.cpp                      resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1476
deoptimization.cpp                      scopeDesc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1477
deoptimization.cpp                      sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1478
deoptimization.cpp                      signature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1479
deoptimization.cpp                      stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1480
deoptimization.cpp                      systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1481
deoptimization.cpp                      thread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1482
deoptimization.cpp                      vframe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1483
deoptimization.cpp                      vframeArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1484
deoptimization.cpp                      vframe_hp.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1485
deoptimization.cpp                      xmlstream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1486
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1487
deoptimization.hpp                      allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1488
deoptimization.hpp                      frame.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1489
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1490
depChecker_<arch>.cpp                   depChecker_<arch>.hpp
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 225
diff changeset
  1491
depChecker_<arch>.cpp                   disassembler.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1492
depChecker_<arch>.cpp                   hpi.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1493
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1494
dependencies.cpp                        ciArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1495
dependencies.cpp                        ciEnv.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1496
dependencies.cpp                        ciKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1497
dependencies.cpp                        ciMethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1498
dependencies.cpp                        compileLog.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1499
dependencies.cpp                        copy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1500
dependencies.cpp                        dependencies.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1501
dependencies.cpp                        handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1502
dependencies.cpp                        oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1503
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1504
dependencies.hpp                        ciKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1505
dependencies.hpp                        compressedStream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1506
dependencies.hpp                        growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1507
dependencies.hpp                        nmethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1508
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1509
dictionary.cpp                          classLoadingService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1510
dictionary.cpp                          dictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1511
dictionary.cpp                          hashtable.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1512
dictionary.cpp                          jvmtiRedefineClassesTrace.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1513
dictionary.cpp                          oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1514
dictionary.cpp                          systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1515
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1516
dictionary.hpp                          hashtable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1517
dictionary.hpp                          instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1518
dictionary.hpp                          oop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1519
dictionary.hpp                          systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1520
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 225
diff changeset
  1521
disassembler_<arch>.hpp                 generate_platform_dependent_include
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 225
diff changeset
  1522
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 225
diff changeset
  1523
disassembler.cpp                        cardTableModRefBS.hpp
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 225
diff changeset
  1524
disassembler.cpp                        codeCache.hpp
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 225
diff changeset
  1525
disassembler.cpp                        collectedHeap.hpp
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 225
diff changeset
  1526
disassembler.cpp                        depChecker_<arch>.hpp
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 225
diff changeset
  1527
disassembler.cpp                        disassembler.hpp
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 225
diff changeset
  1528
disassembler.cpp                        fprofiler.hpp
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 225
diff changeset
  1529
disassembler.cpp                        handles.inline.hpp
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 225
diff changeset
  1530
disassembler.cpp                        hpi.hpp
4584
e2a449e8cc6f 6912062: disassembler plugin needs to produce symbolic information in product mode
jrose
parents: 4581
diff changeset
  1531
disassembler.cpp                        javaClasses.hpp
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 225
diff changeset
  1532
disassembler.cpp                        stubCodeGenerator.hpp
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 225
diff changeset
  1533
disassembler.cpp                        stubRoutines.hpp
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 225
diff changeset
  1534
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 225
diff changeset
  1535
disassembler.hpp                        globals.hpp
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 225
diff changeset
  1536
disassembler.hpp                        os_<os_family>.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1537
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1538
dtraceAttacher.cpp                      codeCache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1539
dtraceAttacher.cpp                      deoptimization.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1540
dtraceAttacher.cpp                      dtraceAttacher.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1541
dtraceAttacher.cpp                      resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1542
dtraceAttacher.cpp                      vmThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1543
dtraceAttacher.cpp                      vm_operations.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1544
363
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 360
diff changeset
  1545
dtraceJSDT.cpp                          allocation.hpp
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 360
diff changeset
  1546
dtraceJSDT.cpp                          codeBlob.hpp
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 360
diff changeset
  1547
dtraceJSDT.cpp                          dtraceJSDT.hpp
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 360
diff changeset
  1548
dtraceJSDT.cpp                          exceptions.hpp
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 360
diff changeset
  1549
dtraceJSDT.cpp                          globalDefinitions.hpp
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 360
diff changeset
  1550
dtraceJSDT.cpp                          javaClasses.hpp
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 360
diff changeset
  1551
dtraceJSDT.cpp                          jniHandles.hpp
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 360
diff changeset
  1552
dtraceJSDT.cpp                          jvm.h
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 360
diff changeset
  1553
dtraceJSDT.cpp                          os.hpp
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 360
diff changeset
  1554
dtraceJSDT.cpp                          utf8.hpp
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 360
diff changeset
  1555
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 360
diff changeset
  1556
dtraceJSDT.hpp                          nativeInst_<arch>.hpp
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 360
diff changeset
  1557
dtraceJSDT.hpp                          nmethod.hpp
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 360
diff changeset
  1558
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 360
diff changeset
  1559
dtraceJSDT_<os_family>.cpp              allocation.hpp
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 360
diff changeset
  1560
dtraceJSDT_<os_family>.cpp              codeBlob.hpp
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 360
diff changeset
  1561
dtraceJSDT_<os_family>.cpp              dtraceJSDT.hpp
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 360
diff changeset
  1562
dtraceJSDT_<os_family>.cpp              globalDefinitions.hpp
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 360
diff changeset
  1563
dtraceJSDT_<os_family>.cpp              javaClasses.hpp
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 360
diff changeset
  1564
dtraceJSDT_<os_family>.cpp              jniHandles.hpp
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 360
diff changeset
  1565
dtraceJSDT_<os_family>.cpp              jvm.h
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 360
diff changeset
  1566
dtraceJSDT_<os_family>.cpp              os.hpp
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 360
diff changeset
  1567
dtraceJSDT_<os_family>.cpp              signature.hpp
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 360
diff changeset
  1568
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1569
// dump is jck optional, put cpp deps in includeDB_features
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1570
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1571
events.cpp                              allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1572
events.cpp                              events.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1573
events.cpp                              mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1574
events.cpp                              osThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1575
events.cpp                              threadLocalStorage.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1576
events.cpp                              thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1577
events.cpp                              timer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1578
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1579
events.hpp                              allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1580
events.hpp                              top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1581
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1582
evmCompat.cpp                           debug.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1583
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1584
exceptionHandlerTable.cpp               allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1585
exceptionHandlerTable.cpp               exceptionHandlerTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1586
exceptionHandlerTable.cpp               nmethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1587
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1588
exceptionHandlerTable.hpp               allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1589
exceptionHandlerTable.hpp               methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1590
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1591
exceptions.cpp                          compileBroker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1592
exceptions.cpp                          events.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1593
exceptions.cpp                          exceptions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1594
exceptions.cpp                          init.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1595
exceptions.cpp                          java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1596
exceptions.cpp                          javaCalls.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1597
exceptions.cpp                          oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1598
exceptions.cpp                          systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1599
exceptions.cpp                          threadCritical.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1600
exceptions.cpp                          thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1601
exceptions.cpp                          vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1602
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1603
exceptions.hpp                          allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1604
exceptions.hpp                          oopsHierarchy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1605
exceptions.hpp                          sizes.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1606
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1607
fieldDescriptor.cpp                     fieldDescriptor.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1608
fieldDescriptor.cpp                     handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1609
fieldDescriptor.cpp                     instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1610
fieldDescriptor.cpp                     resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1611
fieldDescriptor.cpp                     signature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1612
fieldDescriptor.cpp                     systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1613
fieldDescriptor.cpp                     universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1614
fieldDescriptor.cpp                     vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1615
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1616
fieldDescriptor.hpp                     accessFlags.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1617
fieldDescriptor.hpp                     constantPoolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1618
fieldDescriptor.hpp                     constantTag.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1619
fieldDescriptor.hpp                     fieldType.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1620
fieldDescriptor.hpp                     klassOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1621
fieldDescriptor.hpp                     oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1622
fieldDescriptor.hpp                     symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1623
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1624
fieldType.cpp                           fieldType.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1625
fieldType.cpp                           oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1626
fieldType.cpp                           oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1627
fieldType.cpp                           signature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1628
fieldType.cpp                           systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1629
fieldType.cpp                           typeArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1630
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1631
fieldType.hpp                           allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1632
fieldType.hpp                           symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1633
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1634
filemap.cpp                             arguments.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1635
filemap.cpp                             classLoader.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1636
filemap.cpp                             defaultStream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1637
filemap.cpp                             filemap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1638
filemap.cpp                             hpi_<os_family>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1639
filemap.cpp                             java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1640
filemap.cpp                             os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1641
filemap.cpp                             symbolTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1642
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1643
filemap.hpp                             compactingPermGenGen.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1644
filemap.hpp                             space.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1645
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1646
// forte is jck optional, put cpp deps in includeDB_features
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1647
// fprofiler is jck optional, put cpp deps in includeDB_features
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1648
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1649
fprofiler.hpp                           thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1650
fprofiler.hpp                           timer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1651
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1652
frame.cpp                               collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1653
frame.cpp                               frame.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1654
frame.cpp                               handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1655
frame.cpp                               interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1656
frame.cpp                               javaCalls.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1657
frame.cpp                               markOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1658
frame.cpp                               methodDataOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1659
frame.cpp                               methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1660
frame.cpp                               monitorChunk.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1661
frame.cpp                               nativeInst_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1662
frame.cpp                               oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1663
frame.cpp                               oop.inline2.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1664
frame.cpp                               oopMapCache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1665
frame.cpp                               resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1666
frame.cpp                               sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1667
frame.cpp                               signature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1668
frame.cpp                               stubCodeGenerator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1669
frame.cpp                               stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1670
frame.cpp                               universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1671
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1672
frame.hpp                               assembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1673
frame.hpp                               methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1674
frame.hpp                               monitorChunk.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1675
frame.hpp                               registerMap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1676
frame.hpp                               synchronizer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1677
frame.hpp                               top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1678
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1679
frame.inline.hpp                        bytecodeInterpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1680
frame.inline.hpp                        bytecodeInterpreter.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1681
frame.inline.hpp                        frame.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1682
frame.inline.hpp                        interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1683
frame.inline.hpp                        jniTypes_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1684
frame.inline.hpp                        methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1685
frame.inline.hpp                        signature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1686
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1687
frame_<arch>.cpp                        frame.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1688
frame_<arch>.cpp                        handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1689
frame_<arch>.cpp                        interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1690
frame_<arch>.cpp                        javaCalls.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1691
frame_<arch>.cpp                        markOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1692
frame_<arch>.cpp                        methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1693
frame_<arch>.cpp                        monitorChunk.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1694
frame_<arch>.cpp                        oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1695
frame_<arch>.cpp                        resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1696
frame_<arch>.cpp                        signature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1697
frame_<arch>.cpp                        stubCodeGenerator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1698
frame_<arch>.cpp                        stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1699
frame_<arch>.cpp                        vmreg_<arch>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1700
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1701
frame_<arch>.hpp                        generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1702
frame_<arch>.hpp                        synchronizer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1703
frame_<arch>.hpp                        top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1704
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1705
frame_<arch>.inline.hpp                 generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1706
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1707
gcLocker.cpp                            gcLocker.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1708
gcLocker.cpp                            sharedHeap.hpp
386
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 225
diff changeset
  1709
gcLocker.cpp                            resourceArea.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1710
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1711
gcLocker.hpp                            collectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1712
gcLocker.hpp                            genCollectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1713
gcLocker.hpp                            oop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1714
gcLocker.hpp                            os_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1715
gcLocker.hpp                            thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1716
gcLocker.hpp                            universe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1717
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1718
gcLocker.inline.hpp                     gcLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1719
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1720
genCollectedHeap.cpp                    aprofiler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1721
genCollectedHeap.cpp                    biasedLocking.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1722
genCollectedHeap.cpp                    collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1723
genCollectedHeap.cpp                    collectorCounters.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1724
genCollectedHeap.cpp                    compactPermGen.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1725
genCollectedHeap.cpp                    filemap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1726
genCollectedHeap.cpp                    fprofiler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1727
genCollectedHeap.cpp                    gcLocker.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1728
genCollectedHeap.cpp                    genCollectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1729
genCollectedHeap.cpp                    genOopClosures.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1730
genCollectedHeap.cpp                    generation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1731
genCollectedHeap.cpp                    generationSpec.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1732
genCollectedHeap.cpp                    handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1733
genCollectedHeap.cpp                    handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1734
genCollectedHeap.cpp                    icBuffer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1735
genCollectedHeap.cpp                    java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1736
genCollectedHeap.cpp                    memoryService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1737
genCollectedHeap.cpp                    oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1738
genCollectedHeap.cpp                    oop.inline2.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1739
genCollectedHeap.cpp                    permGen.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1740
genCollectedHeap.cpp                    resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1741
genCollectedHeap.cpp                    sharedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1742
genCollectedHeap.cpp                    space.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1743
genCollectedHeap.cpp                    symbolTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1744
genCollectedHeap.cpp                    systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1745
genCollectedHeap.cpp                    vmGCOperations.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1746
genCollectedHeap.cpp                    vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1747
genCollectedHeap.cpp                    vmThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1748
genCollectedHeap.cpp                    workgroup.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1749
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1750
genCollectedHeap.hpp                    adaptiveSizePolicy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1751
genCollectedHeap.hpp                    collectorPolicy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1752
genCollectedHeap.hpp                    generation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1753
genCollectedHeap.hpp                    sharedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1754
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1755
genMarkSweep.cpp                        codeCache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1756
genMarkSweep.cpp                        collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1757
genMarkSweep.cpp                        copy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1758
genMarkSweep.cpp                        events.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1759
genMarkSweep.cpp                        fprofiler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1760
genMarkSweep.cpp                        genCollectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1761
genMarkSweep.cpp                        genMarkSweep.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1762
genMarkSweep.cpp                        genOopClosures.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1763
genMarkSweep.cpp                        generation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1764
genMarkSweep.cpp                        handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1765
genMarkSweep.cpp                        icBuffer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1766
genMarkSweep.cpp                        instanceRefKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1767
genMarkSweep.cpp                        javaClasses.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1768
genMarkSweep.cpp                        jvmtiExport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1769
genMarkSweep.cpp                        modRefBarrierSet.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1770
genMarkSweep.cpp                        oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1771
genMarkSweep.cpp                        referencePolicy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1772
genMarkSweep.cpp                        space.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1773
genMarkSweep.cpp                        symbolTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1774
genMarkSweep.cpp                        synchronizer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1775
genMarkSweep.cpp                        systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1776
genMarkSweep.cpp                        thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1777
genMarkSweep.cpp                        vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1778
genMarkSweep.cpp                        vmThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1779
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1780
genMarkSweep.hpp                        markSweep.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1781
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1782
genOopClosures.hpp                      iterator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1783
genOopClosures.hpp                      oop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1784
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1785
genOopClosures.inline.hpp               cardTableRS.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1786
genOopClosures.inline.hpp               defNewGeneration.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1787
genOopClosures.inline.hpp               genCollectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1788
genOopClosures.inline.hpp               genOopClosures.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1789
genOopClosures.inline.hpp               genRemSet.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1790
genOopClosures.inline.hpp               generation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1791
genOopClosures.inline.hpp               sharedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1792
genOopClosures.inline.hpp               space.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1793
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1794
genRemSet.cpp                           cardTableRS.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1795
genRemSet.cpp                           genRemSet.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1796
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1797
genRemSet.hpp                           oop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1798
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 389
diff changeset
  1799
generateOopMap.cpp                      bitMap.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1800
generateOopMap.cpp                      bytecodeStream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1801
generateOopMap.cpp                      generateOopMap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1802
generateOopMap.cpp                      handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1803
generateOopMap.cpp                      java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1804
generateOopMap.cpp                      oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1805
generateOopMap.cpp                      relocator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1806
generateOopMap.cpp                      symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1807
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1808
generateOopMap.hpp                      allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1809
generateOopMap.hpp                      bytecodeStream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1810
generateOopMap.hpp                      methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1811
generateOopMap.hpp                      oopsHierarchy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1812
generateOopMap.hpp                      signature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1813
generateOopMap.hpp                      universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1814
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1815
generation.cpp                          allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1816
generation.cpp                          blockOffsetTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1817
generation.cpp                          cardTableRS.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1818
generation.cpp                          collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1819
generation.cpp                          copy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1820
generation.cpp                          events.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1821
generation.cpp                          gcLocker.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1822
generation.cpp                          genCollectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1823
generation.cpp                          genMarkSweep.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1824
generation.cpp                          genOopClosures.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1825
generation.cpp                          genOopClosures.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1826
generation.cpp                          generation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1827
generation.cpp                          generation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1828
generation.cpp                          java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1829
generation.cpp                          oop.inline.hpp
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 590
diff changeset
  1830
generation.cpp                          spaceDecorator.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1831
generation.cpp                          space.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1832
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1833
generation.hpp                          allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1834
generation.hpp                          collectorCounters.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1835
generation.hpp                          memRegion.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1836
generation.hpp                          mutex.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1837
generation.hpp                          perfData.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1838
generation.hpp                          referenceProcessor.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1839
generation.hpp                          universe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1840
generation.hpp                          virtualspace.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1841
generation.hpp                          watermark.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1842
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1843
generation.inline.hpp                   genCollectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1844
generation.inline.hpp                   generation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1845
generation.inline.hpp                   space.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1846
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 389
diff changeset
  1847
genOopClosures.hpp                      oop.hpp
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 389
diff changeset
  1848
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1849
generationSpec.cpp                      compactPermGen.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1850
generationSpec.cpp                      defNewGeneration.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1851
generationSpec.cpp                      filemap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1852
generationSpec.cpp                      genRemSet.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1853
generationSpec.cpp                      generationSpec.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1854
generationSpec.cpp                      java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1855
generationSpec.cpp                      tenuredGeneration.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1856
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1857
generationSpec.hpp                      generation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1858
generationSpec.hpp                      permGen.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1859
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1860
globalDefinitions.cpp                   globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1861
globalDefinitions.cpp                   os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1862
globalDefinitions.cpp                   top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1863
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1864
globalDefinitions.hpp                   globalDefinitions_<compiler>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1865
globalDefinitions.hpp                   macros.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1866
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1867
globalDefinitions_<arch>.hpp            generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1868
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1869
globalDefinitions_<compiler>.hpp        jni.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1870
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1871
globals.cpp                             allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1872
globals.cpp                             arguments.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1873
globals.cpp                             globals.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1874
globals.cpp                             globals_extension.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1875
globals.cpp                             oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1876
globals.cpp                             ostream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1877
globals.cpp                             top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1878
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1879
globals.hpp                             debug.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1880
globals.hpp                             globals_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1881
globals.hpp                             globals_<os_arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1882
globals.hpp                             globals_<os_family>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1883
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1884
globals_extension.hpp                   globals.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1885
globals_extension.hpp                   top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1886
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1887
growableArray.cpp                       growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1888
growableArray.cpp                       resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1889
growableArray.cpp                       thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1890
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1891
growableArray.hpp                       allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1892
growableArray.hpp                       allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1893
growableArray.hpp                       debug.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1894
growableArray.hpp                       globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1895
growableArray.hpp                       top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1896
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1897
handles.cpp                             allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1898
handles.cpp                             handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1899
handles.cpp                             oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1900
handles.cpp                             os_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1901
handles.cpp                             thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1902
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1903
handles.hpp                             klass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1904
handles.hpp                             klassOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1905
handles.hpp                             top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1906
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1907
handles.inline.hpp                      handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1908
handles.inline.hpp                      thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1909
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1910
hashtable.cpp                           allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1911
hashtable.cpp                           dtrace.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1912
hashtable.cpp                           hashtable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1913
hashtable.cpp                           hashtable.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1914
hashtable.cpp                           oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1915
hashtable.cpp                           resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1916
hashtable.cpp                           safepoint.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1917
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1918
hashtable.hpp                           allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1919
hashtable.hpp                           handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1920
hashtable.hpp                           oop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1921
hashtable.hpp                           symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1922
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1923
hashtable.inline.hpp                    allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1924
hashtable.inline.hpp                    hashtable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1925
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1926
heap.cpp                                heap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1927
heap.cpp                                oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1928
heap.cpp                                os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1929
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1930
heap.hpp                                allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1931
heap.hpp                                virtualspace.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1932
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1933
// heapDumper is jck optional, put cpp deps in includeDB_features
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1934
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1935
heapDumper.hpp                          allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1936
heapDumper.hpp                          klassOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1937
heapDumper.hpp                          oop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1938
heapDumper.hpp                          os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1939
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1940
// heapInspection is jck optional, put cpp deps in includeDB_features
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1941
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1942
heapInspection.hpp                      allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1943
heapInspection.hpp                      oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1944
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1945
histogram.cpp                           histogram.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1946
histogram.cpp                           oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1947
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1948
histogram.hpp                           allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1949
histogram.hpp                           growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1950
histogram.hpp                           os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1951
histogram.hpp                           os_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1952
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1953
hpi.cpp                                 hpi.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1954
hpi.cpp                                 jvm.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1955
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1956
hpi.hpp                                 globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1957
hpi.hpp                                 hpi_imported.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1958
hpi.hpp                                 os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1959
hpi.hpp                                 top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1960
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1961
hpi_<os_family>.cpp                     hpi.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1962
hpi_<os_family>.cpp                     oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1963
hpi_<os_family>.cpp                     os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1964
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1965
hpi_imported.h                          jni.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1966
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
  1967
icBuffer.cpp                            assembler_<arch>.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1968
icBuffer.cpp                            collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1969
icBuffer.cpp                            compiledIC.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1970
icBuffer.cpp                            icBuffer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1971
icBuffer.cpp                            interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1972
icBuffer.cpp                            linkResolver.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1973
icBuffer.cpp                            methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1974
icBuffer.cpp                            mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1975
icBuffer.cpp                            nmethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1976
icBuffer.cpp                            oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1977
icBuffer.cpp                            oop.inline2.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1978
icBuffer.cpp                            resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1979
icBuffer.cpp                            scopeDesc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1980
icBuffer.cpp                            stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1981
icBuffer.cpp                            universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1982
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1983
icBuffer.hpp                            allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1984
icBuffer.hpp                            bytecodes.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1985
icBuffer.hpp                            stubs.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1986
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1987
icBuffer_<arch>.cpp                     assembler.hpp
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
  1988
icBuffer_<arch>.cpp                     assembler_<arch>.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1989
icBuffer_<arch>.cpp                     bytecodes.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1990
icBuffer_<arch>.cpp                     collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1991
icBuffer_<arch>.cpp                     icBuffer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1992
icBuffer_<arch>.cpp                     nativeInst_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1993
icBuffer_<arch>.cpp                     oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1994
icBuffer_<arch>.cpp                     oop.inline2.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1995
icBuffer_<arch>.cpp                     resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1996
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1997
icache.cpp                              icache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1998
icache.cpp                              resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1999
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2000
icache.hpp                              allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2001
icache.hpp                              stubCodeGenerator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2002
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
  2003
icache_<arch>.cpp                       assembler_<arch>.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2004
icache_<arch>.cpp                       icache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2005
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2006
icache_<arch>.hpp                       generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2007
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2008
init.cpp                                bytecodes.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2009
init.cpp                                collectedHeap.hpp
190
e9a0a9dcd4f6 6395208: Elide autoboxing for calls to HashMap.get(int) and HashMap.get(long)
never
parents: 1
diff changeset
  2010
init.cpp                                handles.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2011
init.cpp                                icBuffer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2012
init.cpp                                icache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2013
init.cpp                                init.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2014
init.cpp                                safepoint.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2015
init.cpp                                sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2016
init.cpp                                universe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2017
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2018
init.hpp                                top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2019
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2020
instanceKlass.cpp                       collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2021
instanceKlass.cpp                       compileBroker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2022
instanceKlass.cpp                       fieldDescriptor.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2023
instanceKlass.cpp                       genOopClosures.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2024
instanceKlass.cpp                       handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2025
instanceKlass.cpp                       instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2026
instanceKlass.cpp                       instanceOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2027
instanceKlass.cpp                       javaCalls.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2028
instanceKlass.cpp                       javaClasses.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2029
instanceKlass.cpp                       jvmti.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2030
instanceKlass.cpp                       jvmtiExport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2031
instanceKlass.cpp                       jvmtiRedefineClassesTrace.hpp
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 347
diff changeset
  2032
instanceKlass.cpp                       markSweep.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2033
instanceKlass.cpp                       methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2034
instanceKlass.cpp                       mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2035
instanceKlass.cpp                       objArrayKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2036
instanceKlass.cpp                       oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2037
instanceKlass.cpp                       oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2038
instanceKlass.cpp                       oopMapCache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2039
instanceKlass.cpp                       permGen.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2040
instanceKlass.cpp                       rewriter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2041
instanceKlass.cpp                       symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2042
instanceKlass.cpp                       systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2043
instanceKlass.cpp                       threadService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2044
instanceKlass.cpp                       thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2045
instanceKlass.cpp                       verifier.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2046
instanceKlass.cpp                       vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2047
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2048
instanceKlass.hpp                       accessFlags.hpp
1904
7aada8102b30 6793825: Missing include dependancies for GCC without predefined headers
coleenp
parents: 1620
diff changeset
  2049
instanceKlass.hpp                       bitMap.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2050
instanceKlass.hpp                       constMethodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2051
instanceKlass.hpp                       constantPoolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2052
instanceKlass.hpp                       handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2053
instanceKlass.hpp                       instanceOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2054
instanceKlass.hpp                       klassOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2055
instanceKlass.hpp                       klassVtable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2056
instanceKlass.hpp                       objArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2057
instanceKlass.hpp                       os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2058
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2059
instanceKlassKlass.cpp                  collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2060
instanceKlassKlass.cpp                  constantPoolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2061
instanceKlassKlass.cpp                  fieldDescriptor.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2062
instanceKlassKlass.cpp                  gcLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2063
instanceKlassKlass.cpp                  instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2064
instanceKlassKlass.cpp                  instanceKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2065
instanceKlassKlass.cpp                  instanceRefKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2066
instanceKlassKlass.cpp                  javaClasses.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2067
instanceKlassKlass.cpp                  jvmtiExport.hpp
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 347
diff changeset
  2068
instanceKlassKlass.cpp                  markSweep.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2069
instanceKlassKlass.cpp                  objArrayKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2070
instanceKlassKlass.cpp                  objArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2071
instanceKlassKlass.cpp                  oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2072
instanceKlassKlass.cpp                  oop.inline2.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2073
instanceKlassKlass.cpp                  oopMapCache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2074
instanceKlassKlass.cpp                  symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2075
instanceKlassKlass.cpp                  systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2076
instanceKlassKlass.cpp                  typeArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2077
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2078
instanceKlassKlass.hpp                  klassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2079
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2080
instanceOop.cpp                         instanceOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2081
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2082
instanceOop.hpp                         oop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2083
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2084
instanceRefKlass.cpp                    collectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2085
instanceRefKlass.cpp                    collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2086
instanceRefKlass.cpp                    genCollectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2087
instanceRefKlass.cpp                    genOopClosures.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2088
instanceRefKlass.cpp                    instanceRefKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2089
instanceRefKlass.cpp                    javaClasses.hpp
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 347
diff changeset
  2090
instanceRefKlass.cpp                    markSweep.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2091
instanceRefKlass.cpp                    oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2092
instanceRefKlass.cpp                    preserveException.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2093
instanceRefKlass.cpp                    systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2094
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2095
instanceRefKlass.hpp                    instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2096
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2097
interfaceSupport.cpp                    collectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2098
interfaceSupport.cpp                    collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2099
interfaceSupport.cpp                    genCollectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2100
interfaceSupport.cpp                    init.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2101
interfaceSupport.cpp                    interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2102
interfaceSupport.cpp                    markSweep.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2103
interfaceSupport.cpp                    preserveException.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2104
interfaceSupport.cpp                    resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2105
interfaceSupport.cpp                    threadLocalStorage.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2106
interfaceSupport.cpp                    vframe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2107
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2108
interfaceSupport.hpp                    gcLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2109
interfaceSupport.hpp                    globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2110
interfaceSupport.hpp                    handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2111
interfaceSupport.hpp                    mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2112
interfaceSupport.hpp                    orderAccess.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2113
interfaceSupport.hpp                    os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2114
interfaceSupport.hpp                    preserveException.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2115
interfaceSupport.hpp                    safepoint.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2116
interfaceSupport.hpp                    thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2117
interfaceSupport.hpp                    top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2118
interfaceSupport.hpp                    vmThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2119
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2120
interfaceSupport_<os_family>.hpp        generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2121
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2122
interp_masm_<arch_model>.cpp            arrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2123
interp_masm_<arch_model>.cpp            biasedLocking.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2124
interp_masm_<arch_model>.cpp            interp_masm_<arch_model>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2125
interp_masm_<arch_model>.cpp            interpreterRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2126
interp_masm_<arch_model>.cpp            interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2127
interp_masm_<arch_model>.cpp            jvmtiExport.hpp
2136
c55428da3cec 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 1620
diff changeset
  2128
interp_masm_<arch_model>.cpp            jvmtiRedefineClassesTrace.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2129
interp_masm_<arch_model>.cpp            jvmtiThreadState.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2130
interp_masm_<arch_model>.cpp            markOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2131
interp_masm_<arch_model>.cpp            methodDataOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2132
interp_masm_<arch_model>.cpp            methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2133
interp_masm_<arch_model>.cpp            sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2134
interp_masm_<arch_model>.cpp            synchronizer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2135
interp_masm_<arch_model>.cpp            thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2136
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
  2137
interp_masm_<arch_model>.hpp            assembler_<arch>.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2138
interp_masm_<arch_model>.hpp            invocationCounter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2139
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2140
interpreter.cpp                         allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2141
interpreter.cpp                         arrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2142
interpreter.cpp                         assembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2143
interpreter.cpp                         bytecodeHistogram.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2144
interpreter.cpp                         bytecodeInterpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2145
interpreter.cpp                         forte.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2146
interpreter.cpp                         handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2147
interpreter.cpp                         interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2148
interpreter.cpp                         interpreterRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2149
interpreter.cpp                         interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2150
interpreter.cpp                         jvmtiExport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2151
interpreter.cpp                         methodDataOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2152
interpreter.cpp                         methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2153
interpreter.cpp                         oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2154
interpreter.cpp                         resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2155
interpreter.cpp                         sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2156
interpreter.cpp                         stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2157
interpreter.cpp                         templateTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2158
interpreter.cpp                         timer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2159
interpreter.cpp                         vtune.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2160
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2161
interpreter.hpp                         cppInterpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2162
interpreter.hpp                         stubs.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2163
interpreter.hpp                         templateInterpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2164
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2165
interpreterRT_<arch_model>.cpp          allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2166
interpreterRT_<arch_model>.cpp          handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2167
interpreterRT_<arch_model>.cpp          icache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2168
interpreterRT_<arch_model>.cpp          interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2169
interpreterRT_<arch_model>.cpp          interpreterRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2170
interpreterRT_<arch_model>.cpp          interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2171
interpreterRT_<arch_model>.cpp          methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2172
interpreterRT_<arch_model>.cpp          oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2173
interpreterRT_<arch_model>.cpp          signature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2174
interpreterRT_<arch_model>.cpp          universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2175
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2176
interpreterRT_<arch>.hpp                allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2177
interpreterRT_<arch>.hpp                generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2178
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2179
interpreterRuntime.cpp                  biasedLocking.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2180
interpreterRuntime.cpp                  collectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2181
interpreterRuntime.cpp                  compilationPolicy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2182
interpreterRuntime.cpp                  constantPoolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2183
interpreterRuntime.cpp                  cpCacheOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2184
interpreterRuntime.cpp                  deoptimization.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2185
interpreterRuntime.cpp                  events.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2186
interpreterRuntime.cpp                  fieldDescriptor.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2187
interpreterRuntime.cpp                  handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2188
interpreterRuntime.cpp                  instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2189
interpreterRuntime.cpp                  interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2190
interpreterRuntime.cpp                  interpreterRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2191
interpreterRuntime.cpp                  interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2192
interpreterRuntime.cpp                  java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2193
interpreterRuntime.cpp                  jfieldIDWorkaround.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2194
interpreterRuntime.cpp                  jvmtiExport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2195
interpreterRuntime.cpp                  linkResolver.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2196
interpreterRuntime.cpp                  methodDataOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2197
interpreterRuntime.cpp                  nativeLookup.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2198
interpreterRuntime.cpp                  objArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2199
interpreterRuntime.cpp                  oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2200
interpreterRuntime.cpp                  oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2201
interpreterRuntime.cpp                  osThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2202
interpreterRuntime.cpp                  sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2203
interpreterRuntime.cpp                  stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2204
interpreterRuntime.cpp                  symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2205
interpreterRuntime.cpp                  synchronizer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2206
interpreterRuntime.cpp                  systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2207
interpreterRuntime.cpp                  templateTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2208
interpreterRuntime.cpp                  threadCritical.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2209
interpreterRuntime.cpp                  universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2210
interpreterRuntime.cpp                  vmSymbols.hpp
2111
dab8a43dd738 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 1904
diff changeset
  2211
interpreterRuntime.cpp                  vm_version_<arch>.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2212
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2213
interpreterRuntime.hpp                  bytecode.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2214
interpreterRuntime.hpp                  frame.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2215
interpreterRuntime.hpp                  linkResolver.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2216
interpreterRuntime.hpp                  methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2217
interpreterRuntime.hpp                  signature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2218
interpreterRuntime.hpp                  thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2219
interpreterRuntime.hpp                  top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2220
interpreterRuntime.hpp                  universe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2221
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2222
interpreter_<arch_model>.cpp            arguments.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2223
interpreter_<arch_model>.cpp            arrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2224
interpreter_<arch_model>.cpp            assembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2225
interpreter_<arch_model>.cpp            bytecodeHistogram.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2226
interpreter_<arch_model>.cpp            debug.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2227
interpreter_<arch_model>.cpp            deoptimization.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2228
interpreter_<arch_model>.cpp            frame.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2229
interpreter_<arch_model>.cpp            interpreterRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2230
interpreter_<arch_model>.cpp            interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2231
interpreter_<arch_model>.cpp            interpreterGenerator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2232
interpreter_<arch_model>.cpp            jvmtiExport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2233
interpreter_<arch_model>.cpp            jvmtiThreadState.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2234
interpreter_<arch_model>.cpp            methodDataOop.hpp
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2338
diff changeset
  2235
interpreter_<arch_model>.cpp            methodHandles.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2236
interpreter_<arch_model>.cpp            methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2237
interpreter_<arch_model>.cpp            oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2238
interpreter_<arch_model>.cpp            sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2239
interpreter_<arch_model>.cpp            stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2240
interpreter_<arch_model>.cpp            synchronizer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2241
interpreter_<arch_model>.cpp            templateTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2242
interpreter_<arch_model>.cpp            timer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2243
interpreter_<arch_model>.cpp            vframeArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2244
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2245
interpreter_<arch>.hpp                  generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2246
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2247
interpreterGenerator.hpp                cppInterpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2248
interpreterGenerator.hpp                cppInterpreterGenerator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2249
interpreterGenerator.hpp                templateInterpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2250
interpreterGenerator.hpp                templateInterpreterGenerator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2251
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2252
interpreterGenerator_<arch>.hpp         generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2253
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2254
invocationCounter.cpp                   frame.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2255
invocationCounter.cpp                   handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2256
invocationCounter.cpp                   invocationCounter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2257
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2258
invocationCounter.hpp                   allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2259
invocationCounter.hpp                   exceptions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2260
invocationCounter.hpp                   handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2261
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 389
diff changeset
  2262
intHisto.cpp				intHisto.hpp
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 389
diff changeset
  2263
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 389
diff changeset
  2264
intHisto.hpp				allocation.hpp
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 389
diff changeset
  2265
intHisto.hpp                            growableArray.hpp
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 389
diff changeset
  2266
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2267
iterator.cpp                            iterator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2268
iterator.cpp                            oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2269
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2270
iterator.hpp                            allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2271
iterator.hpp                            memRegion.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2272
iterator.hpp                            prefetch.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2273
iterator.hpp                            top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2274
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2275
java.cpp                                aprofiler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2276
java.cpp                                arguments.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2277
java.cpp                                biasedLocking.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2278
java.cpp                                bytecodeHistogram.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2279
java.cpp                                classLoader.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2280
java.cpp                                codeCache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2281
java.cpp                                compilationPolicy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2282
java.cpp                                compileBroker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2283
java.cpp                                compilerOracle.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2284
java.cpp                                constantPoolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2285
java.cpp                                dtrace.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2286
java.cpp                                fprofiler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2287
java.cpp                                genCollectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2288
java.cpp                                generateOopMap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2289
java.cpp                                globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2290
java.cpp                                histogram.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2291
java.cpp                                init.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2292
java.cpp                                instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2293
java.cpp                                instanceKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2294
java.cpp                                instanceOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2295
java.cpp                                interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2296
java.cpp                                java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2297
java.cpp                                jvmtiExport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2298
java.cpp                                memprofiler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2299
java.cpp                                methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2300
java.cpp                                objArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2301
java.cpp                                oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2302
java.cpp                                oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2303
java.cpp                                sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2304
java.cpp                                statSampler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2305
java.cpp                                symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2306
java.cpp                                symbolTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2307
java.cpp                                systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2308
java.cpp                                task.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2309
java.cpp                                thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2310
java.cpp                                timer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2311
java.cpp                                universe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2312
java.cpp                                vmError.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2313
java.cpp                                vm_operations.hpp
2111
dab8a43dd738 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 1904
diff changeset
  2314
java.cpp                                vm_version_<arch>.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2315
java.cpp                                vtune.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2316
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2317
java.hpp                                os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2318
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2319
javaAssertions.cpp                      allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2320
javaAssertions.cpp                      handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2321
javaAssertions.cpp                      javaAssertions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2322
javaAssertions.cpp                      javaClasses.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2323
javaAssertions.cpp                      oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2324
javaAssertions.cpp                      oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2325
javaAssertions.cpp                      systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2326
javaAssertions.cpp                      vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2327
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2328
javaAssertions.hpp                      exceptions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2329
javaAssertions.hpp                      objArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2330
javaAssertions.hpp                      ostream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2331
javaAssertions.hpp                      typeArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2332
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2333
javaCalls.cpp                           compilationPolicy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2334
javaCalls.cpp                           compileBroker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2335
javaCalls.cpp                           handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2336
javaCalls.cpp                           interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2337
javaCalls.cpp                           interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2338
javaCalls.cpp                           javaCalls.hpp
1618
2d86b9b84aa5 6739363: Xcheck jni doesn't check native function arguments
poonam
parents: 1394
diff changeset
  2339
javaCalls.cpp                           jniCheck.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2340
javaCalls.cpp                           linkResolver.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2341
javaCalls.cpp                           mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2342
javaCalls.cpp                           nmethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2343
javaCalls.cpp                           oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2344
javaCalls.cpp                           signature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2345
javaCalls.cpp                           stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2346
javaCalls.cpp                           systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2347
javaCalls.cpp                           thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2348
javaCalls.cpp                           universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2349
javaCalls.cpp                           vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2350
javaCalls.hpp                           allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2351
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2352
javaCalls.hpp                           handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2353
javaCalls.hpp                           javaFrameAnchor.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2354
javaCalls.hpp                           jniTypes_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2355
javaCalls.hpp                           methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2356
javaCalls.hpp                           thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2357
javaCalls.hpp                           vmThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2358
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2359
javaClasses.cpp                         debugInfo.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2360
javaClasses.cpp                         fieldDescriptor.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2361
javaClasses.cpp                         handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2362
javaClasses.cpp                         instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2363
javaClasses.cpp                         interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2364
javaClasses.cpp                         interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2365
javaClasses.cpp                         java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2366
javaClasses.cpp                         javaCalls.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2367
javaClasses.cpp                         javaClasses.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2368
javaClasses.cpp                         klass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2369
javaClasses.cpp                         klassOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2370
javaClasses.cpp                         methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2371
javaClasses.cpp                         oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2372
javaClasses.cpp                         pcDesc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2373
javaClasses.cpp                         preserveException.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2374
javaClasses.cpp                         resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2375
javaClasses.cpp                         safepoint.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2376
javaClasses.cpp                         symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2377
javaClasses.cpp                         symbolTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2378
javaClasses.cpp                         thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2379
javaClasses.cpp                         typeArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2380
javaClasses.cpp                         universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2381
javaClasses.cpp                         vframe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2382
javaClasses.cpp                         vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2383
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2384
javaClasses.hpp                         jvmti.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2385
javaClasses.hpp                         oop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2386
javaClasses.hpp                         os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2387
javaClasses.hpp                         systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2388
javaClasses.hpp                         utf8.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2389
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2390
javaFrameAnchor.hpp                     globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2391
javaFrameAnchor.hpp                     orderAccess_<os_arch>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2392
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2393
javaFrameAnchor_<arch>.hpp              generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2394
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2395
jni.cpp                                 allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2396
jni.cpp                                 classLoader.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2397
jni.cpp                                 compilationPolicy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2398
jni.cpp                                 defaultStream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2399
jni.cpp                                 dtrace.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2400
jni.cpp                                 events.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2401
jni.cpp                                 fieldDescriptor.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2402
jni.cpp                                 fprofiler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2403
jni.cpp                                 gcLocker.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2404
jni.cpp                                 handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2405
jni.cpp                                 histogram.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2406
jni.cpp                                 instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2407
jni.cpp                                 instanceOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2408
jni.cpp                                 interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2409
jni.cpp                                 java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2410
jni.cpp                                 javaCalls.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2411
jni.cpp                                 javaClasses.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2412
jni.cpp                                 jfieldIDWorkaround.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2413
jni.cpp                                 jni.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2414
jni.cpp                                 jniCheck.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2415
jni.cpp                                 jniFastGetField.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2416
jni.cpp                                 jniTypes_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2417
jni.cpp                                 jvm.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2418
jni.cpp                                 jvm_misc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2419
jni.cpp                                 jvmtiExport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2420
jni.cpp                                 jvmtiThreadState.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2421
jni.cpp                                 linkResolver.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2422
jni.cpp                                 markOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2423
jni.cpp                                 methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2424
jni.cpp                                 objArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2425
jni.cpp                                 objArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2426
jni.cpp                                 oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2427
jni.cpp                                 oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2428
jni.cpp                                 os_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2429
jni.cpp                                 reflection.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2430
jni.cpp                                 runtimeService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2431
jni.cpp                                 sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2432
jni.cpp                                 signature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2433
jni.cpp                                 symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2434
jni.cpp                                 symbolTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2435
jni.cpp                                 systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2436
jni.cpp                                 thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2437
jni.cpp                                 typeArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2438
jni.cpp                                 typeArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2439
jni.cpp                                 universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2440
jni.cpp                                 vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2441
jni.cpp                                 vm_operations.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2442
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2443
// jniCheck is jck optional, put cpp deps in includeDB_features
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2444
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2445
jniFastGetField.cpp                     jniFastGetField.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2446
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2447
jniFastGetField.hpp                     allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2448
jniFastGetField.hpp                     jvm_misc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2449
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
  2450
jniFastGetField_<arch_model>.cpp        assembler_<arch>.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2451
jniFastGetField_<arch_model>.cpp        jniFastGetField.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2452
jniFastGetField_<arch_model>.cpp        jvm_misc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2453
jniFastGetField_<arch_model>.cpp        resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2454
jniFastGetField_<arch_model>.cpp        safepoint.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2455
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2456
jniHandles.cpp                          jniHandles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2457
jniHandles.cpp                          mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2458
jniHandles.cpp                          oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2459
jniHandles.cpp                          systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2460
jniHandles.cpp                          thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2461
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2462
jniHandles.hpp                          handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2463
jniHandles.hpp                          top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2464
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2465
jniPeriodicChecker.cpp                  allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2466
jniPeriodicChecker.cpp                  jniPeriodicChecker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2467
jniPeriodicChecker.cpp                  task.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2468
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2469
jniTypes_<arch>.hpp                     allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2470
jniTypes_<arch>.hpp                     jni.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2471
jniTypes_<arch>.hpp                     oop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2472
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2473
jni_<arch>.h                            generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2474
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2475
jvm.cpp                                 arguments.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2476
jvm.cpp                                 attachListener.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2477
jvm.cpp                                 classLoader.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2478
jvm.cpp                                 collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2479
jvm.cpp                                 copy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2480
jvm.cpp                                 defaultStream.hpp
363
99d43e8a76ad 6537506: Provide a mechanism for specifying Java-level USDT-like dtrace probes
kamg
parents: 360
diff changeset
  2481
jvm.cpp                                 dtraceJSDT.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2482
jvm.cpp                                 events.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2483
jvm.cpp                                 handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2484
jvm.cpp                                 histogram.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2485
jvm.cpp                                 hpi.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2486
jvm.cpp                                 hpi_<os_family>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2487
jvm.cpp                                 init.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2488
jvm.cpp                                 instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2489
jvm.cpp                                 interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2490
jvm.cpp                                 java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2491
jvm.cpp                                 javaAssertions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2492
jvm.cpp                                 javaCalls.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2493
jvm.cpp                                 javaClasses.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2494
jvm.cpp                                 jfieldIDWorkaround.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2495
jvm.cpp                                 jvm.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2496
jvm.cpp                                 jvm_<os_family>.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2497
jvm.cpp                                 jvm_misc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2498
jvm.cpp                                 jvmtiExport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2499
jvm.cpp                                 jvmtiThreadState.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2500
jvm.cpp                                 management.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2501
jvm.cpp                                 nativeLookup.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2502
jvm.cpp                                 objArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2503
jvm.cpp                                 oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2504
jvm.cpp                                 os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2505
jvm.cpp                                 perfData.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2506
jvm.cpp                                 privilegedStack.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2507
jvm.cpp                                 reflection.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2508
jvm.cpp                                 symbolTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2509
jvm.cpp                                 systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2510
jvm.cpp                                 threadService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2511
jvm.cpp                                 top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2512
jvm.cpp                                 universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2513
jvm.cpp                                 utf8.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2514
jvm.cpp                                 vframe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2515
jvm.cpp                                 vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2516
jvm.cpp                                 vm_operations.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2517
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2518
jvm.h                                   globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2519
jvm.h                                   jni.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2520
jvm.h                                   jvm_<os_family>.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2521
jvm.h                                   reflectionCompat.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2522
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2523
jvm_<os_family>.cpp                     interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2524
jvm_<os_family>.cpp                     jvm.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2525
jvm_<os_family>.cpp                     osThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2526
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2527
jvm_misc.hpp                            handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2528
jvm_misc.hpp                            jni.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2529
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2530
jvmtiExport.hpp                         allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2531
jvmtiExport.hpp                         globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2532
jvmtiExport.hpp                         growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2533
jvmtiExport.hpp                         handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2534
jvmtiExport.hpp                         iterator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2535
jvmtiExport.hpp                         jvmti.h
4732
a70548606f73 6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents: 1620
diff changeset
  2536
jvmtiExport.hpp                         jvmticmlr.h
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2537
jvmtiExport.hpp                         oop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2538
jvmtiExport.hpp                         oopsHierarchy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2539
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2540
jvmtiThreadState.hpp                    allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2541
jvmtiThreadState.hpp                    allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2542
jvmtiThreadState.hpp                    growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2543
jvmtiThreadState.hpp                    jvmti.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2544
jvmtiThreadState.hpp                    jvmtiEventController.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2545
jvmtiThreadState.hpp                    thread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2546
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2547
klass.cpp                               atomic.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2548
klass.cpp                               collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2549
klass.cpp                               instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2550
klass.cpp                               klass.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2551
klass.cpp                               klassOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2552
klass.cpp                               oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2553
klass.cpp                               oop.inline2.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2554
klass.cpp                               oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2555
klass.cpp                               resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2556
klass.cpp                               systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2557
klass.cpp                               vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2558
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2559
klass.hpp                               accessFlags.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2560
klass.hpp                               genOopClosures.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2561
klass.hpp                               iterator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2562
klass.hpp                               klassOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2563
klass.hpp                               klassPS.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2564
klass.hpp                               memRegion.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2565
klass.hpp                               oop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2566
klass.hpp                               specialized_oop_closures.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2567
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2568
klass.inline.hpp                        klass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2569
klass.inline.hpp                        markOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2570
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2571
klassKlass.cpp                          collectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2572
klassKlass.cpp                          collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2573
klassKlass.cpp                          constantPoolKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2574
klassKlass.cpp                          handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2575
klassKlass.cpp                          instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2576
klassKlass.cpp                          instanceOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2577
klassKlass.cpp                          klassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2578
klassKlass.cpp                          klassOop.hpp
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 347
diff changeset
  2579
klassKlass.cpp                          markSweep.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2580
klassKlass.cpp                          methodKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2581
klassKlass.cpp                          objArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2582
klassKlass.cpp                          oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2583
klassKlass.cpp                          oop.inline2.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2584
klassKlass.cpp                          oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2585
klassKlass.cpp                          permGen.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2586
klassKlass.cpp                          symbolKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2587
klassKlass.cpp                          symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2588
klassKlass.cpp                          typeArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2589
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2590
klassKlass.hpp                          klass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2591
klassKlass.hpp                          klassOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2592
klassKlass.hpp                          oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2593
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2594
klassOop.cpp                            klassOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2595
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2596
klassOop.hpp                            oop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2597
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2598
klassVtable.cpp                         arguments.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2599
klassVtable.cpp                         copy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2600
klassVtable.cpp                         gcLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2601
klassVtable.cpp                         handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2602
klassVtable.cpp                         instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2603
klassVtable.cpp                         jvmtiRedefineClassesTrace.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2604
klassVtable.cpp                         klassOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2605
klassVtable.cpp                         klassVtable.hpp
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 347
diff changeset
  2606
klassVtable.cpp                         markSweep.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2607
klassVtable.cpp                         methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2608
klassVtable.cpp                         objArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2609
klassVtable.cpp                         oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2610
klassVtable.cpp                         resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2611
klassVtable.cpp                         systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2612
klassVtable.cpp                         universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2613
klassVtable.cpp                         vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2614
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2615
klassVtable.hpp                         allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2616
klassVtable.hpp                         growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2617
klassVtable.hpp                         handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2618
klassVtable.hpp                         oopsHierarchy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2619
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2620
linkResolver.cpp                        bytecode.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2621
linkResolver.cpp                        collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2622
linkResolver.cpp                        compilationPolicy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2623
linkResolver.cpp                        compileBroker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2624
linkResolver.cpp                        fieldDescriptor.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2625
linkResolver.cpp                        frame.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2626
linkResolver.cpp                        handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2627
linkResolver.cpp                        instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2628
linkResolver.cpp                        interpreterRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2629
linkResolver.cpp                        linkResolver.hpp
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2338
diff changeset
  2630
linkResolver.cpp                        methodHandles.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2631
linkResolver.cpp                        nativeLookup.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2632
linkResolver.cpp                        objArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2633
linkResolver.cpp                        reflection.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2634
linkResolver.cpp                        resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2635
linkResolver.cpp                        signature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2636
linkResolver.cpp                        systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2637
linkResolver.cpp                        thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2638
linkResolver.cpp                        universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2639
linkResolver.cpp                        vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2640
linkResolver.cpp                        vmThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2641
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2642
linkResolver.hpp                        methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2643
linkResolver.hpp                        top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2644
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2645
liveRange.hpp                           copy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2646
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2647
loaderConstraints.cpp                   handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2648
loaderConstraints.cpp                   hashtable.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2649
loaderConstraints.cpp                   loaderConstraints.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2650
loaderConstraints.cpp                   oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2651
loaderConstraints.cpp                   resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2652
loaderConstraints.cpp                   safepoint.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2653
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2654
loaderConstraints.hpp                   dictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2655
loaderConstraints.hpp                   hashtable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2656
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2657
location.cpp                            debugInfo.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2658
location.cpp                            location.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2659
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2660
location.hpp                            allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2661
location.hpp                            assembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2662
location.hpp                            vmreg.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2663
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2664
lowMemoryDetector.cpp                   interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2665
lowMemoryDetector.cpp                   java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2666
lowMemoryDetector.cpp                   javaCalls.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2667
lowMemoryDetector.cpp                   lowMemoryDetector.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2668
lowMemoryDetector.cpp                   management.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2669
lowMemoryDetector.cpp                   mutex.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2670
lowMemoryDetector.cpp                   mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2671
lowMemoryDetector.cpp                   oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2672
lowMemoryDetector.cpp                   systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2673
lowMemoryDetector.cpp                   vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2674
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2675
lowMemoryDetector.hpp                   allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2676
lowMemoryDetector.hpp                   memoryPool.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2677
lowMemoryDetector.hpp                   memoryService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2678
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2679
management.cpp                          arguments.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2680
management.cpp                          classLoadingService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2681
management.cpp                          compileBroker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2682
management.cpp                          handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2683
management.cpp                          heapDumper.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2684
management.cpp                          interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2685
management.cpp                          iterator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2686
management.cpp                          javaCalls.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2687
management.cpp                          jniHandles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2688
management.cpp                          klass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2689
management.cpp                          klassOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2690
management.cpp                          lowMemoryDetector.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2691
management.cpp                          management.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2692
management.cpp                          memoryManager.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2693
management.cpp                          memoryPool.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2694
management.cpp                          memoryService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2695
management.cpp                          objArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2696
management.cpp                          oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2697
management.cpp                          oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2698
management.cpp                          os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2699
management.cpp                          resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2700
management.cpp                          runtimeService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2701
management.cpp                          systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2702
management.cpp                          threadService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2703
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2704
management.hpp                          allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2705
management.hpp                          handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2706
management.hpp                          jmm.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2707
management.hpp                          timer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2708
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2709
markOop.cpp                             markOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2710
markOop.cpp                             thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2711
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2712
markOop.hpp                             oop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2713
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2714
markOop.inline.hpp                      globals.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2715
markOop.inline.hpp                      klass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2716
markOop.inline.hpp                      klassOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2717
markOop.inline.hpp                      markOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2718
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2719
markSweep.cpp                           compileBroker.hpp
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3579
diff changeset
  2720
markSweep.cpp                           methodDataOop.hpp
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 347
diff changeset
  2721
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 347
diff changeset
  2722
markSweep.hpp                           collectedHeap.hpp
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 347
diff changeset
  2723
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2724
memRegion.cpp                           globals.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2725
memRegion.cpp                           memRegion.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2726
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2727
memRegion.hpp                           allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2728
memRegion.hpp                           debug.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2729
memRegion.hpp                           globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2730
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2731
memoryManager.cpp                       systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2732
memoryManager.cpp                       vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2733
memoryManager.cpp                       dtrace.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2734
memoryManager.cpp                       handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2735
memoryManager.cpp                       javaCalls.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2736
memoryManager.cpp                       lowMemoryDetector.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2737
memoryManager.cpp                       management.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2738
memoryManager.cpp                       memoryManager.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2739
memoryManager.cpp                       memoryPool.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2740
memoryManager.cpp                       memoryService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2741
memoryManager.cpp                       oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2742
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2743
memoryManager.hpp                       allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2744
memoryManager.hpp                       memoryUsage.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2745
memoryManager.hpp                       timer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2746
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2747
memoryPool.cpp                          systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2748
memoryPool.cpp                          vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2749
memoryPool.cpp                          handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2750
memoryPool.cpp                          javaCalls.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2751
memoryPool.cpp                          lowMemoryDetector.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2752
memoryPool.cpp                          management.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2753
memoryPool.cpp                          memoryManager.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2754
memoryPool.cpp                          memoryPool.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2755
memoryPool.cpp                          oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2756
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2757
memoryPool.hpp                          defNewGeneration.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2758
memoryPool.hpp                          heap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2759
memoryPool.hpp                          memoryUsage.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2760
memoryPool.hpp                          mutableSpace.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2761
memoryPool.hpp                          space.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2762
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2763
memoryService.cpp                       classLoadingService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2764
memoryService.cpp                       collectorPolicy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2765
memoryService.cpp                       defNewGeneration.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2766
memoryService.cpp                       genCollectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2767
memoryService.cpp                       generation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2768
memoryService.cpp                       generationSpec.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2769
memoryService.cpp                       growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2770
memoryService.cpp                       heap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2771
memoryService.cpp                       javaCalls.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2772
memoryService.cpp                       lowMemoryDetector.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2773
memoryService.cpp                       management.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2774
memoryService.cpp                       memRegion.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2775
memoryService.cpp                       memoryManager.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2776
memoryService.cpp                       memoryPool.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2777
memoryService.cpp                       memoryService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2778
memoryService.cpp                       mutableSpace.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2779
memoryService.cpp                       oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2780
memoryService.cpp                       permGen.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2781
memoryService.cpp                       systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2782
memoryService.cpp                       tenuredGeneration.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2783
memoryService.cpp                       vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2784
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2785
memoryService.hpp                       allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2786
memoryService.hpp                       generation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2787
memoryService.hpp                       handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2788
memoryService.hpp                       memoryUsage.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2789
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2790
memoryUsage.hpp                         globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2791
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2792
memprofiler.cpp                         codeCache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2793
memprofiler.cpp                         collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2794
memprofiler.cpp                         generation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2795
memprofiler.cpp                         handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2796
memprofiler.cpp                         jniHandles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2797
memprofiler.cpp                         memprofiler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2798
memprofiler.cpp                         mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2799
memprofiler.cpp                         oopMapCache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2800
memprofiler.cpp                         os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2801
memprofiler.cpp                         permGen.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2802
memprofiler.cpp                         resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2803
memprofiler.cpp                         systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2804
memprofiler.cpp                         task.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2805
memprofiler.cpp                         thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2806
memprofiler.cpp                         vmThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2807
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2808
methodComparator.cpp                    globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2809
methodComparator.cpp                    handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2810
methodComparator.cpp                    jvmtiRedefineClassesTrace.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2811
methodComparator.cpp                    methodComparator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2812
methodComparator.cpp                    oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2813
methodComparator.cpp                    symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2814
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2815
methodComparator.hpp                    bytecodeStream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2816
methodComparator.hpp                    constantPoolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2817
methodComparator.hpp                    methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2818
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2819
methodDataKlass.cpp                     collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2820
methodDataKlass.cpp                     gcLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2821
methodDataKlass.cpp                     handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2822
methodDataKlass.cpp                     klassOop.hpp
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 347
diff changeset
  2823
methodDataKlass.cpp                     markSweep.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2824
methodDataKlass.cpp                     methodDataKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2825
methodDataKlass.cpp                     methodDataOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2826
methodDataKlass.cpp                     oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2827
methodDataKlass.cpp                     oop.inline2.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2828
methodDataKlass.cpp                     resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2829
methodDataKlass.cpp                     universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2830
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2831
methodDataKlass.hpp                     klass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2832
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2833
methodDataOop.cpp                       bytecode.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2834
methodDataOop.cpp                       bytecodeStream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2835
methodDataOop.cpp                       deoptimization.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2836
methodDataOop.cpp                       handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2837
methodDataOop.cpp                       linkResolver.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2838
methodDataOop.cpp                       markSweep.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2839
methodDataOop.cpp                       methodDataOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2840
methodDataOop.cpp                       oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2841
methodDataOop.cpp                       systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2842
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2843
methodDataOop.hpp                       bytecodes.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2844
methodDataOop.hpp                       oop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2845
methodDataOop.hpp                       orderAccess.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2846
methodDataOop.hpp                       universe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2847
4562
5d93cb2d2090 6894206: JVM needs a way to traverse method handle structures
twisti
parents: 4466
diff changeset
  2848
methodHandleWalk.hpp                    methodHandles.hpp
5d93cb2d2090 6894206: JVM needs a way to traverse method handle structures
twisti
parents: 4466
diff changeset
  2849
5d93cb2d2090 6894206: JVM needs a way to traverse method handle structures
twisti
parents: 4466
diff changeset
  2850
methodHandleWalk.cpp                    methodHandleWalk.hpp
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
  2851
methodHandleWalk.cpp                    oopFactory.hpp
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
  2852
methodHandleWalk.cpp                    rewriter.hpp
4562
5d93cb2d2090 6894206: JVM needs a way to traverse method handle structures
twisti
parents: 4466
diff changeset
  2853
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2338
diff changeset
  2854
methodHandles.hpp                       frame.inline.hpp
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2338
diff changeset
  2855
methodHandles.hpp                       globals.hpp
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2338
diff changeset
  2856
methodHandles.hpp                       interfaceSupport.hpp
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2338
diff changeset
  2857
methodHandles.hpp                       javaClasses.hpp
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2338
diff changeset
  2858
methodHandles.hpp                       vmSymbols.hpp
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2338
diff changeset
  2859
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2338
diff changeset
  2860
methodHandles.cpp                       allocation.inline.hpp
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2338
diff changeset
  2861
methodHandles.cpp                       interpreter.hpp
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2338
diff changeset
  2862
methodHandles.cpp                       javaCalls.hpp
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2338
diff changeset
  2863
methodHandles.cpp                       methodHandles.hpp
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2338
diff changeset
  2864
methodHandles.cpp                       oopFactory.hpp
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2338
diff changeset
  2865
methodHandles.cpp                       reflection.hpp
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2338
diff changeset
  2866
methodHandles.cpp                       signature.hpp
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2338
diff changeset
  2867
methodHandles.cpp                       symbolTable.hpp
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2338
diff changeset
  2868
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2338
diff changeset
  2869
methodHandles_<arch>.cpp                allocation.inline.hpp
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2338
diff changeset
  2870
methodHandles_<arch>.cpp                interpreter.hpp
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2338
diff changeset
  2871
methodHandles_<arch>.cpp                methodHandles.hpp
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2338
diff changeset
  2872
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2873
methodKlass.cpp                         collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2874
methodKlass.cpp                         constMethodKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2875
methodKlass.cpp                         gcLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2876
methodKlass.cpp                         handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2877
methodKlass.cpp                         interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2878
methodKlass.cpp                         javaClasses.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2879
methodKlass.cpp                         klassOop.hpp
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 347
diff changeset
  2880
methodKlass.cpp                         markSweep.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2881
methodKlass.cpp                         methodDataOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2882
methodKlass.cpp                         methodKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2883
methodKlass.cpp                         oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2884
methodKlass.cpp                         oop.inline2.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2885
methodKlass.cpp                         resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2886
methodKlass.cpp                         symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2887
methodKlass.cpp                         universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2888
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2889
methodKlass.hpp                         klass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2890
methodKlass.hpp                         klassOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2891
methodKlass.hpp                         methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2892
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2893
methodLiveness.cpp                      allocation.inline.hpp
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 389
diff changeset
  2894
methodLiveness.cpp                      bitMap.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2895
methodLiveness.cpp                      bytecode.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2896
methodLiveness.cpp                      bytecodes.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2897
methodLiveness.cpp                      ciMethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2898
methodLiveness.cpp                      ciMethodBlocks.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2899
methodLiveness.cpp                      ciStreams.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2900
methodLiveness.cpp                      methodLiveness.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2901
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2902
methodLiveness.hpp                      bitMap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2903
methodLiveness.hpp                      growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2904
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2905
methodOop.cpp                           arguments.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2906
methodOop.cpp                           bytecodeStream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2907
methodOop.cpp                           bytecodeTracer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2908
methodOop.cpp                           bytecodes.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2909
methodOop.cpp                           collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2910
methodOop.cpp                           debugInfoRec.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2911
methodOop.cpp                           frame.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2912
methodOop.cpp                           gcLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2913
methodOop.cpp                           gcTaskThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2914
methodOop.cpp                           generation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2915
methodOop.cpp                           handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2916
methodOop.cpp                           interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2917
methodOop.cpp                           jvmtiExport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2918
methodOop.cpp                           klassOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2919
methodOop.cpp                           methodDataOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2920
methodOop.cpp                           methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2921
methodOop.cpp                           nativeLookup.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2922
methodOop.cpp                           oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2923
methodOop.cpp                           oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2924
methodOop.cpp                           oopMapCache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2925
methodOop.cpp                           relocator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2926
methodOop.cpp                           sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2927
methodOop.cpp                           signature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2928
methodOop.cpp                           symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2929
methodOop.cpp                           systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2930
methodOop.cpp                           xmlstream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2931
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2932
methodOop.hpp                           accessFlags.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2933
methodOop.hpp                           compressedStream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2934
methodOop.hpp                           constMethodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2935
methodOop.hpp                           constantPoolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2936
methodOop.hpp                           growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2937
methodOop.hpp                           instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2938
methodOop.hpp                           invocationCounter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2939
methodOop.hpp                           oop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2940
methodOop.hpp                           oopMap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2941
methodOop.hpp                           typeArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2942
methodOop.hpp                           vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2943
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2944
modRefBarrierSet.hpp                    barrierSet.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2945
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2946
monitorChunk.cpp                        allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2947
monitorChunk.cpp                        monitorChunk.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2948
monitorChunk.cpp                        oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2949
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2950
monitorChunk.hpp                        synchronizer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2951
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2952
mutex.cpp                               events.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2953
mutex.cpp                               mutex.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2954
mutex.cpp                               mutex_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2955
mutex.cpp                               osThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2956
mutex.cpp                               thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2957
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2958
mutex.hpp                               allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2959
mutex.hpp                               histogram.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2960
mutex.hpp                               os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2961
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2962
mutexLocker.cpp                         mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2963
mutexLocker.cpp                         safepoint.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2964
mutexLocker.cpp                         threadLocalStorage.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2965
mutexLocker.cpp                         thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2966
mutexLocker.cpp                         vmThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2967
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2968
mutexLocker.hpp                         allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2969
mutexLocker.hpp                         mutex.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2970
mutexLocker.hpp                         os_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2971
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2972
mutex_<os_family>.cpp                   events.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2973
mutex_<os_family>.cpp                   interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2974
mutex_<os_family>.cpp                   mutex.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2975
mutex_<os_family>.cpp                   mutex_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2976
mutex_<os_family>.cpp                   thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2977
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2978
mutex_<os_family>.inline.hpp            interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2979
mutex_<os_family>.inline.hpp            os_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2980
mutex_<os_family>.inline.hpp            thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2981
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
  2982
nativeInst_<arch>.cpp                   assembler_<arch>.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2983
nativeInst_<arch>.cpp                   handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2984
nativeInst_<arch>.cpp                   nativeInst_<arch>.hpp
3262
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 2570
diff changeset
  2985
nativeInst_<arch>.cpp                   oop.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2986
nativeInst_<arch>.cpp                   ostream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2987
nativeInst_<arch>.cpp                   resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2988
nativeInst_<arch>.cpp                   sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2989
nativeInst_<arch>.cpp                   stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2990
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2991
nativeInst_<arch>.hpp                   allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2992
nativeInst_<arch>.hpp                   assembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2993
nativeInst_<arch>.hpp                   icache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2994
nativeInst_<arch>.hpp                   os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2995
nativeInst_<arch>.hpp                   top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2996
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2997
nativeLookup.cpp                        arguments.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2998
nativeLookup.cpp                        handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  2999
nativeLookup.cpp                        hpi.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3000
nativeLookup.cpp                        instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3001
nativeLookup.cpp                        javaCalls.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3002
nativeLookup.cpp                        javaClasses.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3003
nativeLookup.cpp                        jvm_misc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3004
nativeLookup.cpp                        methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3005
nativeLookup.cpp                        nativeLookup.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3006
nativeLookup.cpp                        oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3007
nativeLookup.cpp                        oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3008
nativeLookup.cpp                        os_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3009
nativeLookup.cpp                        resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3010
nativeLookup.cpp                        sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3011
nativeLookup.cpp                        signature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3012
nativeLookup.cpp                        symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3013
nativeLookup.cpp                        systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3014
nativeLookup.cpp                        universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3015
nativeLookup.cpp                        vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3016
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3017
nativeLookup.hpp                        handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3018
nativeLookup.hpp                        top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3019
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3020
nmethod.cpp                             abstractCompiler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3021
nmethod.cpp                             bytecode.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3022
nmethod.cpp                             codeCache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3023
nmethod.cpp                             compileLog.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3024
nmethod.cpp                             compiledIC.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3025
nmethod.cpp                             compilerOracle.hpp
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 225
diff changeset
  3026
nmethod.cpp                             disassembler.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3027
nmethod.cpp                             dtrace.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3028
nmethod.cpp                             events.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3029
nmethod.cpp                             jvmtiRedefineClassesTrace.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3030
nmethod.cpp                             methodDataOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3031
nmethod.cpp                             nmethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3032
nmethod.cpp                             scopeDesc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3033
nmethod.cpp                             sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3034
nmethod.cpp                             sweeper.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3035
nmethod.cpp                             vtune.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3036
nmethod.cpp                             xmlstream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3037
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3038
nmethod.hpp                             codeBlob.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3039
nmethod.hpp                             pcDesc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3040
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 389
diff changeset
  3041
numberSeq.cpp				debug.hpp
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 389
diff changeset
  3042
numberSeq.cpp				numberSeq.hpp
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 389
diff changeset
  3043
numberSeq.cpp				globalDefinitions.hpp
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 389
diff changeset
  3044
numberSeq.cpp				allocation.inline.hpp
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 389
diff changeset
  3045
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3046
objArrayKlass.cpp                       collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3047
objArrayKlass.cpp                       copy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3048
objArrayKlass.cpp                       genOopClosures.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3049
objArrayKlass.cpp                       handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3050
objArrayKlass.cpp                       instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3051
objArrayKlass.cpp                       mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3052
objArrayKlass.cpp                       objArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3053
objArrayKlass.cpp                       objArrayKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3054
objArrayKlass.cpp                       objArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3055
objArrayKlass.cpp                       oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3056
objArrayKlass.cpp                       oop.inline2.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3057
objArrayKlass.cpp                       resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3058
objArrayKlass.cpp                       symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3059
objArrayKlass.cpp                       systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3060
objArrayKlass.cpp                       universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3061
objArrayKlass.cpp                       vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3062
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 347
diff changeset
  3063
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3064
objArrayKlass.hpp                       arrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3065
objArrayKlass.hpp                       instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3066
objArrayKlass.hpp                       specialized_oop_closures.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3067
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3068
objArrayKlassKlass.cpp                  collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3069
objArrayKlassKlass.cpp                  instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3070
objArrayKlassKlass.cpp                  javaClasses.hpp
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 347
diff changeset
  3071
objArrayKlassKlass.cpp                  markSweep.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3072
objArrayKlassKlass.cpp                  objArrayKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3073
objArrayKlassKlass.cpp                  oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3074
objArrayKlassKlass.cpp                  oop.inline2.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3075
objArrayKlassKlass.cpp                  systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3076
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3077
objArrayKlassKlass.hpp                  arrayKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3078
objArrayKlassKlass.hpp                  objArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3079
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 347
diff changeset
  3080
objArrayOop.cpp                         objArrayKlass.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3081
objArrayOop.cpp                         objArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3082
objArrayOop.cpp                         oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3083
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3084
objArrayOop.hpp                         arrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3085
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3086
objectMonitor.hpp                       os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3087
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3088
objectMonitor_<os_family>.cpp           dtrace.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3089
objectMonitor_<os_family>.cpp           interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3090
objectMonitor_<os_family>.cpp           objectMonitor.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3091
objectMonitor_<os_family>.cpp           objectMonitor.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3092
objectMonitor_<os_family>.cpp           oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3093
objectMonitor_<os_family>.cpp           osThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3094
objectMonitor_<os_family>.cpp           os_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3095
objectMonitor_<os_family>.cpp           threadService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3096
objectMonitor_<os_family>.cpp           thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3097
objectMonitor_<os_family>.cpp           vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3098
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3099
objectMonitor_<os_family>.hpp           generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3100
objectMonitor_<os_family>.hpp           os_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3101
objectMonitor_<os_family>.hpp           thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3102
objectMonitor_<os_family>.hpp           top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3103
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3104
objectMonitor_<os_family>.inline.hpp    generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3105
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3106
oop.cpp                                 copy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3107
oop.cpp                                 handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3108
oop.cpp                                 javaClasses.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3109
oop.cpp                                 oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3110
oop.cpp                                 thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3111
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3112
oop.hpp                                 iterator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3113
oop.hpp                                 memRegion.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3114
oop.hpp                                 specialized_oop_closures.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3115
oop.hpp                                 top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3116
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3117
oop.inline.hpp                          ageTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3118
oop.inline.hpp                          arrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3119
oop.inline.hpp                          arrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3120
oop.inline.hpp                          atomic.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3121
oop.inline.hpp                          barrierSet.inline.hpp
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2338
diff changeset
  3122
oop.inline.hpp                          bytes_<arch>.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3123
oop.inline.hpp                          cardTableModRefBS.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3124
oop.inline.hpp                          collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3125
oop.inline.hpp                          compactingPermGenGen.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3126
oop.inline.hpp                          genCollectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3127
oop.inline.hpp                          generation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3128
oop.inline.hpp                          klass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3129
oop.inline.hpp                          klassOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3130
oop.inline.hpp                          markOop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3131
oop.inline.hpp                          markSweep.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3132
oop.inline.hpp                          oop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3133
oop.inline.hpp                          os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3134
oop.inline.hpp                          permGen.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3135
oop.inline.hpp                          specialized_oop_closures.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3136
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3137
oop.inline2.hpp                         collectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3138
oop.inline2.hpp                         generation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3139
oop.inline2.hpp                         oop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3140
oop.inline2.hpp                         permGen.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3141
oop.inline2.hpp                         universe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3142
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3143
oopFactory.cpp                          collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3144
oopFactory.cpp                          compiledICHolderKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3145
oopFactory.cpp                          constMethodKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3146
oopFactory.cpp                          constantPoolKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3147
oopFactory.cpp                          cpCacheKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3148
oopFactory.cpp                          instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3149
oopFactory.cpp                          instanceKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3150
oopFactory.cpp                          instanceOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3151
oopFactory.cpp                          javaClasses.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3152
oopFactory.cpp                          klassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3153
oopFactory.cpp                          klassOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3154
oopFactory.cpp                          methodDataKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3155
oopFactory.cpp                          methodKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3156
oopFactory.cpp                          objArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3157
oopFactory.cpp                          oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3158
oopFactory.cpp                          oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3159
oopFactory.cpp                          resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3160
oopFactory.cpp                          symbolTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3161
oopFactory.cpp                          systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3162
oopFactory.cpp                          universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3163
oopFactory.cpp                          vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3164
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3165
oopFactory.hpp                          growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3166
oopFactory.hpp                          klassOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3167
oopFactory.hpp                          objArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3168
oopFactory.hpp                          oop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3169
oopFactory.hpp                          symbolTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3170
oopFactory.hpp                          systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3171
oopFactory.hpp                          typeArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3172
oopFactory.hpp                          universe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3173
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3174
oopMap.cpp                              allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3175
oopMap.cpp                              codeBlob.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3176
oopMap.cpp                              codeCache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3177
oopMap.cpp                              collectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3178
oopMap.cpp                              frame.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3179
oopMap.cpp                              nmethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3180
oopMap.cpp                              oopMap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3181
oopMap.cpp                              resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3182
oopMap.cpp                              scopeDesc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3183
oopMap.cpp                              signature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3184
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3185
oopMap.hpp                              allocation.hpp
386
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 225
diff changeset
  3186
oopMapCache.cpp                         jvmtiRedefineClassesTrace.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3187
oopMap.hpp                              compressedStream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3188
oopMap.hpp                              growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3189
oopMap.hpp                              vmreg.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3190
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3191
oopMapCache.cpp                         allocation.inline.hpp
386
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 225
diff changeset
  3192
oopMapCache.cpp                         jvmtiRedefineClassesTrace.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3193
oopMapCache.cpp                         handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3194
oopMapCache.cpp                         oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3195
oopMapCache.cpp                         oopMapCache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3196
oopMapCache.cpp                         resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3197
oopMapCache.cpp                         signature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3198
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3199
oopMapCache.hpp                         generateOopMap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3200
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3201
oopRecorder.cpp                         allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3202
oopRecorder.cpp                         oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3203
oopRecorder.cpp                         oopRecorder.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3204
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3205
oopRecorder.hpp                         growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3206
oopRecorder.hpp                         handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3207
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3208
oopsHierarchy.cpp                       collectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3209
oopsHierarchy.cpp                       collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3210
oopsHierarchy.cpp                       globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3211
oopsHierarchy.cpp                       oopsHierarchy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3212
oopsHierarchy.cpp                       thread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3213
oopsHierarchy.cpp                       thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3214
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3215
orderAccess.cpp                         orderAccess.hpp
2338
a8660a1b709b 6822204: volatile fences should prefer lock:addl to actual mfence instructions
never
parents: 2259
diff changeset
  3216
orderAccess.cpp                         stubRoutines.hpp
a8660a1b709b 6822204: volatile fences should prefer lock:addl to actual mfence instructions
never
parents: 2259
diff changeset
  3217
orderAccess.cpp                         thread.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3218
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3219
orderAccess.hpp                         allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3220
orderAccess.hpp                         os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3221
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3222
orderAccess_<os_arch>.inline.hpp        orderAccess.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3223
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3224
os.cpp                                  allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3225
os.cpp                                  arguments.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3226
os.cpp                                  attachListener.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3227
os.cpp                                  classLoader.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3228
os.cpp                                  defaultStream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3229
os.cpp                                  events.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3230
os.cpp                                  frame.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3231
os.cpp                                  hpi.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3232
os.cpp                                  interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3233
os.cpp                                  interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3234
os.cpp                                  java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3235
os.cpp                                  javaCalls.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3236
os.cpp                                  javaClasses.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3237
os.cpp                                  jvm.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3238
os.cpp                                  jvm_misc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3239
os.cpp                                  mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3240
os.cpp                                  oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3241
os.cpp                                  os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3242
os.cpp                                  os_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3243
os.cpp                                  stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3244
os.cpp                                  systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3245
os.cpp                                  threadService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3246
os.cpp                                  thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3247
os.cpp                                  vmGCOperations.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3248
os.cpp                                  vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3249
os.cpp                                  vtableStubs.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3250
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3251
os.hpp                                  atomic.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3252
os.hpp                                  extendedPC.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3253
os.hpp                                  handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3254
os.hpp                                  jvmti.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3255
os.hpp                                  top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3256
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3257
os_<os_arch>.cpp                        allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3258
os_<os_arch>.cpp                        arguments.hpp
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
  3259
os_<os_arch>.cpp                        assembler_<arch>.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3260
os_<os_arch>.cpp                        classLoader.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3261
os_<os_arch>.cpp                        events.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3262
os_<os_arch>.cpp                        extendedPC.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3263
os_<os_arch>.cpp                        frame.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3264
os_<os_arch>.cpp                        hpi.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3265
os_<os_arch>.cpp                        icBuffer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3266
os_<os_arch>.cpp                        interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3267
os_<os_arch>.cpp                        interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3268
os_<os_arch>.cpp                        java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3269
os_<os_arch>.cpp                        javaCalls.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3270
os_<os_arch>.cpp                        jniFastGetField.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3271
os_<os_arch>.cpp                        jvm.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3272
os_<os_arch>.cpp                        jvm_<os_family>.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3273
os_<os_arch>.cpp                        jvm_misc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3274
os_<os_arch>.cpp                        mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3275
os_<os_arch>.cpp                        mutex_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3276
os_<os_arch>.cpp                        nativeInst_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3277
os_<os_arch>.cpp                        no_precompiled_headers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3278
os_<os_arch>.cpp                        osThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3279
os_<os_arch>.cpp                        os_share_<os_family>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3280
os_<os_arch>.cpp                        sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3281
os_<os_arch>.cpp                        stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3282
os_<os_arch>.cpp                        systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3283
os_<os_arch>.cpp                        thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3284
os_<os_arch>.cpp                        timer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3285
os_<os_arch>.cpp                        vmError.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3286
os_<os_arch>.cpp                        vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3287
os_<os_arch>.cpp                        vtableStubs.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3288
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3289
os_<os_arch>.hpp                        generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3290
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3291
os_<os_family>.cpp                      allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3292
os_<os_family>.cpp                      arguments.hpp
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
  3293
os_<os_family>.cpp                      assembler_<arch>.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3294
os_<os_family>.cpp                      attachListener.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3295
os_<os_family>.cpp                      classLoader.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3296
os_<os_family>.cpp                      compileBroker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3297
os_<os_family>.cpp                      defaultStream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3298
os_<os_family>.cpp                      events.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3299
os_<os_family>.cpp                      extendedPC.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3300
os_<os_family>.cpp                      filemap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3301
os_<os_family>.cpp                      globals.hpp
388
bcc631c5bbec 6684395: Port NUMA-aware allocator to linux
iveresov
parents: 387
diff changeset
  3302
os_<os_family>.cpp                      growableArray.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3303
os_<os_family>.cpp                      hpi.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3304
os_<os_family>.cpp                      icBuffer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3305
os_<os_family>.cpp                      interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3306
os_<os_family>.cpp                      interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3307
os_<os_family>.cpp                      java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3308
os_<os_family>.cpp                      javaCalls.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3309
os_<os_family>.cpp                      jniFastGetField.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3310
os_<os_family>.cpp                      jvm.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3311
os_<os_family>.cpp                      jvm_<os_family>.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3312
os_<os_family>.cpp                      jvm_misc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3313
os_<os_family>.cpp                      mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3314
os_<os_family>.cpp                      mutex_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3315
os_<os_family>.cpp                      nativeInst_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3316
os_<os_family>.cpp                      no_precompiled_headers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3317
os_<os_family>.cpp                      objectMonitor.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3318
os_<os_family>.cpp                      objectMonitor.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3319
os_<os_family>.cpp                      oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3320
os_<os_family>.cpp                      osThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3321
os_<os_family>.cpp                      os_share_<os_family>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3322
os_<os_family>.cpp                      perfMemory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3323
os_<os_family>.cpp                      runtimeService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3324
os_<os_family>.cpp                      sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3325
os_<os_family>.cpp                      statSampler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3326
os_<os_family>.cpp                      stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3327
os_<os_family>.cpp                      systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3328
os_<os_family>.cpp                      threadCritical.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3329
os_<os_family>.cpp                      thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3330
os_<os_family>.cpp                      timer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3331
os_<os_family>.cpp                      vmError.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3332
os_<os_family>.cpp                      vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3333
os_<os_family>.cpp                      vtableStubs.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3334
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3335
os_<os_family>.hpp                      generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3336
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3337
os_<os_family>.inline.hpp               atomic.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3338
os_<os_family>.inline.hpp               atomic_<os_arch>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3339
os_<os_family>.inline.hpp               orderAccess_<os_arch>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3340
os_<os_family>.inline.hpp               os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3341
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3342
osThread.cpp                            oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3343
osThread.cpp                            osThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3344
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3345
osThread.hpp                            frame.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3346
osThread.hpp                            handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3347
osThread.hpp                            hpi.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3348
osThread.hpp                            javaFrameAnchor.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3349
osThread.hpp                            objectMonitor.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3350
osThread.hpp                            top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3351
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
  3352
osThread_<os_family>.cpp                assembler_<arch>.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3353
osThread_<os_family>.cpp                atomic.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3354
osThread_<os_family>.cpp                handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3355
osThread_<os_family>.cpp                mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3356
osThread_<os_family>.cpp                no_precompiled_headers
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3357
osThread_<os_family>.cpp                os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3358
osThread_<os_family>.cpp                osThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3359
osThread_<os_family>.cpp                safepoint.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3360
osThread_<os_family>.cpp                vmThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3361
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3362
osThread_<os_family>.hpp                generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3363
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3364
ostream.cpp                             arguments.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3365
ostream.cpp                             compileLog.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3366
ostream.cpp                             defaultStream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3367
ostream.cpp                             oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3368
ostream.cpp                             os_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3369
ostream.cpp                             hpi.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3370
ostream.cpp                             hpi_<os_family>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3371
ostream.cpp                             ostream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3372
ostream.cpp                             top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3373
ostream.cpp                             xmlstream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3374
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3375
ostream.hpp                             allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3376
ostream.hpp                             timer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3377
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3378
pcDesc.cpp                              debugInfoRec.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3379
pcDesc.cpp                              nmethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3380
pcDesc.cpp                              pcDesc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3381
pcDesc.cpp                              resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3382
pcDesc.cpp                              scopeDesc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3383
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3384
pcDesc.hpp                              allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3385
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3386
perf.cpp                                allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3387
perf.cpp                                interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3388
perf.cpp                                jni.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3389
perf.cpp                                jvm.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3390
perf.cpp                                oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3391
perf.cpp                                perfData.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3392
perf.cpp                                perfMemory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3393
perf.cpp                                resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3394
perf.cpp                                vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3395
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3396
perfData.cpp                            exceptions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3397
perfData.cpp                            globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3398
perfData.cpp                            handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3399
perfData.cpp                            java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3400
perfData.cpp                            mutex.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3401
perfData.cpp                            mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3402
perfData.cpp                            oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3403
perfData.cpp                            os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3404
perfData.cpp                            perfData.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3405
perfData.cpp                            vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3406
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3407
perfData.hpp                            allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3408
perfData.hpp                            growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3409
perfData.hpp                            perfMemory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3410
perfData.hpp                            timer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3411
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3412
perfMemory.cpp                          allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3413
perfMemory.cpp                          arguments.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3414
perfMemory.cpp                          globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3415
perfMemory.cpp                          java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3416
perfMemory.cpp                          mutex.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3417
perfMemory.cpp                          mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3418
perfMemory.cpp                          os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3419
perfMemory.cpp                          perfData.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3420
perfMemory.cpp                          perfMemory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3421
perfMemory.cpp                          statSampler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3422
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3423
perfMemory.hpp                          exceptions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3424
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3425
perfMemory_<os_family>.cpp              allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3426
perfMemory_<os_family>.cpp              exceptions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3427
perfMemory_<os_family>.cpp              handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3428
perfMemory_<os_family>.cpp              oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3429
perfMemory_<os_family>.cpp              os_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3430
perfMemory_<os_family>.cpp              perfMemory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3431
perfMemory_<os_family>.cpp              resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3432
perfMemory_<os_family>.cpp              vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3433
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3434
permGen.cpp                             blockOffsetTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3435
permGen.cpp                             cSpaceCounters.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3436
permGen.cpp                             collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3437
permGen.cpp                             compactPermGen.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3438
permGen.cpp                             genCollectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3439
permGen.cpp                             generation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3440
permGen.cpp                             java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3441
permGen.cpp                             oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3442
permGen.cpp                             permGen.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3443
permGen.cpp                             universe.hpp
386
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 225
diff changeset
  3444
permGen.cpp                             gcLocker.hpp
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 225
diff changeset
  3445
permGen.cpp                             gcLocker.inline.hpp
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 225
diff changeset
  3446
permGen.cpp                             vmGCOperations.hpp
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 225
diff changeset
  3447
permGen.cpp                             vmThread.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3448
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3449
permGen.hpp                             gcCause.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3450
permGen.hpp                             generation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3451
permGen.hpp                             handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3452
permGen.hpp                             iterator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3453
permGen.hpp                             virtualspace.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3454
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3455
placeholders.cpp                        fieldType.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3456
placeholders.cpp                        hashtable.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3457
placeholders.cpp                        oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3458
placeholders.cpp                        placeholders.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3459
placeholders.cpp                        systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3460
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3461
placeholders.hpp                        hashtable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3462
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3463
prefetch.hpp                            allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3464
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3465
prefetch_<os_arch>.inline.hpp           prefetch.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3466
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3467
preserveException.cpp                   handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3468
preserveException.cpp                   preserveException.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3469
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3470
preserveException.hpp                   handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3471
preserveException.hpp                   thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3472
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3473
privilegedStack.cpp                     allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3474
privilegedStack.cpp                     instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3475
privilegedStack.cpp                     methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3476
privilegedStack.cpp                     oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3477
privilegedStack.cpp                     privilegedStack.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3478
privilegedStack.cpp                     vframe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3479
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3480
privilegedStack.hpp                     allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3481
privilegedStack.hpp                     growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3482
privilegedStack.hpp                     oopsHierarchy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3483
privilegedStack.hpp                     vframe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3484
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3485
referencePolicy.cpp                     arguments.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3486
referencePolicy.cpp                     globals.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3487
referencePolicy.cpp                     javaClasses.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3488
referencePolicy.cpp                     referencePolicy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3489
referencePolicy.cpp                     universe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3490
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3491
referenceProcessor.cpp                  collectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3492
referenceProcessor.cpp                  collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3493
referenceProcessor.cpp                  java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3494
referenceProcessor.cpp                  javaClasses.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3495
referenceProcessor.cpp                  jniHandles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3496
referenceProcessor.cpp                  oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3497
referenceProcessor.cpp                  referencePolicy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3498
referenceProcessor.cpp                  referenceProcessor.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3499
referenceProcessor.cpp                  systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3500
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3501
referenceProcessor.hpp                  instanceRefKlass.hpp
1606
dcf9714addbe 6684579: SoftReference processing can be made more efficient
ysr
parents: 1394
diff changeset
  3502
referenceProcessor.hpp                  referencePolicy.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3503
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3504
reflection.cpp                          arguments.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3505
reflection.cpp                          handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3506
reflection.cpp                          instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3507
reflection.cpp                          javaCalls.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3508
reflection.cpp                          javaClasses.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3509
reflection.cpp                          jvm.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3510
reflection.cpp                          linkResolver.hpp
4581
e89fbd1bcb3d 6914206: change way of permission checking for generated MethodHandle adapters
twisti
parents: 4567
diff changeset
  3511
reflection.cpp                          methodHandleWalk.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3512
reflection.cpp                          objArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3513
reflection.cpp                          objArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3514
reflection.cpp                          oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3515
reflection.cpp                          reflection.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3516
reflection.cpp                          reflectionUtils.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3517
reflection.cpp                          resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3518
reflection.cpp                          signature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3519
reflection.cpp                          symbolTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3520
reflection.cpp                          systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3521
reflection.cpp                          universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3522
reflection.cpp                          verifier.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3523
reflection.cpp                          vframe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3524
reflection.cpp                          vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3525
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3526
reflection.hpp                          accessFlags.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3527
reflection.hpp                          fieldDescriptor.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3528
reflection.hpp                          growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3529
reflection.hpp                          oop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3530
reflection.hpp                          reflectionCompat.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3531
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3532
reflectionUtils.cpp                     javaClasses.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3533
reflectionUtils.cpp                     reflectionUtils.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3534
reflectionUtils.cpp                     universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3535
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3536
reflectionUtils.hpp                     accessFlags.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3537
reflectionUtils.hpp                     allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3538
reflectionUtils.hpp                     globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3539
reflectionUtils.hpp                     handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3540
reflectionUtils.hpp                     instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3541
reflectionUtils.hpp                     objArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3542
reflectionUtils.hpp                     oopsHierarchy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3543
reflectionUtils.hpp                     reflection.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3544
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3545
register.cpp                            register.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3546
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3547
register.hpp                            top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3548
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3549
register_<arch>.cpp                     register_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3550
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3551
register_<arch>.hpp                     register.hpp
2111
dab8a43dd738 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 1904
diff changeset
  3552
register_<arch>.hpp                     vm_version_<arch>.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3553
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3554
registerMap.hpp                         globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3555
registerMap.hpp                         register_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3556
registerMap.hpp                         vmreg.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3557
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3558
registerMap_<arch>.hpp                  generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3559
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3560
register_definitions_<arch>.cpp         assembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3561
register_definitions_<arch>.cpp         interp_masm_<arch_model>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3562
register_definitions_<arch>.cpp         register.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3563
register_definitions_<arch>.cpp         register_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3564
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
  3565
relocInfo.cpp                           assembler_<arch>.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3566
relocInfo.cpp                           compiledIC.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3567
relocInfo.cpp                           copy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3568
relocInfo.cpp                           nativeInst_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3569
relocInfo.cpp                           nmethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3570
relocInfo.cpp                           relocInfo.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3571
relocInfo.cpp                           resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3572
relocInfo.cpp                           stubCodeGenerator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3573
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3574
relocInfo.hpp                           allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3575
relocInfo.hpp                           top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3576
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3577
relocInfo_<arch>.cpp                    assembler.inline.hpp
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
  3578
relocInfo_<arch>.cpp                    assembler_<arch>.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3579
relocInfo_<arch>.cpp                    nativeInst_<arch>.hpp
590
2954744d7bba 6703890: Compressed Oops: add LoadNKlass node to generate narrow oops (32-bits) compare instructions
kvn
parents: 389
diff changeset
  3580
relocInfo_<arch>.cpp                    oop.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3581
relocInfo_<arch>.cpp                    relocInfo.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3582
relocInfo_<arch>.cpp                    safepoint.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3583
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3584
relocInfo_<arch>.hpp                    generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3585
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3586
relocator.cpp                           bytecodes.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3587
relocator.cpp                           handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3588
relocator.cpp                           oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3589
relocator.cpp                           relocator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3590
relocator.cpp                           universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3591
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3592
relocator.hpp                           bytecodes.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3593
relocator.hpp                           bytes_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3594
relocator.hpp                           methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3595
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3596
resolutionErrors.cpp                    handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3597
resolutionErrors.cpp                    hashtable.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3598
resolutionErrors.cpp                    oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3599
resolutionErrors.cpp                    resolutionErrors.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3600
resolutionErrors.cpp                    resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3601
resolutionErrors.cpp                    safepoint.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3602
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3603
resolutionErrors.hpp                    constantPoolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3604
resolutionErrors.hpp                    hashtable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3605
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3606
resourceArea.cpp                        allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3607
resourceArea.cpp                        mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3608
resourceArea.cpp                        resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3609
resourceArea.cpp                        thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3610
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3611
resourceArea.hpp                        allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3612
resourceArea.hpp                        thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3613
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3614
// restore is jck optional, put cpp deps in includeDB_features
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3615
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3616
rewriter.cpp                            bytecodes.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3617
rewriter.cpp                            gcLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3618
rewriter.cpp                            generateOopMap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3619
rewriter.cpp                            interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3620
rewriter.cpp                            objArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3621
rewriter.cpp                            oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3622
rewriter.cpp                            oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3623
rewriter.cpp                            resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3624
rewriter.cpp                            rewriter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3625
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3626
rewriter.hpp                            allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3627
rewriter.hpp                            growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3628
rewriter.hpp                            handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3629
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3630
rframe.cpp                              frame.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3631
rframe.cpp                              interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3632
rframe.cpp                              oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3633
rframe.cpp                              rframe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3634
rframe.cpp                              symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3635
rframe.cpp                              vframe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3636
rframe.cpp                              vframe_hp.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3637
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3638
rframe.hpp                              allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3639
rframe.hpp                              frame.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3640
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3641
runtimeService.cpp                      attachListener.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3642
runtimeService.cpp                      classLoader.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3643
runtimeService.cpp                      dtrace.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3644
runtimeService.cpp                      exceptions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3645
runtimeService.cpp                      management.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3646
runtimeService.cpp                      runtimeService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3647
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3648
runtimeService.hpp                      perfData.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3649
runtimeService.hpp                      timer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3650
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3651
safepoint.cpp                           codeCache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3652
safepoint.cpp                           collectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3653
safepoint.cpp                           deoptimization.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3654
safepoint.cpp                           events.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3655
safepoint.cpp                           frame.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3656
safepoint.cpp                           icBuffer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3657
safepoint.cpp                           interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3658
safepoint.cpp                           interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3659
safepoint.cpp                           mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3660
safepoint.cpp                           nativeInst_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3661
safepoint.cpp                           nmethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3662
safepoint.cpp                           oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3663
safepoint.cpp                           osThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3664
safepoint.cpp                           pcDesc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3665
safepoint.cpp                           resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3666
safepoint.cpp                           runtimeService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3667
safepoint.cpp                           safepoint.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3668
safepoint.cpp                           scopeDesc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3669
safepoint.cpp                           signature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3670
safepoint.cpp                           stubCodeGenerator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3671
safepoint.cpp                           stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3672
safepoint.cpp                           sweeper.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3673
safepoint.cpp                           symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3674
safepoint.cpp                           synchronizer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3675
safepoint.cpp                           systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3676
safepoint.cpp                           thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3677
safepoint.cpp                           universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3678
safepoint.cpp                           vmreg_<arch>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3679
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3680
safepoint.hpp                           allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3681
safepoint.hpp                           assembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3682
safepoint.hpp                           extendedPC.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3683
safepoint.hpp                           nmethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3684
safepoint.hpp                           os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3685
safepoint.hpp                           ostream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3686
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3687
scopeDesc.cpp                           debugInfoRec.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3688
scopeDesc.cpp                           handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3689
scopeDesc.cpp                           oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3690
scopeDesc.cpp                           pcDesc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3691
scopeDesc.cpp                           resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3692
scopeDesc.cpp                           scopeDesc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3693
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3694
scopeDesc.hpp                           debugInfo.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3695
scopeDesc.hpp                           growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3696
scopeDesc.hpp                           methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3697
scopeDesc.hpp                           pcDesc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3698
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3699
// serialize is jck optional, put cpp deps in includeDB_features
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3700
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3701
serviceUtil.hpp                         objArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3702
serviceUtil.hpp                         systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3703
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3704
sharedHeap.cpp                          codeCache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3705
sharedHeap.cpp                          collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3706
sharedHeap.cpp                          copy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3707
sharedHeap.cpp                          fprofiler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3708
sharedHeap.cpp                          java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3709
sharedHeap.cpp                          management.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3710
sharedHeap.cpp                          oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3711
sharedHeap.cpp                          sharedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3712
sharedHeap.cpp                          symbolTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3713
sharedHeap.cpp                          systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3714
sharedHeap.cpp                          workgroup.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3715
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3716
sharedHeap.hpp                          collectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3717
sharedHeap.hpp                          generation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3718
sharedHeap.hpp                          permGen.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3719
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3720
sharedRuntime.cpp                       abstractCompiler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3721
sharedRuntime.cpp                       arguments.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3722
sharedRuntime.cpp                       biasedLocking.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3723
sharedRuntime.cpp                       compiledIC.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3724
sharedRuntime.cpp                       compilerOracle.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3725
sharedRuntime.cpp                       copy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3726
sharedRuntime.cpp                       dtrace.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3727
sharedRuntime.cpp                       events.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3728
sharedRuntime.cpp                       forte.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3729
sharedRuntime.cpp                       gcLocker.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3730
sharedRuntime.cpp                       handles.inline.hpp
4735
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4584
diff changeset
  3731
sharedRuntime.cpp                       hashtable.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3732
sharedRuntime.cpp                       init.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3733
sharedRuntime.cpp                       interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3734
sharedRuntime.cpp                       interpreterRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3735
sharedRuntime.cpp                       interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3736
sharedRuntime.cpp                       javaCalls.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3737
sharedRuntime.cpp                       jvmtiExport.hpp
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2338
diff changeset
  3738
sharedRuntime.cpp                       methodHandles.hpp
2136
c55428da3cec 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 1620
diff changeset
  3739
sharedRuntime.cpp                       jvmtiRedefineClassesTrace.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3740
sharedRuntime.cpp                       nativeInst_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3741
sharedRuntime.cpp                       nativeLookup.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3742
sharedRuntime.cpp                       oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3743
sharedRuntime.cpp                       scopeDesc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3744
sharedRuntime.cpp                       sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3745
sharedRuntime.cpp                       stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3746
sharedRuntime.cpp                       systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3747
sharedRuntime.cpp                       universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3748
sharedRuntime.cpp                       vframe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3749
sharedRuntime.cpp                       vframeArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3750
sharedRuntime.cpp                       vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3751
sharedRuntime.cpp                       vmreg_<arch>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3752
sharedRuntime.cpp                       vtableStubs.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3753
sharedRuntime.cpp                       vtune.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3754
sharedRuntime.cpp                       xmlstream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3755
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3756
sharedRuntime.hpp                       allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3757
sharedRuntime.hpp                       bytecodeHistogram.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3758
sharedRuntime.hpp                       bytecodeTracer.hpp
4735
3d4e4ec0df67 6911204: generated adapters with large signatures can fill up the code cache
never
parents: 4584
diff changeset
  3759
sharedRuntime.hpp                       hashtable.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3760
sharedRuntime.hpp                       linkResolver.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3761
sharedRuntime.hpp                       resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3762
sharedRuntime.hpp                       threadLocalStorage.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3763
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3764
sharedRuntime_<arch_model>.cpp          assembler.hpp
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
  3765
sharedRuntime_<arch_model>.cpp          assembler_<arch>.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3766
sharedRuntime_<arch_model>.cpp          compiledICHolderOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3767
sharedRuntime_<arch_model>.cpp          debugInfoRec.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3768
sharedRuntime_<arch_model>.cpp          icBuffer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3769
sharedRuntime_<arch_model>.cpp          interpreter.hpp
2136
c55428da3cec 6805864: 4/3 Problem with jvmti->redefineClasses: some methods don't get redefined
dcubed
parents: 1620
diff changeset
  3770
sharedRuntime_<arch_model>.cpp          jvmtiRedefineClassesTrace.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3771
sharedRuntime_<arch_model>.cpp          sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3772
sharedRuntime_<arch_model>.cpp          vframeArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3773
sharedRuntime_<arch_model>.cpp          vmreg_<arch>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3774
sharedRuntime_<arch_model>.cpp          vtableStubs.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3775
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3776
sharedRuntimeTrans.cpp                  interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3777
sharedRuntimeTrans.cpp                  jni.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3778
sharedRuntimeTrans.cpp                  sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3779
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3780
sharedRuntimeTrig.cpp                   interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3781
sharedRuntimeTrig.cpp                   jni.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3782
sharedRuntimeTrig.cpp                   sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3783
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3784
signature.cpp                           instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3785
signature.cpp                           oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3786
signature.cpp                           oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3787
signature.cpp                           signature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3788
signature.cpp                           symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3789
signature.cpp                           symbolTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3790
signature.cpp                           systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3791
signature.cpp                           typeArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3792
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3793
signature.hpp                           allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3794
signature.hpp                           methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3795
signature.hpp                           top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3796
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3797
sizes.cpp                               sizes.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3798
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3799
sizes.hpp                               allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3800
sizes.hpp                               globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3801
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3802
space.cpp                               blockOffsetTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3803
space.cpp                               copy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3804
space.cpp                               defNewGeneration.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3805
space.cpp                               genCollectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3806
space.cpp                               globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3807
space.cpp                               java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3808
space.cpp                               liveRange.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3809
space.cpp                               markSweep.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3810
space.cpp                               oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3811
space.cpp                               oop.inline2.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3812
space.cpp                               safepoint.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3813
space.cpp                               space.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3814
space.cpp                               space.inline.hpp
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 590
diff changeset
  3815
space.cpp                               spaceDecorator.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3816
space.cpp                               systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3817
space.cpp                               universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3818
space.cpp                               vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3819
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3820
space.hpp                               allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3821
space.hpp                               blockOffsetTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3822
space.hpp                               cardTableModRefBS.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3823
space.hpp                               iterator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3824
space.hpp                               markOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3825
space.hpp                               memRegion.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3826
space.hpp                               mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3827
space.hpp                               os_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3828
space.hpp                               prefetch.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3829
space.hpp                               watermark.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3830
space.hpp                               workgroup.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3831
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3832
space.inline.hpp                        blockOffsetTable.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3833
space.inline.hpp                        collectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3834
space.inline.hpp                        safepoint.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3835
space.inline.hpp                        space.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3836
space.inline.hpp                        universe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3837
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 590
diff changeset
  3838
spaceDecorator.hpp                      globalDefinitions.hpp
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 590
diff changeset
  3839
spaceDecorator.hpp                      mutableSpace.hpp
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 590
diff changeset
  3840
spaceDecorator.hpp                      space.hpp
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 590
diff changeset
  3841
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 590
diff changeset
  3842
spaceDecorator.cpp                      copy.hpp
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 590
diff changeset
  3843
spaceDecorator.cpp                      spaceDecorator.hpp
1904
7aada8102b30 6793825: Missing include dependancies for GCC without predefined headers
coleenp
parents: 1620
diff changeset
  3844
spaceDecorator.cpp                      space.inline.hpp
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 590
diff changeset
  3845
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3846
specialized_oop_closures.cpp            ostream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3847
specialized_oop_closures.cpp            specialized_oop_closures.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3848
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 389
diff changeset
  3849
specialized_oop_closures.hpp            atomic.hpp
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 389
diff changeset
  3850
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3851
stackMapFrame.cpp                       globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3852
stackMapFrame.cpp                       handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3853
stackMapFrame.cpp                       oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3854
stackMapFrame.cpp                       resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3855
stackMapFrame.cpp                       stackMapFrame.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3856
stackMapFrame.cpp                       symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3857
stackMapFrame.cpp                       verifier.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3858
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3859
stackMapFrame.hpp                       exceptions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3860
stackMapFrame.hpp                       handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3861
stackMapFrame.hpp                       methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3862
stackMapFrame.hpp                       signature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3863
stackMapFrame.hpp                       verificationType.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3864
stackMapFrame.hpp                       verifier.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3865
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3866
stackMapTable.cpp                       fieldType.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3867
stackMapTable.cpp                       handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3868
stackMapTable.cpp                       oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3869
stackMapTable.cpp                       resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3870
stackMapTable.cpp                       stackMapTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3871
stackMapTable.cpp                       verifier.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3872
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3873
stackMapTable.hpp                       allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3874
stackMapTable.hpp                       bytes_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3875
stackMapTable.hpp                       constantPoolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3876
stackMapTable.hpp                       globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3877
stackMapTable.hpp                       methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3878
stackMapTable.hpp                       stackMapFrame.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3879
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3880
stackValue.cpp                          debugInfo.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3881
stackValue.cpp                          frame.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3882
stackValue.cpp                          handles.inline.hpp
3262
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 2570
diff changeset
  3883
stackValue.cpp                          oop.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3884
stackValue.cpp                          stackValue.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3885
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3886
stackValue.hpp                          handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3887
stackValue.hpp                          location.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3888
stackValue.hpp                          top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3889
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3890
stackValueCollection.cpp                jniTypes_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3891
stackValueCollection.cpp                stackValueCollection.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3892
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3893
stackValueCollection.hpp                allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3894
stackValueCollection.hpp                growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3895
stackValueCollection.hpp                stackValue.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3896
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3897
statSampler.cpp                         allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3898
statSampler.cpp                         arguments.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3899
statSampler.cpp                         java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3900
statSampler.cpp                         javaCalls.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3901
statSampler.cpp                         oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3902
statSampler.cpp                         os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3903
statSampler.cpp                         resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3904
statSampler.cpp                         statSampler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3905
statSampler.cpp                         systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3906
statSampler.cpp                         vmSymbols.hpp
2111
dab8a43dd738 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 1904
diff changeset
  3907
statSampler.cpp                         vm_version_<arch>.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3908
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3909
statSampler.hpp                         perfData.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3910
statSampler.hpp                         task.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3911
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
  3912
stubCodeGenerator.cpp                   assembler_<arch>.inline.hpp
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 225
diff changeset
  3913
stubCodeGenerator.cpp                   disassembler.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3914
stubCodeGenerator.cpp                   forte.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3915
stubCodeGenerator.cpp                   oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3916
stubCodeGenerator.cpp                   stubCodeGenerator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3917
stubCodeGenerator.cpp                   vtune.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3918
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3919
stubCodeGenerator.hpp                   allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3920
stubCodeGenerator.hpp                   assembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3921
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3922
stubGenerator_<arch_model>.cpp          assembler.hpp
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
  3923
stubGenerator_<arch_model>.cpp          assembler_<arch>.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3924
stubGenerator_<arch_model>.cpp          frame.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3925
stubGenerator_<arch_model>.cpp          handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3926
stubGenerator_<arch_model>.cpp          instanceOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3927
stubGenerator_<arch_model>.cpp          interpreter.hpp
2534
08dac9ce0cd7 6655638: dynamic languages need method handles
jrose
parents: 2338
diff changeset
  3928
stubGenerator_<arch_model>.cpp          methodHandles.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3929
stubGenerator_<arch_model>.cpp          methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3930
stubGenerator_<arch_model>.cpp          nativeInst_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3931
stubGenerator_<arch_model>.cpp          objArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3932
stubGenerator_<arch_model>.cpp          oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3933
stubGenerator_<arch_model>.cpp          sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3934
stubGenerator_<arch_model>.cpp          stubCodeGenerator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3935
stubGenerator_<arch_model>.cpp          stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3936
stubGenerator_<arch_model>.cpp          thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3937
stubGenerator_<arch_model>.cpp          top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3938
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3939
stubRoutines.cpp                        codeBuffer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3940
stubRoutines.cpp                        copy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3941
stubRoutines.cpp                        interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3942
stubRoutines.cpp                        oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3943
stubRoutines.cpp                        resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3944
stubRoutines.cpp                        sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3945
stubRoutines.cpp                        stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3946
stubRoutines.cpp                        timer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3947
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3948
stubRoutines.hpp                        allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3949
stubRoutines.hpp                        codeBlob.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3950
stubRoutines.hpp                        frame.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3951
stubRoutines.hpp                        mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3952
stubRoutines.hpp                        nativeInst_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3953
stubRoutines.hpp                        stubCodeGenerator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3954
stubRoutines.hpp                        top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3955
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3956
stubRoutines_<arch_model>.cpp           deoptimization.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3957
stubRoutines_<arch_model>.cpp           frame.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3958
stubRoutines_<arch_model>.cpp           stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3959
stubRoutines_<arch_model>.cpp           thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3960
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3961
stubRoutines_<arch_model>.hpp           generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3962
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3963
stubRoutines_<os_family>.cpp            os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3964
stubRoutines_<os_family>.cpp            stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3965
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3966
stubs.cpp                               allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3967
stubs.cpp                               codeBlob.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3968
stubs.cpp                               mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3969
stubs.cpp                               oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3970
stubs.cpp                               stubs.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3971
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3972
stubs.hpp                               allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3973
stubs.hpp                               os_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3974
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3975
sweeper.cpp                             atomic.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3976
sweeper.cpp                             codeCache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3977
sweeper.cpp                             events.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3978
sweeper.cpp                             methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3979
sweeper.cpp                             mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3980
sweeper.cpp                             nmethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3981
sweeper.cpp                             os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3982
sweeper.cpp                             resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3983
sweeper.cpp                             sweeper.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3984
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3985
symbolKlass.cpp                         gcLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3986
symbolKlass.cpp                         handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3987
symbolKlass.cpp                         oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3988
symbolKlass.cpp                         symbolKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3989
symbolKlass.cpp                         symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3990
symbolKlass.cpp                         symbolTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3991
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3992
symbolKlass.hpp                         typeArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3993
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3994
symbolOop.cpp                           oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3995
symbolOop.cpp                           symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3996
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3997
symbolOop.hpp                           typeArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3998
symbolOop.hpp                           utf8.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  3999
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4000
symbolTable.cpp                         collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4001
symbolTable.cpp                         filemap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4002
symbolTable.cpp                         gcLocker.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4003
symbolTable.cpp                         hashtable.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4004
symbolTable.cpp                         javaClasses.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4005
symbolTable.cpp                         mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4006
symbolTable.cpp                         oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4007
symbolTable.cpp                         oop.inline2.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4008
symbolTable.cpp                         symbolKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4009
symbolTable.cpp                         symbolTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4010
symbolTable.cpp                         systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4011
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4012
symbolTable.hpp                         allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4013
symbolTable.hpp                         hashtable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4014
symbolTable.hpp                         symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4015
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4016
synchronizer.cpp                        biasedLocking.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4017
synchronizer.cpp                        dtrace.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4018
synchronizer.cpp                        events.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4019
synchronizer.cpp                        handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4020
synchronizer.cpp                        interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4021
synchronizer.cpp                        markOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4022
synchronizer.cpp                        mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4023
synchronizer.cpp                        objectMonitor.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4024
synchronizer.cpp                        objectMonitor.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4025
synchronizer.cpp                        oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4026
synchronizer.cpp                        osThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4027
synchronizer.cpp                        os_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4028
synchronizer.cpp                        preserveException.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4029
synchronizer.cpp                        resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4030
synchronizer.cpp                        stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4031
synchronizer.cpp                        synchronizer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4032
synchronizer.cpp                        threadService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4033
synchronizer.cpp                        thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4034
synchronizer.cpp                        vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4035
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4036
synchronizer.hpp                        handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4037
synchronizer.hpp                        markOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4038
synchronizer.hpp                        perfData.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4039
synchronizer.hpp                        top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4040
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4041
systemDictionary.cpp                    biasedLocking.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4042
systemDictionary.cpp                    bytecodeStream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4043
systemDictionary.cpp                    classLoadingService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4044
systemDictionary.cpp                    dictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4045
systemDictionary.cpp                    fieldType.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4046
systemDictionary.cpp                    gcLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4047
systemDictionary.cpp                    handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4048
systemDictionary.cpp                    instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4049
systemDictionary.cpp                    instanceRefKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4050
systemDictionary.cpp                    interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4051
systemDictionary.cpp                    java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4052
systemDictionary.cpp                    javaCalls.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4053
systemDictionary.cpp                    javaClasses.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4054
systemDictionary.cpp                    jvmtiEnvBase.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4055
systemDictionary.cpp                    klass.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4056
systemDictionary.cpp                    loaderConstraints.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4057
systemDictionary.cpp                    methodDataOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4058
systemDictionary.cpp                    mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4059
systemDictionary.cpp                    objArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4060
systemDictionary.cpp                    oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4061
systemDictionary.cpp                    oop.inline2.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4062
systemDictionary.cpp                    oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4063
systemDictionary.cpp                    placeholders.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4064
systemDictionary.cpp                    resolutionErrors.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4065
systemDictionary.cpp                    signature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4066
systemDictionary.cpp                    systemDictionary.hpp
3575
224791e7ecab 6857194: Add hotspot perf counters to aid class loading performance measurement
mchung
parents: 2570
diff changeset
  4067
systemDictionary.cpp                    threadService.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4068
systemDictionary.cpp                    typeArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4069
systemDictionary.cpp                    vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4070
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4071
systemDictionary.hpp                    classFileStream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4072
systemDictionary.hpp                    classLoader.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4073
systemDictionary.hpp                    hashtable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4074
systemDictionary.hpp                    java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4075
systemDictionary.hpp                    objArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4076
systemDictionary.hpp                    reflectionUtils.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4077
systemDictionary.hpp                    symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4078
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4079
task.cpp                                allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4080
task.cpp                                init.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4081
task.cpp                                os_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4082
task.cpp                                task.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4083
task.cpp                                thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4084
task.cpp                                timer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4085
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4086
task.hpp                                top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4087
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4088
taskqueue.cpp                           debug.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4089
taskqueue.cpp                           os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4090
taskqueue.cpp                           taskqueue.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4091
taskqueue.cpp                           thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4092
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4093
taskqueue.hpp                           allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4094
taskqueue.hpp                           allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4095
taskqueue.hpp                           mutex.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4096
taskqueue.hpp                           orderAccess_<os_arch>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4097
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4098
templateInterpreter.cpp                 interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4099
templateInterpreter.cpp                 interpreterGenerator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4100
templateInterpreter.cpp                 interpreterRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4101
templateInterpreter.cpp                 templateTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4102
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4103
templateInterpreter.hpp                 abstractInterpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4104
templateInterpreter.hpp                 templateTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4105
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4106
templateInterpreter_<arch_model>.cpp    arguments.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4107
templateInterpreter_<arch_model>.cpp    arrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4108
templateInterpreter_<arch_model>.cpp    assembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4109
templateInterpreter_<arch_model>.cpp    bytecodeHistogram.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4110
templateInterpreter_<arch_model>.cpp    debug.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4111
templateInterpreter_<arch_model>.cpp    deoptimization.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4112
templateInterpreter_<arch_model>.cpp    frame.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4113
templateInterpreter_<arch_model>.cpp    interpreterRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4114
templateInterpreter_<arch_model>.cpp    interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4115
templateInterpreter_<arch_model>.cpp    interpreterGenerator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4116
templateInterpreter_<arch_model>.cpp    jvmtiExport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4117
templateInterpreter_<arch_model>.cpp    jvmtiThreadState.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4118
templateInterpreter_<arch_model>.cpp    methodDataOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4119
templateInterpreter_<arch_model>.cpp    methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4120
templateInterpreter_<arch_model>.cpp    oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4121
templateInterpreter_<arch_model>.cpp    sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4122
templateInterpreter_<arch_model>.cpp    stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4123
templateInterpreter_<arch_model>.cpp    synchronizer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4124
templateInterpreter_<arch_model>.cpp    templateTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4125
templateInterpreter_<arch_model>.cpp    timer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4126
templateInterpreter_<arch_model>.cpp    vframeArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4127
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4128
templateInterpreter_<arch>.hpp          generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4129
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4130
templateInterpreterGenerator_<arch>.hpp generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4131
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 389
diff changeset
  4132
templateTable.cpp                       collectedHeap.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4133
templateTable.cpp                       templateTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4134
templateTable.cpp                       timer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4135
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4136
templateTable.hpp                       allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4137
templateTable.hpp                       bytecodes.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4138
templateTable.hpp                       frame.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4139
templateTable.hpp                       interp_masm_<arch_model>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4140
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4141
templateTable_<arch_model>.cpp          interpreterRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4142
templateTable_<arch_model>.cpp          interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4143
templateTable_<arch_model>.cpp          methodDataOop.hpp
2570
ecc7862946d4 6655646: dynamic languages need dynamically linked call sites
jrose
parents: 2534
diff changeset
  4144
templateTable_<arch_model>.cpp          methodHandles.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4145
templateTable_<arch_model>.cpp          objArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4146
templateTable_<arch_model>.cpp          oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4147
templateTable_<arch_model>.cpp          sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4148
templateTable_<arch_model>.cpp          stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4149
templateTable_<arch_model>.cpp          synchronizer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4150
templateTable_<arch_model>.cpp          templateTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4151
templateTable_<arch_model>.cpp          universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4152
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4153
templateTable_<arch_model>.hpp          generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4154
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4155
tenuredGeneration.cpp                   allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4156
tenuredGeneration.cpp                   blockOffsetTable.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4157
tenuredGeneration.cpp                   collectorCounters.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4158
tenuredGeneration.cpp                   generation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4159
tenuredGeneration.cpp                   generationSpec.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4160
tenuredGeneration.cpp                   java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4161
tenuredGeneration.cpp                   oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4162
tenuredGeneration.cpp                   parGCAllocBuffer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4163
tenuredGeneration.cpp                   space.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4164
tenuredGeneration.cpp                   tenuredGeneration.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4165
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4166
tenuredGeneration.hpp                   cSpaceCounters.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4167
tenuredGeneration.hpp                   gcStats.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4168
tenuredGeneration.hpp                   generation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4169
tenuredGeneration.hpp                   generationCounters.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4170
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4171
thread.cpp                              aprofiler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4172
thread.cpp                              arguments.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4173
thread.cpp                              attachListener.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4174
thread.cpp                              biasedLocking.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4175
thread.cpp                              classLoader.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4176
thread.cpp                              compileBroker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4177
thread.cpp                              defaultStream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4178
thread.cpp                              deoptimization.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4179
thread.cpp                              dtrace.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4180
thread.cpp                              events.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4181
thread.cpp                              fprofiler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4182
thread.cpp                              frame.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4183
thread.cpp                              gcTaskManager.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4184
thread.cpp                              hpi.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4185
thread.cpp                              init.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4186
thread.cpp                              instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4187
thread.cpp                              interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4188
thread.cpp                              interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4189
thread.cpp                              interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4190
thread.cpp                              java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4191
thread.cpp                              javaCalls.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4192
thread.cpp                              javaClasses.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4193
thread.cpp                              jniPeriodicChecker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4194
thread.cpp                              jvm_misc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4195
thread.cpp                              jvmtiExport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4196
thread.cpp                              jvmtiThreadState.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4197
thread.cpp                              linkResolver.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4198
thread.cpp                              management.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4199
thread.cpp                              memprofiler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4200
thread.cpp                              mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4201
thread.cpp                              objArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4202
thread.cpp                              objectMonitor.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4203
thread.cpp                              objectMonitor.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4204
thread.cpp                              oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4205
thread.cpp                              oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4206
thread.cpp                              osThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4207
thread.cpp                              os_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4208
thread.cpp                              preserveException.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4209
thread.cpp                              privilegedStack.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4210
thread.cpp                              safepoint.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4211
thread.cpp                              scopeDesc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4212
thread.cpp                              sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4213
thread.cpp                              statSampler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4214
thread.cpp                              stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4215
thread.cpp                              symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4216
thread.cpp                              systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4217
thread.cpp                              task.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4218
thread.cpp                              threadCritical.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4219
thread.cpp                              threadLocalStorage.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4220
thread.cpp                              threadService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4221
thread.cpp                              thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4222
thread.cpp                              universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4223
thread.cpp                              vframe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4224
thread.cpp                              vframeArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4225
thread.cpp                              vframe_hp.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4226
thread.cpp                              vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4227
thread.cpp                              vmThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4228
thread.cpp                              vm_operations.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4229
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4230
thread.hpp                              allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4231
thread.hpp                              exceptions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4232
thread.hpp                              frame.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4233
thread.hpp                              javaFrameAnchor.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4234
thread.hpp                              jni.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4235
thread.hpp                              jniHandles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4236
thread.hpp                              jvmtiExport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4237
thread.hpp                              mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4238
thread.hpp                              oop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4239
thread.hpp                              os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4240
thread.hpp                              osThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4241
thread.hpp                              safepoint.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4242
thread.hpp                              stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4243
thread.hpp                              threadLocalAllocBuffer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4244
thread.hpp                              threadLocalStorage.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4245
thread.hpp                              top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4246
thread.hpp                              unhandledOops.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4247
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4248
thread_<os_arch>.cpp                    frame.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4249
thread_<os_arch>.cpp                    thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4250
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4251
thread_<os_arch>.hpp                    generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4252
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4253
thread_<os_family>.inline.hpp           atomic.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4254
thread_<os_family>.inline.hpp           atomic_<os_arch>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4255
thread_<os_family>.inline.hpp           orderAccess_<os_arch>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4256
thread_<os_family>.inline.hpp           prefetch.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4257
thread_<os_family>.inline.hpp           prefetch_<os_arch>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4258
thread_<os_family>.inline.hpp           thread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4259
thread_<os_family>.inline.hpp           threadLocalStorage.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4260
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4261
threadCritical.hpp                      allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4262
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4263
threadCritical_<os_family>.cpp          threadCritical.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4264
threadCritical_<os_family>.cpp          thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4265
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4266
threadLS_<os_arch>.cpp                  threadLocalStorage.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4267
threadLS_<os_arch>.cpp                  thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4268
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4269
threadLS_<os_arch>.hpp                  generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4270
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4271
threadLocalAllocBuffer.cpp              copy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4272
threadLocalAllocBuffer.cpp              genCollectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4273
threadLocalAllocBuffer.cpp              oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4274
threadLocalAllocBuffer.cpp              resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4275
threadLocalAllocBuffer.cpp              threadLocalAllocBuffer.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4276
threadLocalAllocBuffer.cpp              thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4277
threadLocalAllocBuffer.cpp              universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4278
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4279
threadLocalAllocBuffer.hpp              gcUtil.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4280
threadLocalAllocBuffer.hpp              perfData.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4281
threadLocalAllocBuffer.hpp              typeArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4282
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4283
threadLocalAllocBuffer.inline.hpp       atomic.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4284
threadLocalAllocBuffer.inline.hpp       collectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4285
threadLocalAllocBuffer.inline.hpp       copy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4286
threadLocalAllocBuffer.inline.hpp       threadLocalAllocBuffer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4287
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4288
threadLocalStorage.cpp                  os_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4289
threadLocalStorage.cpp                  threadLocalStorage.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4290
threadLocalStorage.cpp                  thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4291
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4292
threadLocalStorage.hpp                  gcUtil.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4293
threadLocalStorage.hpp                  os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4294
threadLocalStorage.hpp                  top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4295
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4296
threadService.cpp                       allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4297
threadService.cpp                       handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4298
threadService.cpp                       heapInspection.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4299
threadService.cpp                       init.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4300
threadService.cpp                       instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4301
threadService.cpp                       oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4302
threadService.cpp                       oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4303
threadService.cpp                       systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4304
threadService.cpp                       thread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4305
threadService.cpp                       threadService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4306
threadService.cpp                       vframe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4307
threadService.cpp                       vmThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4308
threadService.cpp                       vm_operations.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4309
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4310
threadService.hpp                       handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4311
threadService.hpp                       init.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4312
threadService.hpp                       javaClasses.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4313
threadService.hpp                       jniHandles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4314
threadService.hpp                       management.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4315
threadService.hpp                       objectMonitor.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4316
threadService.hpp                       objectMonitor.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4317
threadService.hpp                       perfData.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4318
threadService.hpp                       serviceUtil.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4319
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4320
timer.cpp                               oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4321
timer.cpp                               os_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4322
timer.cpp                               ostream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4323
timer.cpp                               timer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4324
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4325
timer.hpp                               globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4326
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4327
top.hpp                                 debug.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4328
top.hpp                                 exceptions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4329
top.hpp                                 globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4330
top.hpp                                 globals.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4331
top.hpp                                 macros.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4332
top.hpp                                 oopsHierarchy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4333
top.hpp                                 ostream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4334
top.hpp                                 sizes.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4335
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4336
typeArrayKlass.cpp                      collectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4337
typeArrayKlass.cpp                      collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4338
typeArrayKlass.cpp                      handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4339
typeArrayKlass.cpp                      instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4340
typeArrayKlass.cpp                      klassOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4341
typeArrayKlass.cpp                      objArrayKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4342
typeArrayKlass.cpp                      oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4343
typeArrayKlass.cpp                      resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4344
typeArrayKlass.cpp                      systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4345
typeArrayKlass.cpp                      typeArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4346
typeArrayKlass.cpp                      typeArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4347
typeArrayKlass.cpp                      universe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4348
typeArrayKlass.cpp                      universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4349
typeArrayKlass.cpp                      vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4350
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4351
typeArrayKlass.hpp                      arrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4352
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4353
typeArrayKlassKlass.cpp                 handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4354
typeArrayKlassKlass.cpp                 javaClasses.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4355
typeArrayKlassKlass.cpp                 oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4356
typeArrayKlassKlass.cpp                 typeArrayKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4357
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4358
typeArrayKlassKlass.hpp                 arrayKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4359
typeArrayKlassKlass.hpp                 typeArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4360
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4361
typeArrayOop.cpp                        oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4362
typeArrayOop.cpp                        typeArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4363
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4364
typeArrayOop.hpp                        arrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4365
typeArrayOop.hpp                        orderAccess_<os_arch>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4366
typeArrayOop.hpp                        typeArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4367
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4368
unhandledOops.cpp                       collectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4369
unhandledOops.cpp                       gcLocker.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4370
unhandledOops.cpp                       globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4371
unhandledOops.cpp                       oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4372
unhandledOops.cpp                       thread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4373
unhandledOops.cpp                       unhandledOops.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4374
unhandledOops.cpp                       universe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4375
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4376
universe.cpp                            aprofiler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4377
universe.cpp                            arguments.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4378
universe.cpp                            arrayKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4379
universe.cpp                            cardTableModRefBS.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4380
universe.cpp                            classLoader.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4381
universe.cpp                            codeCache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4382
universe.cpp                            collectedHeap.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4383
universe.cpp                            compiledICHolderKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4384
universe.cpp                            constMethodKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4385
universe.cpp                            constantPoolKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4386
universe.cpp                            constantPoolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4387
universe.cpp                            copy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4388
universe.cpp                            cpCacheKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4389
universe.cpp                            cpCacheOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4390
universe.cpp                            deoptimization.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4391
universe.cpp                            dependencies.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4392
universe.cpp                            events.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4393
universe.cpp                            filemap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4394
universe.cpp                            fprofiler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4395
universe.cpp                            gcLocker.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4396
universe.cpp                            genCollectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4397
universe.cpp                            genRemSet.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4398
universe.cpp                            generation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4399
universe.cpp                            handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4400
universe.cpp                            hashtable.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4401
universe.cpp                            instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4402
universe.cpp                            instanceKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4403
universe.cpp                            instanceRefKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4404
universe.cpp                            interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4405
universe.cpp                            java.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4406
universe.cpp                            javaCalls.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4407
universe.cpp                            javaClasses.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4408
universe.cpp                            jvmtiRedefineClassesTrace.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4409
universe.cpp                            klassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4410
universe.cpp                            klassOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4411
universe.cpp                            memoryService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4412
universe.cpp                            methodDataKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4413
universe.cpp                            methodKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4414
universe.cpp                            objArrayKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4415
universe.cpp                            oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4416
universe.cpp                            oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4417
universe.cpp                            permGen.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4418
universe.cpp                            preserveException.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4419
universe.cpp                            sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4420
universe.cpp                            space.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4421
universe.cpp                            symbolKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4422
universe.cpp                            symbolTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4423
universe.cpp                            synchronizer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4424
universe.cpp                            systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4425
universe.cpp                            thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4426
universe.cpp                            timer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4427
universe.cpp                            typeArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4428
universe.cpp                            typeArrayKlassKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4429
universe.cpp                            universe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4430
universe.cpp                            universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4431
universe.cpp                            vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4432
universe.cpp                            vm_operations.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4433
universe.cpp                            vtune.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4434
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4435
universe.hpp                            growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4436
universe.hpp                            handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4437
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4438
universe.inline.hpp                     universe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4439
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4440
unsafe.cpp                              allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4441
unsafe.cpp                              copy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4442
unsafe.cpp                              globals.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4443
unsafe.cpp                              interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4444
unsafe.cpp                              jni.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4445
unsafe.cpp                              jvm.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4446
unsafe.cpp                              reflection.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4447
unsafe.cpp                              reflectionCompat.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4448
unsafe.cpp                              synchronizer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4449
unsafe.cpp                              threadService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4450
unsafe.cpp                              vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4451
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4452
utf8.cpp                                utf8.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4453
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4454
utf8.hpp                                allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4455
utf8.hpp                                top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4456
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4457
verificationType.cpp                    symbolTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4458
verificationType.cpp                    verificationType.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4459
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4460
verificationType.hpp                    allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4461
verificationType.hpp                    handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4462
verificationType.hpp                    instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4463
verificationType.hpp                    oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4464
verificationType.hpp                    signature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4465
verificationType.hpp                    symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4466
verificationType.hpp                    systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4467
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4468
verifier.cpp                            bytecodeStream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4469
verifier.cpp                            bytes_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4470
verifier.cpp                            classFileStream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4471
verifier.cpp                            fieldDescriptor.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4472
verifier.cpp                            handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4473
verifier.cpp                            hpi.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4474
verifier.cpp                            instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4475
verifier.cpp                            interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4476
verifier.cpp                            javaCalls.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4477
verifier.cpp                            javaClasses.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4478
verifier.cpp                            jvm.h
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4479
verifier.cpp                            oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4480
verifier.cpp                            oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4481
verifier.cpp                            orderAccess.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4482
verifier.cpp                            os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4483
verifier.cpp                            resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4484
verifier.cpp                            stackMapTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4485
verifier.cpp                            systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4486
verifier.cpp                            typeArrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4487
verifier.cpp                            verifier.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4488
verifier.cpp                            vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4489
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4490
verifier.hpp                            exceptions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4491
verifier.hpp                            gcLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4492
verifier.hpp                            handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4493
verifier.hpp                            klass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4494
verifier.hpp                            methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4495
verifier.hpp                            verificationType.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4496
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4497
vframe.cpp                              codeCache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4498
vframe.cpp                              debugInfoRec.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4499
vframe.cpp                              handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4500
vframe.cpp                              instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4501
vframe.cpp                              interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4502
vframe.cpp                              javaClasses.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4503
vframe.cpp                              nmethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4504
vframe.cpp                              objectMonitor.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4505
vframe.cpp                              objectMonitor.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4506
vframe.cpp                              oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4507
vframe.cpp                              oopMapCache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4508
vframe.cpp                              pcDesc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4509
vframe.cpp                              resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4510
vframe.cpp                              scopeDesc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4511
vframe.cpp                              signature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4512
vframe.cpp                              stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4513
vframe.cpp                              synchronizer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4514
vframe.cpp                              systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4515
vframe.cpp                              vframe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4516
vframe.cpp                              vframeArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4517
vframe.cpp                              vframe_hp.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4518
vframe.cpp                              vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4519
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4520
vframe.hpp                              debugInfo.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4521
vframe.hpp                              debugInfoRec.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4522
vframe.hpp                              frame.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4523
vframe.hpp                              frame.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4524
vframe.hpp                              growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4525
vframe.hpp                              location.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4526
vframe.hpp                              oop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4527
vframe.hpp                              stackValue.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4528
vframe.hpp                              stackValueCollection.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4529
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4530
vframeArray.cpp                         allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4531
vframeArray.cpp                         events.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4532
vframeArray.cpp                         handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4533
vframeArray.cpp                         interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4534
vframeArray.cpp                         jvmtiThreadState.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4535
vframeArray.cpp                         methodDataOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4536
vframeArray.cpp                         monitorChunk.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4537
vframeArray.cpp                         oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4538
vframeArray.cpp                         resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4539
vframeArray.cpp                         sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4540
vframeArray.cpp                         universe.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4541
vframeArray.cpp                         vframe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4542
vframeArray.cpp                         vframeArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4543
vframeArray.cpp                         vframe_hp.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4544
vframeArray.cpp                         vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4545
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4546
vframeArray.hpp                         arrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4547
vframeArray.hpp                         deoptimization.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4548
vframeArray.hpp                         frame.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4549
vframeArray.hpp                         growableArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4550
vframeArray.hpp                         monitorChunk.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4551
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4552
vframe_hp.cpp                           codeCache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4553
vframe_hp.cpp                           debugInfoRec.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4554
vframe_hp.cpp                           handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4555
vframe_hp.cpp                           instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4556
vframe_hp.cpp                           interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4557
vframe_hp.cpp                           monitorChunk.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4558
vframe_hp.cpp                           nmethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4559
vframe_hp.cpp                           oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4560
vframe_hp.cpp                           oopMapCache.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4561
vframe_hp.cpp                           pcDesc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4562
vframe_hp.cpp                           scopeDesc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4563
vframe_hp.cpp                           signature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4564
vframe_hp.cpp                           stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4565
vframe_hp.cpp                           synchronizer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4566
vframe_hp.cpp                           vframeArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4567
vframe_hp.cpp                           vframe_hp.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4568
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4569
vframe_hp.hpp                           vframe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4570
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4571
virtualspace.cpp                        markOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4572
virtualspace.cpp                        oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4573
virtualspace.cpp                        os_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4574
virtualspace.cpp                        virtualspace.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4575
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4576
virtualspace.hpp                        allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4577
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4578
vmError.cpp                             arguments.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4579
vmError.cpp                             collectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4580
vmError.cpp                             compileBroker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4581
vmError.cpp                             debug.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4582
vmError.cpp                             defaultStream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4583
vmError.cpp                             frame.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4584
vmError.cpp                             init.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4585
vmError.cpp                             os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4586
vmError.cpp                             thread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4587
vmError.cpp                             top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4588
vmError.cpp                             vmError.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4589
vmError.cpp                             vmThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4590
vmError.cpp                             vm_operations.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4591
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4592
vmError.hpp                             globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4593
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4594
vmError_<os_family>.cpp                 arguments.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4595
vmError_<os_family>.cpp                 os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4596
vmError_<os_family>.cpp                 thread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4597
vmError_<os_family>.cpp                 vmError.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4598
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4599
// vmStructs is jck optional, put cpp deps in includeDB_features
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4600
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4601
vmStructs.hpp                           debug.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4602
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4603
vmSymbols.cpp                           handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4604
vmSymbols.cpp                           oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4605
vmSymbols.cpp                           oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4606
vmSymbols.cpp                           vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4607
vmSymbols.cpp                           xmlstream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4608
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4609
vmSymbols.hpp                           symbolOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4610
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4611
vmThread.cpp                            collectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4612
vmThread.cpp                            compileBroker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4613
vmThread.cpp                            events.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4614
vmThread.cpp                            interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4615
vmThread.cpp                            methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4616
vmThread.cpp                            mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4617
vmThread.cpp                            oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4618
vmThread.cpp                            os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4619
vmThread.cpp                            resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4620
vmThread.cpp                            runtimeService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4621
vmThread.cpp                            thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4622
vmThread.cpp                            vmThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4623
vmThread.cpp                            vm_operations.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4624
vmThread.cpp                            xmlstream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4625
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4626
vmThread.hpp                            perfData.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4627
vmThread.hpp                            thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4628
vmThread.hpp                            vm_operations.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4629
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4630
vm_operations.cpp                       arguments.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4631
vm_operations.cpp                       compileBroker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4632
vm_operations.cpp                       compilerOracle.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4633
vm_operations.cpp                       deoptimization.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4634
vm_operations.cpp                       interfaceSupport.hpp
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 389
diff changeset
  4635
vm_operations.cpp                       isGCActiveMark.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4636
vm_operations.cpp                       resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4637
vm_operations.cpp                       threadService.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4638
vm_operations.cpp                       thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4639
vm_operations.cpp                       vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4640
vm_operations.cpp                       vm_operations.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4641
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4642
vm_operations.hpp                       allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4643
vm_operations.hpp                       javaClasses.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4644
vm_operations.hpp                       oop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4645
vm_operations.hpp                       thread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4646
vm_operations.hpp                       top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4647
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4648
vm_version.cpp                          arguments.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4649
vm_version.cpp                          oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4650
vm_version.cpp                          universe.hpp
2111
dab8a43dd738 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 1904
diff changeset
  4651
vm_version.cpp                          vm_version_<arch>.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4652
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4653
vm_version.hpp                          allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4654
vm_version.hpp                          ostream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4655
2111
dab8a43dd738 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 1904
diff changeset
  4656
vm_version_<arch>.cpp                   assembler_<arch>.inline.hpp
dab8a43dd738 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 1904
diff changeset
  4657
vm_version_<arch>.cpp                   java.hpp
dab8a43dd738 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 1904
diff changeset
  4658
vm_version_<arch>.cpp                   os_<os_family>.inline.hpp
dab8a43dd738 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 1904
diff changeset
  4659
vm_version_<arch>.cpp                   resourceArea.hpp
dab8a43dd738 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 1904
diff changeset
  4660
vm_version_<arch>.cpp                   stubCodeGenerator.hpp
dab8a43dd738 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 1904
diff changeset
  4661
vm_version_<arch>.cpp                   vm_version_<arch>.hpp
dab8a43dd738 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 1904
diff changeset
  4662
dab8a43dd738 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 1904
diff changeset
  4663
vm_version_<arch>.hpp                   globals_extension.hpp
dab8a43dd738 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 1904
diff changeset
  4664
vm_version_<arch>.hpp                   vm_version.hpp
dab8a43dd738 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 1904
diff changeset
  4665
2253
30268d00878e 6812587: Use auxv to determine SPARC hardware features on Solaris
twisti
parents: 2140
diff changeset
  4666
vm_version_<os_arch>.cpp                os.hpp
2111
dab8a43dd738 6808589: Merge vm_version_x86_{32,64}.{cpp,hpp}
twisti
parents: 1904
diff changeset
  4667
vm_version_<os_arch>.cpp                vm_version_<arch>.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4668
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4669
vmreg.cpp                               assembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4670
vmreg.cpp                               vmreg.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4671
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4672
vmreg.hpp                               allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4673
vmreg.hpp                               globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4674
vmreg.hpp                               register_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4675
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4676
vmreg_<arch>.cpp                        assembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4677
vmreg_<arch>.cpp                        vmreg.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4678
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4679
vmreg_<arch>.hpp                        generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4680
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4681
vtableStubs.cpp                         allocation.inline.hpp
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 225
diff changeset
  4682
vtableStubs.cpp                         disassembler.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4683
vtableStubs.cpp                         forte.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4684
vtableStubs.cpp                         handles.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4685
vtableStubs.cpp                         instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4686
vtableStubs.cpp                         jvmtiExport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4687
vtableStubs.cpp                         klassVtable.hpp
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 347
diff changeset
  4688
vtableStubs.cpp                         oop.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4689
vtableStubs.cpp                         mutexLocker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4690
vtableStubs.cpp                         resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4691
vtableStubs.cpp                         sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4692
vtableStubs.cpp                         vtableStubs.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4693
vtableStubs.cpp                         vtune.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4694
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4695
vtableStubs.hpp                         allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4696
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4697
vtableStubs_<arch_model>.cpp            assembler.hpp
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 978
diff changeset
  4698
vtableStubs_<arch_model>.cpp            assembler_<arch>.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4699
vtableStubs_<arch_model>.cpp            instanceKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4700
vtableStubs_<arch_model>.cpp            interp_masm_<arch_model>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4701
vtableStubs_<arch_model>.cpp            klassVtable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4702
vtableStubs_<arch_model>.cpp            resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4703
vtableStubs_<arch_model>.cpp            sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4704
vtableStubs_<arch_model>.cpp            vmreg_<arch>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4705
vtableStubs_<arch_model>.cpp            vtableStubs.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4706
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4707
vtune.hpp                               allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4708
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4709
vtune_<os_family>.cpp                   interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4710
vtune_<os_family>.cpp                   vtune.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4711
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4712
watermark.hpp                           allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4713
watermark.hpp                           globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4714
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4715
workgroup.cpp                           allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4716
workgroup.cpp                           allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4717
workgroup.cpp                           os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4718
workgroup.cpp                           workgroup.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4719
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4720
workgroup.hpp                           thread_<os_family>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4721
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4722
xmlstream.cpp                           allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4723
xmlstream.cpp                           allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4724
xmlstream.cpp                           deoptimization.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4725
xmlstream.cpp                           methodDataOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4726
xmlstream.cpp                           methodOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4727
xmlstream.cpp                           nmethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4728
xmlstream.cpp                           oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4729
xmlstream.cpp                           vmThread.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4730
xmlstream.cpp                           xmlstream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4731
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4732
xmlstream.hpp                           handles.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  4733
xmlstream.hpp                           ostream.hpp