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