src/share/vm/interpreter/templateTable.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Sdiff src/share/vm/interpreter

src/share/vm/interpreter/templateTable.hpp

Print this page
rev 5469 : [mq]: parameters-review


  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_INTERPRETER_TEMPLATETABLE_HPP
  26 #define SHARE_VM_INTERPRETER_TEMPLATETABLE_HPP
  27 
  28 #include "interpreter/bytecodes.hpp"
  29 #include "memory/allocation.hpp"
  30 #include "runtime/frame.hpp"
  31 #ifdef TARGET_ARCH_MODEL_x86_32
  32 # include "interp_masm_x86_32.hpp"
  33 #endif
  34 #ifdef TARGET_ARCH_MODEL_x86_64
  35 # include "interp_masm_x86_64.hpp"
  36 #endif
  37 #ifdef TARGET_ARCH_MODEL_sparc
  38 # include "interp_masm_sparc.hpp"
  39 #endif
  40 #ifdef TARGET_ARCH_MODEL_zero
  41 # include "interp_masm_zero.hpp"
  42 #endif
  43 #ifdef TARGET_ARCH_MODEL_arm
  44 # include "interp_masm_arm.hpp"
  45 #endif
  46 #ifdef TARGET_ARCH_MODEL_ppc
  47 # include "interp_masm_ppc.hpp"
  48 #endif
  49 
  50 #ifndef CC_INTERP
  51 // All the necessary definitions used for (bytecode) template generation. Instead of
  52 // spreading the implementation functionality for each bytecode in the interpreter
  53 // and the snippet generator, a template is assigned to each bytecode which can be
  54 // used to generate the bytecode's implementation if needed.
  55 




  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_INTERPRETER_TEMPLATETABLE_HPP
  26 #define SHARE_VM_INTERPRETER_TEMPLATETABLE_HPP
  27 
  28 #include "interpreter/bytecodes.hpp"
  29 #include "memory/allocation.hpp"
  30 #include "runtime/frame.hpp"
  31 #ifdef TARGET_ARCH_x86
  32 # include "interp_masm_x86.hpp"



  33 #endif
  34 #ifdef TARGET_ARCH_MODEL_sparc
  35 # include "interp_masm_sparc.hpp"
  36 #endif
  37 #ifdef TARGET_ARCH_MODEL_zero
  38 # include "interp_masm_zero.hpp"
  39 #endif
  40 #ifdef TARGET_ARCH_MODEL_arm
  41 # include "interp_masm_arm.hpp"
  42 #endif
  43 #ifdef TARGET_ARCH_MODEL_ppc
  44 # include "interp_masm_ppc.hpp"
  45 #endif
  46 
  47 #ifndef CC_INTERP
  48 // All the necessary definitions used for (bytecode) template generation. Instead of
  49 // spreading the implementation functionality for each bytecode in the interpreter
  50 // and the snippet generator, a template is assigned to each bytecode which can be
  51 // used to generate the bytecode's implementation if needed.
  52 


src/share/vm/interpreter/templateTable.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File