comparison src/share/vm/c1/c1_Compiler.hpp @ 14225:16e101c8691f

8029305: add type tag to AbstractCompiler Reviewed-by: iveresov, kvn
author twisti
date Mon, 06 Jan 2014 17:23:07 -0800
parents de6a9e811145
children 4ca6dc0799b6
comparison
equal deleted inserted replaced
14224:a7e8ff4a1838 14225:16e101c8691f
1 /* 1 /*
2 * Copyright (c) 1999, 2013, 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