comparison src/share/vm/graal/graalCodeInstaller.hpp @ 3687:7958ebb561b0

Merge
author Lukas Stadler <lukas.stadler@jku.at>
date Fri, 18 Nov 2011 17:20:38 +0100
parents 5e331d5f760e
children 50a1d38cd7ac
comparison
equal deleted inserted replaced
3686:2b7278bec776 3687:7958ebb561b0
80 ImplicitExceptionTable _implicit_exception_table; 80 ImplicitExceptionTable _implicit_exception_table;
81 81
82 public: 82 public:
83 83
84 // constructor used to create a method 84 // constructor used to create a method
85 CodeInstaller(Handle target_method, nmethod*& nm, bool install_code); 85 CodeInstaller(Handle& target_method, nmethod*& nm, bool install_code);
86 86
87 // constructor used to create a stub 87 // constructor used to create a stub
88 CodeInstaller(Handle target_method, jlong& id); 88 CodeInstaller(Handle& target_method, jlong& id);
89 89
90 static address runtime_call_target_address(oop runtime_call); 90 static address runtime_call_target_address(oop runtime_call);
91 91
92 private: 92 private:
93 // extract the fields of the CiTargetMethod 93 // extract the fields of the CiTargetMethod
94 void initialize_fields(Handle target_method); 94 void initialize_fields(oop target_method);
95 void initialize_assumptions(oop target_method);
95 96
96 // perform data and call relocation on the CodeBuffer 97 // perform data and call relocation on the CodeBuffer
97 void initialize_buffer(CodeBuffer& buffer); 98 void initialize_buffer(CodeBuffer& buffer);
98 99
99 void assumption_ConcreteSubtype(Handle assumption); 100 void assumption_ConcreteSubtype(Handle assumption);