comparison src/share/vm/graal/graalCodeInstaller.cpp @ 7068:263bc2349f15

removed high-level interpreter code from HotSpot fixed VS2010 warnings and javac issues
author Christian Haeubl <haeubl@ssw.jku.at>
date Fri, 23 Nov 2012 14:08:03 +0100
parents bb524ee6b8e9
children c2a3b92c9e79
comparison
equal deleted inserted replaced
7067:7ead04aea1e4 7068:263bc2349f15
678 } 678 }
679 679
680 void CodeInstaller::site_DataPatch(CodeBuffer& buffer, jint pc_offset, oop site) { 680 void CodeInstaller::site_DataPatch(CodeBuffer& buffer, jint pc_offset, oop site) {
681 oop constant = CompilationResult_DataPatch::constant(site); 681 oop constant = CompilationResult_DataPatch::constant(site);
682 int alignment = CompilationResult_DataPatch::alignment(site); 682 int alignment = CompilationResult_DataPatch::alignment(site);
683 bool inlined = CompilationResult_DataPatch::inlined(site); 683 bool inlined = CompilationResult_DataPatch::inlined(site) == JNI_TRUE;
684 oop kind = Constant::kind(constant); 684 oop kind = Constant::kind(constant);
685 685
686 address instruction = _instructions->start() + pc_offset; 686 address instruction = _instructions->start() + pc_offset;
687 687
688 char typeChar = Kind::typeChar(kind); 688 char typeChar = Kind::typeChar(kind);