diff src/share/vm/graal/graalCodeInstaller.cpp @ 7810:5aa05e6f9dee

Remove graalVmIds.cpp. Remove addStub/getStub methods as they were mere skeletons in new implementation.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Mon, 18 Feb 2013 19:02:14 -0800
parents 62bcf515831d
children c58f8f4cda69
line wrap: on
line diff
--- a/src/share/vm/graal/graalCodeInstaller.cpp	Mon Feb 18 19:01:40 2013 -0800
+++ b/src/share/vm/graal/graalCodeInstaller.cpp	Mon Feb 18 19:02:14 2013 -0800
@@ -362,7 +362,7 @@
   const char* cname = java_lang_String::as_utf8_string(_name);
   blob = BufferBlob::create(strdup(cname), &buffer); // this is leaking strings... but only a limited number of stubs will be created
   IF_TRACE_graal_3 Disassembler::decode((CodeBlob*) blob);
-  id = VmIds::addStub(blob->code_begin());
+  id = (jlong)blob->code_begin();
 }
 
 void CodeInstaller::initialize_fields(oop comp_result, methodHandle method) {