comparison src/share/vm/graal/graalCompiler.hpp @ 5068:6e7c1fb1980f

enabled wrappers for native method calls
author Christian Haeubl <christian.haeubl@oracle.com>
date Fri, 09 Mar 2012 13:14:54 -0800
parents 4e3aaf14cbc6
children 51111665eda6
comparison
equal deleted inserted replaced
5067:bb290d53a338 5068:6e7c1fb1980f
39 39
40 40
41 virtual const char* name() { return "G"; } 41 virtual const char* name() { return "G"; }
42 42
43 // Native / OSR not supported 43 // Native / OSR not supported
44 virtual bool supports_native() { return false; } 44 virtual bool supports_native() { return true; }
45 virtual bool supports_osr () { return false; } 45 virtual bool supports_osr () { return false; }
46 46
47 // Pretend to be C1 47 // Pretend to be C1
48 bool is_c1 () { return true; } 48 bool is_c1 () { return true; }
49 bool is_c2 () { return false; } 49 bool is_c2 () { return false; }