comparison src/share/vm/opto/c2compiler.hpp @ 14909:4ca6dc0799b6

Backout jdk9 merge
author Gilles Duboscq <duboscq@ssw.jku.at>
date Tue, 01 Apr 2014 13:57:07 +0200
parents d8041d695d19
children 89152779163c
comparison
equal deleted inserted replaced
14908:8db6e76cb658 14909:4ca6dc0799b6
1 /* 1 /*
2 * Copyright (c) 1999, 2014, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
35 C2Compiler() : AbstractCompiler(c2) {} 35 C2Compiler() : AbstractCompiler(c2) {}
36 36
37 // Name 37 // Name
38 const char *name() { return "C2"; } 38 const char *name() { return "C2"; }
39 39
40 #ifdef TIERED
41 virtual bool is_c2() { return true; };
42 #endif // TIERED
43
40 void initialize(); 44 void initialize();
41 45
42 // Compilation entry point for methods 46 // Compilation entry point for methods
43 void compile_method(ciEnv* env, 47 void compile_method(ciEnv* env,
44 ciMethod* target, 48 ciMethod* target,