comparison src/share/vm/graal/graalCompiler.hpp @ 6955:a0f4001cf53c

disabled OSR compilation for Graal until dead-lock issue is resolved
author Doug Simon <doug.simon@oracle.com>
date Thu, 15 Nov 2012 22:33:52 +0100
parents e522a00b91aa
children e9f69041ac38
comparison
equal deleted inserted replaced
6954:0e20ad1ea98b 6955:a0f4001cf53c
48 48
49 virtual const char* name() { return "G"; } 49 virtual const char* name() { return "G"; }
50 50
51 // Native / OSR not supported 51 // Native / OSR not supported
52 virtual bool supports_native() { return true; } 52 virtual bool supports_native() { return true; }
53 virtual bool supports_osr () { return true; } 53 virtual bool supports_osr () { return false; }
54 54
55 // Pretend to be C1 55 // Pretend to be C1
56 bool is_c1 () { return true; } 56 bool is_c1 () { return true; }
57 bool is_c2 () { return false; } 57 bool is_c2 () { return false; }
58 58