comparison src/cpu/x86/vm/vm_version_x86.cpp @ 1748:3e8fbc61cee8

6978355: renaming for 6961697 Summary: This is the renaming part of 6961697 to keep the actual changes small for review. Reviewed-by: kvn, never
author twisti
date Wed, 25 Aug 2010 05:27:54 -0700
parents f55c4f82ab9d
children f95d63e2154a
comparison
equal deleted inserted replaced
1747:53dbe853fb3a 1748:3e8fbc61cee8
593 593
594 stub_blob = BufferBlob::create("getPsrInfo_stub", stub_size); 594 stub_blob = BufferBlob::create("getPsrInfo_stub", stub_size);
595 if (stub_blob == NULL) { 595 if (stub_blob == NULL) {
596 vm_exit_during_initialization("Unable to allocate getPsrInfo_stub"); 596 vm_exit_during_initialization("Unable to allocate getPsrInfo_stub");
597 } 597 }
598 CodeBuffer c(stub_blob->instructions_begin(), 598 CodeBuffer c(stub_blob);
599 stub_blob->instructions_size());
600 VM_Version_StubGenerator g(&c); 599 VM_Version_StubGenerator g(&c);
601 getPsrInfo_stub = CAST_TO_FN_PTR(getPsrInfo_stub_t, 600 getPsrInfo_stub = CAST_TO_FN_PTR(getPsrInfo_stub_t,
602 g.generate_getPsrInfo()); 601 g.generate_getPsrInfo());
603 602
604 get_processor_features(); 603 get_processor_features();