Lines Matching defs:offset

60                                        int          offset) {
68 adjusted_offset(value, offset));
73 oopmap()->set_oop(slot2reg(offset));
78 exparray()->append(slot2lv(offset, stack_location_type(index, addr)));
95 void SharkDecacher::process_oop_tmp_slot(Value** value, int offset) {
101 offset);
103 oopmap()->set_oop(slot2reg(offset));
107 void SharkDecacher::process_method_slot(Value** value, int offset) {
112 offset);
114 oopmap()->set_oop(slot2reg(offset));
117 void SharkDecacher::process_pc_slot(int offset) {
121 stack()->slot_addr(offset));
130 int offset) {
138 adjusted_offset(value, offset));
143 oopmap()->set_oop(slot2reg(offset));
148 locarray()->append(slot2lv(offset, local_location_type(index, addr)));
171 int offset) {
180 adjusted_offset(value, offset)),
200 void SharkCacher::process_oop_tmp_slot(Value** value, int offset) {
203 *value = read_value_from_frame(SharkType::oop_type(), offset);
206 void SharkCacher::process_method_slot(Value** value, int offset) {
208 *value = read_value_from_frame(SharkType::methodOop_type(), offset);
211 void SharkFunctionEntryCacher::process_method_slot(Value** value, int offset) {
218 int offset) {
227 adjusted_offset(value, offset)),
232 Value* SharkOSREntryCacher::CreateAddressOfOSRBufEntry(int offset,
234 Value *result = builder()->CreateStructGEP(osr_buf(), offset);
242 int offset) {
259 int offset) {
260 builder()->CreateStore(value, stack()->slot_addr(offset, type));
263 Value* SharkCacher::read_value_from_frame(const Type* type, int offset) {
264 return builder()->CreateLoad(stack()->slot_addr(offset, type));