Lines Matching refs:cvf
266 compiledVFrame* cvf = chunk->at(i);
267 assert (cvf->scope() != NULL,"expect only compiled java frames");
268 GrowableArray<MonitorInfo*>* monitors = cvf->monitors();
1047 static void collect_monitors(compiledVFrame* cvf, GrowableArray<Handle>* objects_to_revoke) {
1048 GrowableArray<MonitorInfo*>* monitors = cvf->monitors();
1081 compiledVFrame* cvf = compiledVFrame::cast(vf);
1083 while (!cvf->is_top()) {
1084 collect_monitors(cvf, objects_to_revoke);
1085 cvf = compiledVFrame::cast(cvf->sender());
1087 collect_monitors(cvf, objects_to_revoke);
1111 compiledVFrame* cvf = compiledVFrame::cast(vf);
1113 while (!cvf->is_top()) {
1114 collect_monitors(cvf, objects_to_revoke);
1115 cvf = compiledVFrame::cast(cvf->sender());
1117 collect_monitors(cvf, objects_to_revoke);
1260 compiledVFrame* cvf = compiledVFrame::cast(vf);
1262 nmethod* nm = cvf->code();
1264 ScopeDesc* trap_scope = cvf->scope();