comparison src/share/vm/c1/c1_Compiler.hpp @ 14909:4ca6dc0799b6

Backout jdk9 merge
author Gilles Duboscq <duboscq@ssw.jku.at>
date Tue, 01 Apr 2014 13:57:07 +0200
parents 16e101c8691f
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.
40 ~Compiler(); 40 ~Compiler();
41 41
42 // Name of this compiler 42 // Name of this compiler
43 virtual const char* name() { return "C1"; } 43 virtual const char* name() { return "C1"; }
44 44
45 virtual bool is_c1() { return true; };
46
45 // Missing feature tests 47 // Missing feature tests
46 virtual bool supports_native() { return true; } 48 virtual bool supports_native() { return true; }
47 virtual bool supports_osr () { return true; } 49 virtual bool supports_osr () { return true; }
48 50
49 // Initialization 51 // Initialization