A bunch of Shark fixes
Andrew Haley
aph at redhat.com
Tue Dec 16 07:48:04 PST 2008
Andrew Haley wrote:
> This is a combination of endian fixes, wordsize fizes, and a change to work
> with the latest LLVM.
>
> Shark still doesn't work right on x86_64, though: more to do.
Better. Now runs a couple of SPEC benchmarks on x86_64.
Onwards...
2008-12-16 Andrew Haley <aph at redhat.com>
* ports/hotspot/src/share/vm/shark/sharkFunction.cpp
(SharkFunction::CreatePopFrame): Remove _LP64 special-case code.
* ports/hotspot/src/share/vm/shark/sharkBlock.cpp (SharkBlock::parse):
Don't call pop() more than once in an arglist.
diff -r 8af2ec380258 ports/hotspot/src/share/vm/shark/sharkBlock.cpp
--- a/ports/hotspot/src/share/vm/shark/sharkBlock.cpp Fri Nov 21 18:56:47 2008 +0000
+++ b/ports/hotspot/src/share/vm/shark/sharkBlock.cpp Tue Dec 16 15:44:12 2008 +0000
@@ -838,10 +838,12 @@
do_if(ICmpInst::ICMP_NE, SharkValue::null(), pop());
break;
case Bytecodes::_if_acmpeq:
- do_if(ICmpInst::ICMP_EQ, pop(), pop());
+ b = pop(); a = pop();
+ do_if(ICmpInst::ICMP_EQ, b, a);
break;
case Bytecodes::_if_acmpne:
- do_if(ICmpInst::ICMP_NE, pop(), pop());
+ b = pop(); a = pop();
+ do_if(ICmpInst::ICMP_NE, b, a);
break;
case Bytecodes::_ifeq:
do_if(ICmpInst::ICMP_EQ, SharkValue::jint_constant(0), pop());
@@ -862,22 +864,28 @@
do_if(ICmpInst::ICMP_SGE, SharkValue::jint_constant(0), pop());
break;
case Bytecodes::_if_icmpeq:
- do_if(ICmpInst::ICMP_EQ, pop(), pop());
+ b = pop(); a = pop();
+ do_if(ICmpInst::ICMP_EQ, b, a);
break;
case Bytecodes::_if_icmpne:
- do_if(ICmpInst::ICMP_NE, pop(), pop());
+ b = pop(); a = pop();
+ do_if(ICmpInst::ICMP_NE, b, a);
break;
case Bytecodes::_if_icmplt:
- do_if(ICmpInst::ICMP_SLT, pop(), pop());
+ b = pop(); a = pop();
+ do_if(ICmpInst::ICMP_SLT, b, a);
break;
case Bytecodes::_if_icmple:
- do_if(ICmpInst::ICMP_SLE, pop(), pop());
+ b = pop(); a = pop();
+ do_if(ICmpInst::ICMP_SLE, b, a);
break;
case Bytecodes::_if_icmpgt:
- do_if(ICmpInst::ICMP_SGT, pop(), pop());
+ b = pop(); a = pop();
+ do_if(ICmpInst::ICMP_SGT, b, a);
break;
case Bytecodes::_if_icmpge:
- do_if(ICmpInst::ICMP_SGE, pop(), pop());
+ b = pop(); a = pop();
+ do_if(ICmpInst::ICMP_SGE, b, a);
break;
case Bytecodes::_tableswitch:
diff -r 8af2ec380258 ports/hotspot/src/share/vm/shark/sharkFunction.cpp
--- a/ports/hotspot/src/share/vm/shark/sharkFunction.cpp Fri Nov 21 18:56:47 2008 +0000
+++ b/ports/hotspot/src/share/vm/shark/sharkFunction.cpp Tue Dec 16 15:44:12 2008 +0000
@@ -190,10 +190,6 @@
builder()->CreateIntToPtr(
fp, PointerType::getUnqual(SharkType::intptr_type()))));
-#ifdef _LP64
- if (result_slots == 2)
- return builder()->CreateAdd(sp, LLVMValue::jint_constant(wordSize));
-#endif // _LP64
return sp;
}
More information about the distro-pkg-dev
mailing list