comparison src/share/vm/graal/graalCodeInstaller.hpp @ 19306:a0a760b0fb5f

pulled method evolution dependencies out of Assumptions and directly into StructuredGraph
author Doug Simon <doug.simon@oracle.com>
date Thu, 12 Feb 2015 01:54:05 +0100
parents aa4f2e3629ca
children deab43a789ad
comparison
equal deleted inserted replaced
19305:48bdad77afcd 19306:a0a760b0fb5f
120 virtual MonitorValue* get_monitor_value(oop value, int total_frame_size, GrowableArray<ScopeValue*>* objects, OopRecorder* oop_recorder); 120 virtual MonitorValue* get_monitor_value(oop value, int total_frame_size, GrowableArray<ScopeValue*>* objects, OopRecorder* oop_recorder);
121 121
122 private: 122 private:
123 // extract the fields of the CompilationResult 123 // extract the fields of the CompilationResult
124 void initialize_fields(oop target_method); 124 void initialize_fields(oop target_method);
125 void initialize_assumptions(oop target_method); 125 void initialize_dependencies(oop target_method);
126 126
127 int estimate_stub_entries(); 127 int estimate_stub_entries();
128 128
129 // perform data and call relocation on the CodeBuffer 129 // perform data and call relocation on the CodeBuffer
130 bool initialize_buffer(CodeBuffer& buffer); 130 bool initialize_buffer(CodeBuffer& buffer);
131 131
132 void assumption_MethodContents(Handle assumption);
133 void assumption_NoFinalizableSubclass(Handle assumption); 132 void assumption_NoFinalizableSubclass(Handle assumption);
134 void assumption_ConcreteSubtype(Handle assumption); 133 void assumption_ConcreteSubtype(Handle assumption);
135 void assumption_ConcreteMethod(Handle assumption); 134 void assumption_ConcreteMethod(Handle assumption);
136 void assumption_CallSiteTargetValue(Handle assumption); 135 void assumption_CallSiteTargetValue(Handle assumption);
137 136