hotspot/src/share/vm/includeDB_compiler1
author roland
Tue, 29 Dec 2009 19:08:54 +0100
changeset 6745 a34ef8968a84
parent 6453 970dc585ab63
child 6975 dc9b63952682
permissions -rw-r--r--
6986046: C1 valuestack cleanup Summary: fixes an historical oddity in C1 with inlining where all of the expression stacks are kept in the topmost ValueStack instead of being in their respective ValueStacks. Reviewed-by: never Contributed-by: Christian Wimmer <cwimmer@uci.edu>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
//
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5046
diff changeset
     2
// Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
// DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
// This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
// under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
// published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
// This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
// version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
// accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
// You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
// 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
// Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
//
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5046
diff changeset
    19
// Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5046
diff changeset
    20
// or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5046
diff changeset
    21
// questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
// NOTE: DO NOT CHANGE THIS COPYRIGHT TO NEW STYLE - IT WILL BREAK makeDeps!
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
allocation.hpp                          c1_globals.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
c1_CFGPrinter.cpp                       c1_CFGPrinter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
c1_CFGPrinter.cpp                       c1_IR.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
c1_CFGPrinter.cpp                       c1_InstructionPrinter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
c1_CFGPrinter.cpp                       c1_LIR.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
c1_CFGPrinter.cpp                       c1_LinearScan.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
c1_CFGPrinter.cpp                       c1_ValueStack.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
c1_CFGPrinter.hpp                       c1_Compilation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
c1_CFGPrinter.hpp                       c1_Instruction.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 347
diff changeset
    38
cardTableModRefBS.cpp			c1_LIR.hpp
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 347
diff changeset
    39
cardTableModRefBS.cpp			c1_LIRGenerator.hpp
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 347
diff changeset
    40
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
c1_Canonicalizer.cpp                    c1_Canonicalizer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
c1_Canonicalizer.cpp                    c1_InstructionPrinter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
c1_Canonicalizer.cpp                    ciArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
c1_Canonicalizer.cpp                    sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
c1_Canonicalizer.hpp                    c1_Instruction.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
c1_CodeStubs.hpp                        array.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
c1_CodeStubs.hpp                        c1_FrameMap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
c1_CodeStubs.hpp                        c1_IR.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
c1_CodeStubs.hpp                        c1_Instruction.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
c1_CodeStubs.hpp                        c1_LIR.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
c1_CodeStubs.hpp                        c1_Runtime1.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
c1_CodeStubs_<arch>.cpp                 c1_CodeStubs.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
c1_CodeStubs_<arch>.cpp                 c1_FrameMap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
c1_CodeStubs_<arch>.cpp                 c1_LIRAssembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
c1_CodeStubs_<arch>.cpp                 c1_MacroAssembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
c1_CodeStubs_<arch>.cpp                 c1_Runtime1.hpp
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 347
diff changeset
    60
c1_CodeStubs_<arch>.cpp                 g1SATBCardTableModRefBS.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
c1_CodeStubs_<arch>.cpp                 nativeInst_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
c1_CodeStubs_<arch>.cpp                 sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
c1_CodeStubs_<arch>.cpp                 vmreg_<arch>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
c1_Compilation.cpp                      c1_CFGPrinter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
c1_Compilation.cpp                      c1_Compilation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
c1_Compilation.cpp                      c1_IR.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
c1_Compilation.cpp                      c1_LIRAssembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
c1_Compilation.cpp                      c1_LinearScan.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
c1_Compilation.cpp                      c1_MacroAssembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
c1_Compilation.cpp                      c1_ValueMap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
c1_Compilation.cpp                      c1_ValueStack.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
c1_Compilation.cpp                      debugInfoRec.hpp
5707
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
    74
c1_Compilation.hpp                      ciEnv.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
c1_Compilation.hpp                      exceptionHandlerTable.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
c1_Compilation.hpp                      resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
c1_Compiler.cpp                         allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
c1_Compiler.cpp                         allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
c1_Compiler.cpp                         arguments.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
c1_Compiler.cpp                         c1_Compilation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
c1_Compiler.cpp                         c1_Compiler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
c1_Compiler.cpp                         c1_FrameMap.hpp
5707
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
    84
c1_Compiler.cpp                         c1_GraphBuilder.hpp
6c66849ed24e 6958292: C1: Enable parallel compilation
iveresov
parents: 5547
diff changeset
    85
c1_Compiler.cpp                         c1_LinearScan.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
c1_Compiler.cpp                         c1_MacroAssembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
c1_Compiler.cpp                         c1_Runtime1.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
c1_Compiler.cpp                         c1_ValueType.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
c1_Compiler.cpp                         compileBroker.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
c1_Compiler.cpp                         compilerOracle.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
c1_Compiler.cpp                         interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
c1_Compiler.cpp                         linkResolver.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
c1_Compiler.cpp                         nativeLookup.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
c1_Compiler.cpp                         resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
c1_Compiler.cpp                         sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
c1_Compiler.hpp                         abstractCompiler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
c1_Defs.cpp                             c1_Defs.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
c1_Defs.hpp                             globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
c1_Defs.hpp                             register_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
c1_Defs_<arch>.hpp                      generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
c1_FpuStackSim.hpp                      allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
c1_FpuStackSim.hpp                      c1_FrameMap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
c1_FpuStackSim_<arch>.cpp               array.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
c1_FpuStackSim_<arch>.cpp               c1_FpuStackSim.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
c1_FpuStackSim_<arch>.cpp               c1_FrameMap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
c1_FpuStackSim_<arch>.cpp               ostream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
c1_FpuStackSim_<arch>.hpp               generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
c1_FrameMap.cpp                         c1_FrameMap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
c1_FrameMap.cpp                         c1_LIR.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
c1_FrameMap.cpp                         sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
c1_FrameMap.cpp                         vmreg_<arch>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
c1_FrameMap.hpp                         allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
c1_FrameMap.hpp                         assembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
c1_FrameMap.hpp                         c1_Defs.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
c1_FrameMap.hpp                         c1_LIR.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
c1_FrameMap.hpp                         frame.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
c1_FrameMap.hpp                         globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
c1_FrameMap.hpp                         synchronizer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
c1_FrameMap.hpp                         vmreg.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
c1_FrameMap_<arch>.cpp                  c1_FrameMap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
c1_FrameMap_<arch>.cpp                  c1_LIR.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
c1_FrameMap_<arch>.cpp                  sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
c1_FrameMap_<arch>.cpp                  vmreg_<arch>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
c1_FrameMap_<arch>.hpp                  generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
c1_globals.cpp                          c1_globals.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
c1_globals.hpp                          c1_globals_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
c1_globals.hpp                          c1_globals_<os_family>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
c1_globals.hpp                          globals.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
c1_globals_<arch>.hpp                   globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
c1_globals_<arch>.hpp                   macros.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
c1_globals_<os_family>.hpp              globalDefinitions.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
c1_globals_<os_family>.hpp              macros.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 347
diff changeset
   149
c1_GraphBuilder.cpp                     bitMap.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
c1_GraphBuilder.cpp                     bytecode.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
c1_GraphBuilder.cpp                     c1_CFGPrinter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
c1_GraphBuilder.cpp                     c1_Canonicalizer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
c1_GraphBuilder.cpp                     c1_Compilation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
c1_GraphBuilder.cpp                     c1_GraphBuilder.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
c1_GraphBuilder.cpp                     c1_InstructionPrinter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
c1_GraphBuilder.cpp                     ciField.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
c1_GraphBuilder.cpp                     ciKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
c1_GraphBuilder.cpp                     sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
c1_GraphBuilder.hpp                     c1_IR.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
c1_GraphBuilder.hpp                     c1_Instruction.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
c1_GraphBuilder.hpp                     c1_ValueMap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
c1_GraphBuilder.hpp                     c1_ValueStack.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
c1_GraphBuilder.hpp                     ciMethodData.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
c1_GraphBuilder.hpp                     ciStreams.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 347
diff changeset
   167
c1_IR.cpp                               bitMap.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
c1_IR.cpp                               c1_Compilation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
c1_IR.cpp                               c1_FrameMap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
c1_IR.cpp                               c1_GraphBuilder.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
c1_IR.cpp                               c1_IR.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
c1_IR.cpp                               c1_InstructionPrinter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
c1_IR.cpp                               c1_Optimizer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
c1_IR.hpp                               allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
c1_IR.hpp                               c1_Instruction.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
c1_IR.hpp                               ciExceptionHandler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
c1_IR.hpp                               ciMethod.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
c1_IR.hpp                               ciStreams.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
c1_Instruction.cpp                      c1_IR.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
c1_Instruction.cpp                      c1_Instruction.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
c1_Instruction.cpp                      c1_InstructionPrinter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
c1_Instruction.cpp                      c1_ValueStack.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
c1_Instruction.cpp                      ciObjArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
c1_Instruction.cpp                      ciTypeArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
c1_Instruction.hpp                      c1_Compilation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
c1_Instruction.hpp                      c1_LIR.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
c1_Instruction.hpp                      c1_ValueType.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
c1_Instruction.hpp                      ciField.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
c1_InstructionPrinter.cpp               c1_InstructionPrinter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
c1_InstructionPrinter.cpp               c1_ValueStack.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
c1_InstructionPrinter.cpp               ciArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
c1_InstructionPrinter.cpp               ciInstance.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
c1_InstructionPrinter.cpp               ciObject.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
c1_InstructionPrinter.hpp               c1_IR.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
c1_InstructionPrinter.hpp               c1_Instruction.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
c1_InstructionPrinter.hpp               c1_Runtime1.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
c1_LIR.cpp                              c1_InstructionPrinter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
c1_LIR.cpp                              c1_LIR.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
c1_LIR.cpp                              c1_LIRAssembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
c1_LIR.cpp                              ciInstance.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
c1_LIR.cpp                              sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
c1_LIR.hpp                              c1_ValueType.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
c1_LIRAssembler.cpp                     c1_Compilation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
c1_LIRAssembler.cpp                     c1_Instruction.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
c1_LIRAssembler.cpp                     c1_InstructionPrinter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
c1_LIRAssembler.cpp                     c1_LIRAssembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
c1_LIRAssembler.cpp                     c1_MacroAssembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
c1_LIRAssembler.cpp                     c1_ValueStack.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
c1_LIRAssembler.cpp                     ciInstance.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
c1_LIRAssembler.cpp                     nativeInst_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
c1_LIRAssembler.cpp                     vmreg_<arch>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
c1_LIRAssembler.hpp                     c1_CodeStubs.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
c1_LIRAssembler.hpp                     ciMethodData.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
c1_LIRAssembler.hpp                     methodDataOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
c1_LIRAssembler.hpp                     top.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
c1_LIRAssembler_<arch>.cpp              barrierSet.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
c1_LIRAssembler_<arch>.cpp              c1_Compilation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
c1_LIRAssembler_<arch>.cpp              c1_LIRAssembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
c1_LIRAssembler_<arch>.cpp              c1_MacroAssembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
c1_LIRAssembler_<arch>.cpp              c1_Runtime1.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
c1_LIRAssembler_<arch>.cpp              c1_ValueStack.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
c1_LIRAssembler_<arch>.cpp              cardTableModRefBS.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
c1_LIRAssembler_<arch>.cpp              ciArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
c1_LIRAssembler_<arch>.cpp              ciInstance.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
c1_LIRAssembler_<arch>.cpp              collectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
c1_LIRAssembler_<arch>.cpp              nativeInst_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
c1_LIRAssembler_<arch>.cpp              objArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
c1_LIRAssembler_<arch>.cpp              sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
c1_LIRAssembler_<arch>.hpp              generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 347
diff changeset
   242
c1_LIRGenerator.cpp                     bitMap.inline.hpp
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 347
diff changeset
   243
c1_LIRGenerator.cpp                     c1_Compilation.hpp
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 347
diff changeset
   244
c1_LIRGenerator.cpp                     c1_FrameMap.hpp
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 347
diff changeset
   245
c1_LIRGenerator.cpp                     c1_Instruction.hpp
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 347
diff changeset
   246
c1_LIRGenerator.cpp                     c1_LIRAssembler.hpp
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 347
diff changeset
   247
c1_LIRGenerator.cpp                     c1_LIRGenerator.hpp
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 347
diff changeset
   248
c1_LIRGenerator.cpp                     c1_ValueStack.hpp
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 347
diff changeset
   249
c1_LIRGenerator.cpp                     ciArrayKlass.hpp
5046
27e801a857cb 6919934: JSR 292 needs to support x86 C1
twisti
parents: 3683
diff changeset
   250
c1_LIRGenerator.cpp                     ciCPCache.hpp
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 347
diff changeset
   251
c1_LIRGenerator.cpp                     ciInstance.hpp
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 347
diff changeset
   252
c1_LIRGenerator.cpp                     heapRegion.hpp
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 347
diff changeset
   253
c1_LIRGenerator.cpp                     sharedRuntime.hpp
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5707
diff changeset
   254
c1_LIRGenerator.cpp                     stubRoutines.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 347
diff changeset
   256
c1_LIRGenerator.hpp                     c1_Instruction.hpp
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 347
diff changeset
   257
c1_LIRGenerator.hpp                     c1_LIR.hpp
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 347
diff changeset
   258
c1_LIRGenerator.hpp                     ciMethodData.hpp
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 347
diff changeset
   259
c1_LIRGenerator.hpp                     sizes.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
c1_LIRGenerator_<arch>.cpp             c1_Compilation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
c1_LIRGenerator_<arch>.cpp             c1_FrameMap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
c1_LIRGenerator_<arch>.cpp             c1_Instruction.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
c1_LIRGenerator_<arch>.cpp             c1_LIRAssembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
c1_LIRGenerator_<arch>.cpp             c1_LIRGenerator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
c1_LIRGenerator_<arch>.cpp             c1_Runtime1.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
c1_LIRGenerator_<arch>.cpp             c1_ValueStack.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
c1_LIRGenerator_<arch>.cpp             ciArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
c1_LIRGenerator_<arch>.cpp             ciObjArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
c1_LIRGenerator_<arch>.cpp             ciTypeArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
c1_LIRGenerator_<arch>.cpp             sharedRuntime.hpp
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   272
c1_LIRGenerator_<arch>.cpp             vmreg_<arch>.inline.hpp
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5707
diff changeset
   273
c1_LIRGenerator_<arch>.cpp             stubRoutines.hpp
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5707
diff changeset
   274
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 347
diff changeset
   276
c1_LinearScan.cpp                       bitMap.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
c1_LinearScan.cpp                       c1_CFGPrinter.hpp
2566
865943584ecc 6828024: verification of fixed interval usage is too weak
never
parents: 1394
diff changeset
   278
c1_LinearScan.cpp                       c1_CodeStubs.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
c1_LinearScan.cpp                       c1_Compilation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
c1_LinearScan.cpp                       c1_FrameMap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
c1_LinearScan.cpp                       c1_IR.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
c1_LinearScan.cpp                       c1_LIRGenerator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
c1_LinearScan.cpp                       c1_LinearScan.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
c1_LinearScan.cpp                       c1_ValueStack.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
c1_LinearScan.cpp                       vmreg_<arch>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
c1_LinearScan.hpp                       c1_FpuStackSim.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
c1_LinearScan.hpp                       c1_FrameMap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
c1_LinearScan.hpp                       c1_IR.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
c1_LinearScan.hpp                       c1_Instruction.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
c1_LinearScan.hpp                       c1_LIR.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
c1_LinearScan.hpp                       c1_LIRGenerator.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 347
diff changeset
   294
c1_LinearScan_<arch>.cpp                bitMap.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
c1_LinearScan_<arch>.cpp                c1_Instruction.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
c1_LinearScan_<arch>.cpp                c1_LinearScan.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
c1_LinearScan_<arch>.hpp                generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
c1_MacroAssembler.hpp                   assembler.hpp
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 670
diff changeset
   301
c1_MacroAssembler.hpp                   assembler_<arch>.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
c1_MacroAssembler_<arch>.cpp            arrayOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
c1_MacroAssembler_<arch>.cpp            biasedLocking.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
c1_MacroAssembler_<arch>.cpp            c1_MacroAssembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
c1_MacroAssembler_<arch>.cpp            c1_Runtime1.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
c1_MacroAssembler_<arch>.cpp            collectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
c1_MacroAssembler_<arch>.cpp            interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
c1_MacroAssembler_<arch>.cpp            markOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
c1_MacroAssembler_<arch>.cpp            os.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
c1_MacroAssembler_<arch>.cpp            stubRoutines.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
c1_MacroAssembler_<arch>.cpp            synchronizer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
c1_MacroAssembler_<arch>.cpp            systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
c1_MacroAssembler_<arch>.hpp            generate_platform_dependent_include
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 347
diff changeset
   317
c1_Optimizer.cpp                        bitMap.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
c1_Optimizer.cpp                        c1_Canonicalizer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
c1_Optimizer.cpp                        c1_Optimizer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
c1_Optimizer.cpp                        c1_ValueMap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
c1_Optimizer.cpp                        c1_ValueSet.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
c1_Optimizer.cpp                        c1_ValueStack.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
c1_Optimizer.hpp                        allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
c1_Optimizer.hpp                        c1_IR.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
c1_Optimizer.hpp                        c1_Instruction.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
c1_Runtime1.cpp                         allocation.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
c1_Runtime1.cpp                         barrierSet.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
c1_Runtime1.cpp                         biasedLocking.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
c1_Runtime1.cpp                         bytecode.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
c1_Runtime1.cpp                         c1_CodeStubs.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
c1_Runtime1.cpp                         c1_Defs.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
c1_Runtime1.cpp                         c1_FrameMap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
c1_Runtime1.cpp                         c1_LIRAssembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
c1_Runtime1.cpp                         c1_MacroAssembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
c1_Runtime1.cpp                         c1_Runtime1.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
c1_Runtime1.cpp                         codeBlob.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
c1_Runtime1.cpp                         codeBuffer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
c1_Runtime1.cpp                         collectedHeap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
c1_Runtime1.cpp                         compilationPolicy.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
c1_Runtime1.cpp                         compiledIC.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
c1_Runtime1.cpp                         copy.hpp
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   344
c1_Runtime1.cpp                         disassembler.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
c1_Runtime1.cpp                         events.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
c1_Runtime1.cpp                         interfaceSupport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
c1_Runtime1.cpp                         interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
c1_Runtime1.cpp                         javaCalls.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
c1_Runtime1.cpp                         objArrayKlass.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
c1_Runtime1.cpp                         oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
c1_Runtime1.cpp                         oopFactory.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
c1_Runtime1.cpp                         pcDesc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
c1_Runtime1.cpp                         resourceArea.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
c1_Runtime1.cpp                         scopeDesc.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
c1_Runtime1.cpp                         sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
c1_Runtime1.cpp                         systemDictionary.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
c1_Runtime1.cpp                         threadCritical.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
c1_Runtime1.cpp                         vframe.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
c1_Runtime1.cpp                         vframeArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
c1_Runtime1.cpp                         vmSymbols.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
c1_Runtime1.cpp                         vtableStubs.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
c1_Runtime1.hpp                         allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
c1_Runtime1.hpp                         c1_FrameMap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
c1_Runtime1.hpp                         deoptimization.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
c1_Runtime1.hpp                         interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
c1_Runtime1.hpp                         stubs.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
c1_Runtime1_<arch>.cpp                  c1_Defs.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
c1_Runtime1_<arch>.cpp                  c1_MacroAssembler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
c1_Runtime1_<arch>.cpp                  c1_Runtime1.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
c1_Runtime1_<arch>.cpp                  compiledICHolderOop.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
c1_Runtime1_<arch>.cpp                  interpreter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
c1_Runtime1_<arch>.cpp                  jvmtiExport.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
c1_Runtime1_<arch>.cpp                  nativeInst_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
c1_Runtime1_<arch>.cpp                  oop.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
c1_Runtime1_<arch>.cpp                  register_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
c1_Runtime1_<arch>.cpp                  sharedRuntime.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
c1_Runtime1_<arch>.cpp                  signature.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
c1_Runtime1_<arch>.cpp                  vframeArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
c1_Runtime1_<arch>.cpp                  vmreg_<arch>.inline.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 347
diff changeset
   383
c1_ValueMap.cpp                         bitMap.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
c1_ValueMap.cpp                         c1_Canonicalizer.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
c1_ValueMap.cpp                         c1_IR.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
c1_ValueMap.cpp                         c1_ValueMap.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
c1_ValueMap.hpp                         allocation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
c1_ValueMap.hpp                         c1_Instruction.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
c1_ValueMap.hpp                         c1_ValueSet.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
c1_ValueSet.cpp                         c1_ValueSet.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
c1_ValueSet.hpp                         allocation.hpp
2998
b501bd305780 6849716: BitMap - performance regression introduced with G1
jcoomes
parents: 2566
diff changeset
   395
c1_ValueSet.hpp                         bitMap.inline.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
c1_ValueSet.hpp                         c1_Instruction.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
c1_ValueStack.cpp                       c1_IR.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
c1_ValueStack.cpp                       c1_InstructionPrinter.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
c1_ValueStack.cpp                       c1_ValueStack.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
c1_ValueStack.hpp                       c1_Instruction.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
c1_ValueType.cpp                        c1_ValueType.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
c1_ValueType.cpp                        ciArray.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
c1_ValueType.cpp                        ciInstance.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
c1_ValueType.cpp                        ciNullObject.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
c1_ValueType.hpp                        c1_Compilation.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
c1_ValueType.hpp                        ciConstant.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
ciEnv.cpp                               c1_Runtime1.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
codeBlob.cpp                            c1_Runtime1.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
compileBroker.cpp                       c1_Compiler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
frame_<arch>.cpp                        c1_Runtime1.hpp
6176
4d9030fe341f 6953477: Increase portability and flexibility of building Hotspot
bobv
parents: 5707
diff changeset
   418
frame_<arch>.cpp                        vframeArray.hpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
globals.cpp                             c1_globals.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
globals.hpp                             c1_globals_<arch>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
globals.hpp                             c1_globals_<os_family>.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
instanceKlass.cpp                       c1_Compiler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
interpreter_<arch_model>.cpp            c1_Runtime1.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
java.cpp                                c1_Compiler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
java.cpp                                c1_Runtime1.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
nativeInst_<arch>.cpp                   c1_Runtime1.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
oopMap.cpp                              c1_Defs.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
os_<os_family>.cpp                      c1_Runtime1.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
os_<os_arch>.cpp                        c1_Runtime1.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
safepoint.cpp                           c1_globals.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
sharedRuntime.cpp                       c1_Runtime1.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
sharedRuntime_<arch_model>.cpp          c1_Runtime1.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
thread.cpp                              c1_Compiler.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
top.hpp                                 c1_globals.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
vmStructs.hpp                           c1_Runtime1.hpp
6745
a34ef8968a84 6986046: C1 valuestack cleanup
roland
parents: 6453
diff changeset
   451
a34ef8968a84 6986046: C1 valuestack cleanup
roland
parents: 6453
diff changeset
   452
c1_Canonicalizer.cpp                    c1_ValueStack.hpp
a34ef8968a84 6986046: C1 valuestack cleanup
roland
parents: 6453
diff changeset
   453
a34ef8968a84 6986046: C1 valuestack cleanup
roland
parents: 6453
diff changeset
   454
c1_LIR.cpp                              c1_ValueStack.hpp