comparison src/share/vm/graal/graalCompiler.hpp @ 7149:6a8b22829e36

made the Graal implementation of the C++ AbstractCompiler class support native wrapper generation
author Doug Simon <doug.simon@oracle.com>
date Mon, 10 Dec 2012 22:19:07 +0100
parents 1baf7f1e3f23
children 140d4d4ab3b9
comparison
equal deleted inserted replaced
7148:46bad05d39b1 7149:6a8b22829e36
46 static GraalCompiler* instance() { return _instance; } 46 static GraalCompiler* instance() { return _instance; }
47 47
48 48
49 virtual const char* name() { return "G"; } 49 virtual const char* name() { return "G"; }
50 50
51 virtual bool supports_native() { return false; } 51 virtual bool supports_native() { return true; }
52 virtual bool supports_osr () { return true; } 52 virtual bool supports_osr () { return true; }
53 53
54 bool is_graal() { return true; } 54 bool is_graal() { return true; }
55 bool is_c1 () { return false; } 55 bool is_c1 () { return false; }
56 bool is_c2 () { return false; } 56 bool is_c2 () { return false; }