comparison src/share/vm/graal/graalCodeInstaller.cpp @ 21030:c8166c23047d

Remove dead code in graalCodeInstaller.cpp
author Gilles Duboscq <gilles.m.duboscq@oracle.com>
date Wed, 15 Apr 2015 17:14:56 +0200
parents 92fc95e8667d
children 5cbaf1e9ff2e 1da7aef31a08
comparison
equal deleted inserted replaced
21029:3fe33ec624ea 21030:c8166c23047d
687 687
688 _dependencies->assert_call_site_target_value(callSite(), methodHandle()); 688 _dependencies->assert_call_site_target_value(callSite(), methodHandle());
689 } 689 }
690 690
691 void CodeInstaller::process_exception_handlers() { 691 void CodeInstaller::process_exception_handlers() {
692 // allocate some arrays for use by the collection code.
693 const int num_handlers = 5;
694 GrowableArray<intptr_t>* bcis = new GrowableArray<intptr_t> (num_handlers);
695 GrowableArray<intptr_t>* scope_depths = new GrowableArray<intptr_t> (num_handlers);
696 GrowableArray<intptr_t>* pcos = new GrowableArray<intptr_t> (num_handlers);
697
698 if (exception_handlers() != NULL) { 692 if (exception_handlers() != NULL) {
699 objArrayOop handlers = exception_handlers(); 693 objArrayOop handlers = exception_handlers();
700 for (int i = 0; i < handlers->length(); i++) { 694 for (int i = 0; i < handlers->length(); i++) {
701 oop exc = handlers->obj_at(i); 695 oop exc = handlers->obj_at(i);
702 jint pc_offset = CompilationResult_Site::pcOffset(exc); 696 jint pc_offset = CompilationResult_Site::pcOffset(exc);