comparison src/share/vm/graal/graalCompiler.hpp @ 6674:fd71ca8c5f88

VM infrstructure for OnStackReplacement
author Lukas Stadler <lukas.stadler@jku.at>
date Wed, 07 Nov 2012 13:18:04 +0100
parents 45f682f7fea8
children e522a00b91aa
comparison
equal deleted inserted replaced
6673:a52320a6bbda 6674:fd71ca8c5f88
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 false; } 53 virtual bool supports_osr () { return true; }
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