comparison c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/HotSpotXirGenerator.java @ 1480:2fe369533fed

Additional debug output.
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Sat, 27 Nov 2010 16:43:53 +0100
parents 5571b97fc1ec
children b1f2e875300a
comparison
equal deleted inserted replaced
1479:71cd4b9610eb 1480:2fe369533fed
991 public void emitInline() { 991 public void emitInline() {
992 assert state == State.New; 992 assert state == State.New;
993 993
994 asm.bindInline(patchSite); 994 asm.bindInline(patchSite);
995 asm.mark(MARK_DUMMY_OOP_RELOCATION); 995 asm.mark(MARK_DUMMY_OOP_RELOCATION);
996
996 asm.jmp(patchStub); 997 asm.jmp(patchStub);
997
998 // TODO(tw): Need a safepoint here?
999 998
1000 // TODO: make this more generic & safe - this is needed to create space for patching 999 // TODO: make this more generic & safe - this is needed to create space for patching
1001 asm.nop(5); 1000 asm.nop(5);
1002 1001
1003 state = State.Inline; 1002 state = State.Inline;