comparison src/share/vm/c1/c1_Compiler.hpp @ 14518:d8041d695d19

Merged with jdk9/dev/hotspot changeset 3812c088b945
author twisti
date Tue, 11 Mar 2014 18:45:59 -0700
parents 16e101c8691f
children 4ca6dc0799b6
comparison
equal deleted inserted replaced
14141:f97c5ec83832 14518:d8041d695d19
1 /* 1 /*
2 * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1999, 2014, 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
47 // Missing feature tests 45 // Missing feature tests
48 virtual bool supports_native() { return true; } 46 virtual bool supports_native() { return true; }
49 virtual bool supports_osr () { return true; } 47 virtual bool supports_osr () { return true; }
50 48
51 // Initialization 49 // Initialization