From: <fd...@us...> - 2009-12-09 22:42:22
|
Revision: 5692 http://jnode.svn.sourceforge.net/jnode/?rev=5692&view=rev Author: fduminy Date: 2009-12-09 22:42:13 +0000 (Wed, 09 Dec 2009) Log Message: ----------- - fixed typo error - added link to the Open Runtime Platform (ORP) project Modified Paths: -------------- trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/X86BytecodeVisitor.java trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/X86BytecodeVisitor.java Modified: trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/X86BytecodeVisitor.java =================================================================== --- trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/X86BytecodeVisitor.java 2009-12-09 20:10:00 UTC (rev 5691) +++ trunk/core/src/core/org/jnode/vm/x86/compiler/l1a/X86BytecodeVisitor.java 2009-12-09 22:42:13 UTC (rev 5692) @@ -73,7 +73,7 @@ /** * Actual converter from bytecodes to X86 native code. Uses a virtual stack to - * delay item emission, as described in the ORP project + * delay item emission, as described in the <a href="http://orp.sourceforge.net/">Open Runtime Platform (ORP)</a> project. * * @author Ewout Prangsma (ep...@us...) * @author Patrik Reali @@ -1647,7 +1647,7 @@ * @see org.jnode.vm.bytecode.BytecodeVisitor#visit_dup2_x2() */ public final void visit_dup2_x2() { - // TODO: port to ORP style + // TODO: port to ORP style (http://orp.sourceforge.net/) // Push all on the stack, since this opcode is just too complicated vstack.push(eContext); @@ -2800,7 +2800,7 @@ if (declClass.isMagicType()) { magicHelper.emitMagic(eContext, method, false, this, currentMethod); } else { - // TODO: port to orp-style + // TODO: port to ORP style (http://orp.sourceforge.net/) vstack.push(eContext); dropParameters(mts, true); @@ -2826,7 +2826,7 @@ /* Get objectref -> EAX */ os.writeMOV(asize, helper.AAX, helper.SP, argSlotCount * slotSize); - /* Get VMT of objectef -> EAX */ + /* Get VMT of objectref -> EAX */ os.writeMOV(asize, helper.AAX, helper.AAX, tibOffset); /* Get entry in VMT -> EAX */ os.writeMOV(asize, helper.AAX, helper.AAX, @@ -3169,7 +3169,7 @@ counters.getCounter("ldiv").inc(); if (os.isCode32()) { - // TODO: port to orp-style + // TODO: port to ORP style (http://orp.sourceforge.net/) vstack.push(eContext); final LongItem v2 = vstack.popLong(); final LongItem v1 = vstack.popLong(); @@ -3228,7 +3228,7 @@ if (os.isCode32()) { final Label curInstrLabel = getCurInstrLabel(); - // TODO: port to orp-style + // TODO: port to ORP style (http://orp.sourceforge.net/) vstack.push(eContext); final LongItem v2 = vstack.popLong(); final LongItem v1 = vstack.popLong(); @@ -3359,7 +3359,7 @@ */ public final void visit_lrem() { if (os.isCode32()) { - // TODO: port to orp-style + // TODO: port to ORP style (http://orp.sourceforge.net/) vstack.push(eContext); Item v2 = vstack.pop(JvmType.LONG); Item v1 = vstack.pop(JvmType.LONG); Modified: trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/X86BytecodeVisitor.java =================================================================== --- trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/X86BytecodeVisitor.java 2009-12-09 20:10:00 UTC (rev 5691) +++ trunk/core/src/core/org/jnode/vm/x86/compiler/l1b/X86BytecodeVisitor.java 2009-12-09 22:42:13 UTC (rev 5692) @@ -74,7 +74,7 @@ /** * Actual converter from bytecodes to X86 native code. Uses a virtual stack to - * delay item emission, as described in the ORP project + * delay item emission, as described in the <a href="http://orp.sourceforge.net/">Open Runtime Platform (ORP)</a> project. * * @author Ewout Prangsma (ep...@us...) * @author Patrik Reali @@ -3504,7 +3504,7 @@ if (declClass.isMagicType()) { magicHelper.emitMagic(eContext, method, false, this, currentMethod); } else { - // TODO: port to orp-style + // TODO: port to ORP style (http://orp.sourceforge.net/) vstack.push(eContext); dropParameters(mts, true); @@ -3979,7 +3979,7 @@ } if (os.isCode32()) { - // TODO: port to orp-style + // TODO: port to ORP style (http://orp.sourceforge.net/) vstack.push(eContext); final LongItem v2 = vstack.popLong(); final LongItem v1 = vstack.popLong(); @@ -4051,7 +4051,7 @@ if (os.isCode32()) { final Label curInstrLabel = getCurInstrLabel(); - // TODO: port to orp-style + // TODO: port to ORP style (http://orp.sourceforge.net/) vstack.push(eContext); final LongItem v2 = vstack.popLong(); final LongItem v1 = vstack.popLong(); @@ -4216,7 +4216,7 @@ } if (os.isCode32()) { - // TODO: port to orp-style + // TODO: port to ORP style (http://orp.sourceforge.net/) vstack.push(eContext); Item v2 = vstack.pop(JvmType.LONG); Item v1 = vstack.pop(JvmType.LONG); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |