Searched defs:jvms (Results 26 - 33 of 33) sorted by relevance

12

/openjdk7/hotspot/src/share/vm/opto/
H A Druntime.cpp1287 JVMState* jvms = youngest_jvms->of_depth(depth); local
1288 ciMethod* m = jvms->has_method() ? jvms->method() : NULL;
1294 int bci = jvms->bci();
H A Dstringopts.cpp207 JVMState* p = _begin->jvms();
209 log->elem("jvms bci='%d' method='%d'", p->bci(), log->identify(p->method()));
216 void convert_uncommon_traps(GraphKit& kit, const JVMState* jvms) { argument
220 // Build a new call using the jvms state of the allocate
226 jvms->bci(), no_memory_effects);
419 call->jvms()->dump_spec(tty); tty->cr();
448 alloc->jvms()->dump_spec(tty); tty->cr();
475 alloc->jvms()->dump_spec(tty); tty->cr();
501 alloc->jvms()->dump_spec(tty); tty->cr();
716 if (Compile::current()->too_many_traps(_begin->jvms()
1273 JVMState* jvms = sc->begin()->jvms()->clone_shallow(C); local
[all...]
H A Dloopnode.cpp1329 const JVMState *jvms = ((CallNode*)call)->jvms(); local
1330 ciMethodData* methodData = jvms->method()->method_data();
1332 ciProfileData* data = methodData->bci_to_data(jvms->bci());
H A Dmacro.cpp92 newcall->set_jvms(oldcall->jvms());
93 for (JVMState *jvms = newcall->jvms(); jvms != NULL; jvms = jvms->caller()) {
94 jvms->set_map(newcall);
95 jvms->set_locoff(jvms->locoff()+jvms_adj);
96 jvms
786 JVMState *jvms = sfpt_done->jvms(); local
835 JVMState *jvms = sfpt->jvms(); local
1867 JVMState* jvms = youngest_jvms->of_depth(depth); local
[all...]
H A Doutput.cpp852 JVMState* youngest_jvms = sfn->jvms();
862 JVMState* jvms = youngest_jvms->of_depth(depth); local
864 ciMethod* method = jvms->has_method() ? jvms->method() : NULL;
867 int num_locs = (method == NULL) ? 0 : jvms->loc_size();
868 int num_exps = (method == NULL) ? 0 : jvms->stk_size();
869 int num_mon = jvms->nof_monitors();
870 assert(method == NULL || jvms->bci() < 0 || num_locs == method->max_locals(),
878 FillLocArray( idx, sfn, sfn->local(jvms, idx), locarray, objs );
884 FillLocArray( idx, sfn, sfn->stack(jvms, id
1006 observe_safepoint(JVMState* jvms, int pc_offset) argument
1038 JVMState* jvms = youngest_jvms->of_depth(depth); local
[all...]
H A Dcompile.cpp750 JVMState* jvms = build_start_state(start(), tf()); local
751 if ((jvms = cg->generate(jvms)) == NULL) {
755 GraphKit kit(jvms);
760 return_values(kit.jvms());
2930 if (m->is_SafePoint() && m->as_SafePoint()->jvms() != NULL)
2958 JVMState *jvms = n->as_SafePoint()->jvms(); local
2959 assert(jvms != NULL, "sanity");
2960 int start = jvms
[all...]
H A DgraphKit.cpp45 GraphKit::GraphKit(JVMState* jvms) argument
50 _exceptions = jvms->map()->next_exception();
51 if (_exceptions != NULL) jvms->map()->set_next_exception(NULL);
52 set_jvms(jvms);
74 JVMState* jvms = this->jvms(); local
75 int stk_size = jvms->stk_size();
76 int stkoff = jvms->stkoff();
87 // Make sure our current jvms agrees with our parse state.
89 JVMState* jvms local
100 JVMState* jvms = this->jvms(); local
265 add_exception_states_from(JVMState* jvms) argument
290 JVMState* jvms = new (C) JVMState(_method, NULL); local
302 JVMState* jvms = sync_jvms(); local
705 JVMState* jvms = this->jvms(); local
809 should_reexecute_implied_by_bytecode(JVMState *jvms, bool is_anewarray) argument
[all...]
H A Dlibrary_call.cpp62 virtual JVMState* generate(JVMState* jvms);
63 virtual Node* generate_predicate(JVMState* jvms);
78 LibraryCallKit(JVMState* jvms, LibraryIntrinsic* intrinsic) argument
79 : GraphKit(jvms),
84 if (!jvms->has_method()) {
100 ciMethod* caller() const { return jvms()->method(); }
101 int bci() const { return jvms()->bci(); }
235 bool is_method_invoke_or_aux_frame(JVMState* jvms);
523 JVMState* LibraryIntrinsic::generate(JVMState* jvms) { argument
524 LibraryCallKit kit(jvms, thi
571 generate_predicate(JVMState* jvms) argument
3955 is_method_invoke_or_aux_frame(JVMState* jvms) argument
[all...]

Completed in 86 milliseconds

12