Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions core/src/core/org/jnode/assembler/x86/X86Assembler.java
Original file line number Diff line number Diff line change
Expand Up @@ -2108,15 +2108,15 @@ public abstract void writePOPA()
* Create a push reg32
*
* @param srcReg
* @return The ofset of the start of the instruction.
* @return The offset of the start of the instruction.
*/
public abstract int writePUSH(GPR srcReg);

/**
* Create a push sreg
*
* @param srcReg
* @return The ofset of the start of the instruction.
* @return The offset of the start of the instruction.
*/
public abstract int writePUSH(SR srcReg);

Expand All @@ -2127,7 +2127,7 @@ public abstract void writePOPA()
* @param srcIndexReg
* @param srcScale
* @param srcDisp
* @return The ofset of the start of the instruction.
* @return The offset of the start of the instruction.
*/
public abstract int writePUSH(GPR srcBaseReg, GPR srcIndexReg,
int srcScale, int srcDisp);
Expand All @@ -2137,7 +2137,7 @@ public abstract int writePUSH(GPR srcBaseReg, GPR srcIndexReg,
*
* @param srcReg
* @param srcDisp
* @return The ofset of the start of the instruction.
* @return The offset of the start of the instruction.
*/
public abstract int writePUSH(GPR srcReg, int srcDisp);

Expand All @@ -2146,7 +2146,7 @@ public abstract int writePUSH(GPR srcBaseReg, GPR srcIndexReg,
*
* @param sr
* @param srcDisp
* @return The ofset of the start of the instruction.
* @return The offset of the start of the instruction.
*/
public abstract int writePUSH(SR sr, int srcDisp);

Expand All @@ -2155,7 +2155,7 @@ public abstract int writePUSH(GPR srcBaseReg, GPR srcIndexReg,
* Create a push dword <imm32>
*
* @param imm32
* @return The ofset of the start of the instruction.
* @return The offset of the start of the instruction.
*/
public abstract int writePUSH(int imm32);

Expand Down
12 changes: 6 additions & 6 deletions core/src/core/org/jnode/assembler/x86/X86BinaryAssembler.java
Original file line number Diff line number Diff line change
Expand Up @@ -4208,7 +4208,7 @@ public void writePUNPCKLBW(MMX dstMmx, MMX srcMmx) {
* Create a push dword imm32
*
* @param imm32
* @return The ofset of the start of the instruction.
* @return The offset of the start of the instruction.
*/
public final int writePUSH(int imm32) {
final int rc = m_used;
Expand All @@ -4226,7 +4226,7 @@ public final int writePUSH(int imm32) {
* Create a push srcReg
*
* @param srcReg
* @return The ofset of the start of the instruction.
* @return The offset of the start of the instruction.
*/
public final int writePUSH(GPR srcReg) {
testSize(srcReg, BITS32 | BITS64);
Expand All @@ -4239,7 +4239,7 @@ public final int writePUSH(GPR srcReg) {
* Create a push srcReg
*
* @param srcReg
* @return The ofset of the start of the instruction.
* @return The offset of the start of the instruction.
*/
public final int writePUSH(SR srcReg) {
final int rc = m_used;
Expand Down Expand Up @@ -4268,7 +4268,7 @@ public final int writePUSH(SR srcReg) {
*
* @param srcReg
* @param srcDisp
* @return The ofset of the start of the instruction.
* @return The offset of the start of the instruction.
*/
public final int writePUSH(GPR srcReg, int srcDisp) {
testSize(srcReg, mode.getSize());
Expand All @@ -4284,7 +4284,7 @@ public final int writePUSH(GPR srcReg, int srcDisp) {
*
* @param sr
* @param srcDisp
* @return The ofset of the start of the instruction.
* @return The offset of the start of the instruction.
*/
public final int writePUSH(SR sr, int srcDisp) {
testOperandSize(4, mode.getSize());
Expand All @@ -4305,7 +4305,7 @@ public final int writePUSH(SR sr, int srcDisp) {
* @param srcIndexReg
* @param srcScale
* @param srcDisp
* @return The ofset of the start of the instruction.
* @return The offset of the start of the instruction.
*/
public final int writePUSH(GPR srcBaseReg, GPR srcIndexReg, int srcScale,
int srcDisp) {
Expand Down
Loading