comparison src/share/vm/compiler/abstractCompiler.hpp @ 7644:64f41765b3d2

Merge fix.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 31 Jan 2013 15:56:27 +0100
parents 3ac7d10a6572
children 359f7e70ae7f
comparison
equal deleted inserted replaced
7643:3ac7d10a6572 7644:64f41765b3d2
74 // does *not* answer the question "can this compiler generate code for 74 // does *not* answer the question "can this compiler generate code for
75 // a native method". 75 // a native method".
76 virtual bool supports_native() { return true; } 76 virtual bool supports_native() { return true; }
77 77
78 virtual bool supports_osr () { return true; } 78 virtual bool supports_osr () { return true; }
79 virtual bool can_compile_method(methodHandle method) { return true; }
79 bool is_c1 () { return _type == c1; } 80 bool is_c1 () { return _type == c1; }
80 bool is_c2 () { return _type == c2; } 81 bool is_c2 () { return _type == c2; }
81 bool is_shark() { return _type == shark; } 82 bool is_shark() { return _type == shark; }
82 bool is_graal() { return _type == graal; } 83 bool is_graal() { return _type == graal; }
83 84