2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2014-01-06 17:23:07 -08:00
|
|
|
* Copyright (c) 1999, 2014, Oracle and/or its affiliates. All rights reserved.
|
2007-12-01 00:00:00 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
*
|
|
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License version 2 only, as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
|
|
* accompanied this code).
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License version
|
|
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
2010-05-27 19:08:38 -07:00
|
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
|
|
* questions.
|
2007-12-01 00:00:00 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-11-23 13:22:55 -08:00
|
|
|
#ifndef SHARE_VM_COMPILER_ABSTRACTCOMPILER_HPP
|
|
|
|
#define SHARE_VM_COMPILER_ABSTRACTCOMPILER_HPP
|
|
|
|
|
|
|
|
#include "ci/compilerInterface.hpp"
|
|
|
|
|
2012-06-28 17:03:16 -04:00
|
|
|
class AbstractCompiler : public CHeapObj<mtCompiler> {
|
2007-12-01 00:00:00 +00:00
|
|
|
private:
|
2013-10-10 15:44:12 +02:00
|
|
|
volatile int _num_compiler_threads;
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
protected:
|
2013-10-10 15:44:12 +02:00
|
|
|
volatile int _compiler_state;
|
2007-12-01 00:00:00 +00:00
|
|
|
// Used for tracking global state of compiler runtime initialization
|
2013-10-10 15:44:12 +02:00
|
|
|
enum { uninitialized, initializing, initialized, failed, shut_down };
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2013-10-10 15:44:12 +02:00
|
|
|
// This method returns true for the first compiler thread that reaches that methods.
|
|
|
|
// This thread will initialize the compiler runtime.
|
|
|
|
bool should_perform_init();
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2014-01-06 17:23:07 -08:00
|
|
|
// The (closed set) of concrete compiler classes.
|
|
|
|
enum Type {
|
|
|
|
none,
|
|
|
|
c1,
|
|
|
|
c2,
|
|
|
|
shark
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
Type _type;
|
|
|
|
|
2007-12-01 00:00:00 +00:00
|
|
|
public:
|
2014-01-06 17:23:07 -08:00
|
|
|
AbstractCompiler(Type type) : _type(type), _compiler_state(uninitialized), _num_compiler_threads(0) {}
|
2013-10-10 15:44:12 +02:00
|
|
|
|
|
|
|
// This function determines the compiler thread that will perform the
|
|
|
|
// shutdown of the corresponding compiler runtime.
|
|
|
|
bool should_perform_shutdown();
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// Name of this compiler
|
|
|
|
virtual const char* name() = 0;
|
|
|
|
|
|
|
|
// Missing feature tests
|
|
|
|
virtual bool supports_native() { return true; }
|
|
|
|
virtual bool supports_osr () { return true; }
|
2013-01-11 16:47:23 -08:00
|
|
|
virtual bool can_compile_method(methodHandle method) { return true; }
|
2014-01-06 17:23:07 -08:00
|
|
|
|
|
|
|
// Compiler type queries.
|
|
|
|
bool is_c1() { return _type == c1; }
|
|
|
|
bool is_c2() { return _type == c2; }
|
|
|
|
bool is_shark() { return _type == shark; }
|
2007-12-01 00:00:00 +00:00
|
|
|
|
|
|
|
// Customization
|
2013-10-10 15:44:12 +02:00
|
|
|
virtual void initialize () = 0;
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2013-10-10 15:44:12 +02:00
|
|
|
void set_num_compiler_threads(int num) { _num_compiler_threads = num; }
|
|
|
|
int num_compiler_threads() { return _num_compiler_threads; }
|
2007-12-01 00:00:00 +00:00
|
|
|
|
2013-10-10 15:44:12 +02:00
|
|
|
// Get/set state of compiler objects
|
|
|
|
bool is_initialized() { return _compiler_state == initialized; }
|
|
|
|
bool is_failed () { return _compiler_state == failed;}
|
|
|
|
void set_state (int state);
|
|
|
|
void set_shut_down () { set_state(shut_down); }
|
2007-12-01 00:00:00 +00:00
|
|
|
// Compilation entry point for methods
|
2013-10-10 15:44:12 +02:00
|
|
|
virtual void compile_method(ciEnv* env, ciMethod* target, int entry_bci) {
|
2007-12-01 00:00:00 +00:00
|
|
|
ShouldNotReachHere();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Print compilation timers and statistics
|
|
|
|
virtual void print_timers() {
|
|
|
|
ShouldNotReachHere();
|
|
|
|
}
|
|
|
|
};
|
2010-11-23 13:22:55 -08:00
|
|
|
|
|
|
|
#endif // SHARE_VM_COMPILER_ABSTRACTCOMPILER_HPP
|