Lines Matching defs:store_local

915 void GraphBuilder::store_local(ValueType* type, int index) {
917 store_local(state(), x, index);
921 void GraphBuilder::store_local(ValueStack* state, Value x, int index) {
945 state->store_local(index, round_fp(x));
1160 store_local(intType, index);
2544 case Bytecodes::_istore : store_local(intType , s.get_index()); break;
2545 case Bytecodes::_lstore : store_local(longType , s.get_index()); break;
2546 case Bytecodes::_fstore : store_local(floatType , s.get_index()); break;
2547 case Bytecodes::_dstore : store_local(doubleType, s.get_index()); break;
2548 case Bytecodes::_astore : store_local(objectType, s.get_index()); break;
2549 case Bytecodes::_istore_0 : store_local(intType , 0); break;
2550 case Bytecodes::_istore_1 : store_local(intType , 1); break;
2551 case Bytecodes::_istore_2 : store_local(intType , 2); break;
2552 case Bytecodes::_istore_3 : store_local(intType , 3); break;
2553 case Bytecodes::_lstore_0 : store_local(longType , 0); break;
2554 case Bytecodes::_lstore_1 : store_local(longType , 1); break;
2555 case Bytecodes::_lstore_2 : store_local(longType , 2); break;
2556 case Bytecodes::_lstore_3 : store_local(longType , 3); break;
2557 case Bytecodes::_fstore_0 : store_local(floatType , 0); break;
2558 case Bytecodes::_fstore_1 : store_local(floatType , 1); break;
2559 case Bytecodes::_fstore_2 : store_local(floatType , 2); break;
2560 case Bytecodes::_fstore_3 : store_local(floatType , 3); break;
2561 case Bytecodes::_dstore_0 : store_local(doubleType, 0); break;
2562 case Bytecodes::_dstore_1 : store_local(doubleType, 1); break;
2563 case Bytecodes::_dstore_2 : store_local(doubleType, 2); break;
2564 case Bytecodes::_dstore_3 : store_local(doubleType, 3); break;
2565 case Bytecodes::_astore_0 : store_local(objectType, 0); break;
2566 case Bytecodes::_astore_1 : store_local(objectType, 1); break;
2567 case Bytecodes::_astore_2 : store_local(objectType, 2); break;
2568 case Bytecodes::_astore_3 : store_local(objectType, 3); break;
2954 _state->store_local(index, get);
2977 state->store_local(idx, new Local(method()->holder(), objectType, idx));
2989 state->store_local(idx, new Local(type, vt, idx));
3771 store_local(callee_state, arg, arg_no);