Lines Matching refs:Value

217   void ipush(Value t) const                      { state()->ipush(t); }
218 void lpush(Value t) const { state()->lpush(t); }
219 void fpush(Value t) const { state()->fpush(t); }
220 void dpush(Value t) const { state()->dpush(t); }
221 void apush(Value t) const { state()->apush(t); }
222 void push(ValueType* type, Value t) const { state()-> push(type, t); }
224 Value ipop() { return state()->ipop(); }
225 Value lpop() { return state()->lpop(); }
226 Value fpop() { return state()->fpop(); }
227 Value dpop() { return state()->dpop(); }
228 Value apop() { return state()->apop(); }
229 Value pop(ValueType* type) { return state()-> pop(type); }
235 void store_local(ValueStack* state, Value value, int index);
247 void if_node(Value x, If::Condition cond, Value y, ValueStack* stack_before);
255 void method_return(Value x, bool ignore_return = false);
264 void monitorenter(Value x, int bci);
265 void monitorexit(Value x, int bci);
268 Value round_fp(Value fp_value);
279 void null_check(Value value);
285 Value make_constant(ciConstant value, ciField* field);
346 void inline_sync_entry(Value lock, BlockBegin* sync_handler);
347 void fill_sync_handler(Value lock, BlockBegin* sync_handler, bool default_handler = false);
352 bool try_inline( ciMethod* callee, bool holder_known, bool ignore_return, Bytecodes::Code bc = Bytecodes::_illegal, Value receiver = NULL);
354 bool try_inline_full( ciMethod* callee, bool holder_known, bool ignore_return, Bytecodes::Code bc = Bytecodes::_illegal, Value receiver = NULL);
386 void profile_call(ciMethod* callee, Value recv, ciKlass* predicted_holder, Values* obj_args, bool inlined);
387 void profile_return_type(Value ret, ciMethod* callee, ciMethod* m = NULL, int bci = -1);