Release Candidate for version 13.00 is now available

Started by Pelle, April 02, 2025, 02:27:50 PM

Previous topic - Next topic

Pelle

Quote from: TimoVJL on Yesterday at 09:18:31 AMsomething have changed ?
Yes. Everything (in a sense). New MASM-mode specific expression format, only converted to the older/generic expression format after macro evaluations.

Looks like I can reproduce the problem. I will think about a fix...

EDIT:
This should be the correct form now:
MessageBox EQU <MessageBoxA>
I think some errors comes from the (late) addition of OPTION RIPRELATIVE ...


/Pelle

Vortex

Hi Pelle,

It will be my homework to read the updated manual of Pelles C, no problem. Kindly, could you mention about the amendments of the Poasm syntax? I think I will have to modify my Poasm source code archive.
Code it... That's all...

Pelle

Quote from: Vortex on Yesterday at 11:15:53 AMKindly, could you mentioned about the amendments of the Poasm syntax? I think I will have to modify my Poasm source code archive.
Well, the thing is... it's not so much changed syntax as it is interpretation of the syntax.
The general idea is to find a more predictable internal format, where things not just happen by pure chance...

I think it's mainly about adding < and > in some places where it previously just "happened" to work without them. I also need to fix OPTION RIPRELATIVE handling for INVOKE.

I have collected many (old) X86 examples, but not so many X64 examples. If you have more (different) problems, please post them... (in a new bug thread)
/Pelle

sunshine

#18
Hi Pelle,

I'm glad to see you back on the forum. I just tested this 13.00 RC2 version on Windows 11 24H2 and encountered *** Error code: -1073741819 *** again. Could you fix this in the 13.00 release?

We discuss this in detail in this topic, https://forum.pellesc.de/index.php?topic=11474.0

According to my analysis, `jmp _Exit`, `jmp exit` and `jmp abort` do not push the return address onto the stack, so the stack frame is not aligned to 16 bytes, which causes problems on Windows 11 24H2. Therefore, compiling and running the following three codes will encounter unhandled exceptions.

int main(int argc, char *argv[]) {
exit(0);
return 0;
}

int main(int argc, char *argv[]) {
printf("%s\n", argv[0]);
_Exit(0);
return 0;
}

int main(int argc, char *argv[]) {
printf("%s\n", argv[0]);
abort();
return 0;
}

Pelle

Quote from: sunshine on Yesterday at 01:52:26 PMCould you fix this in the 13.00 release?
Since I basically boycott Windows 11, this seems unlikely. Sorry...

EDIT (after your EDIT): I will look at the alignment problem...
/Pelle

sunshine

Thanks. Another problem also relate to the alignment, you can test it on Windows 10.

void myAssert(void) {
    assert(0);
}

int main(int argc, char *argv[]) {
    myAssert();
}

I found that `myAssert` did not allocate its own stack frame space, but called `__crt_assert` using the CALL instruction.

Vortex

Hi Timo,

This text equate is not correct :

MessageBox EQU MessageBoxA
The Masm reference reads :

QuoteTEXTEQU

Assigns textitem to name. The textitem can be a literal string, a constant preceded by a %, or the string returned by a macro function.

Syntax
name TEXTEQU ⟦textitem⟧
https://learn.microsoft.com/en-us/cpp/assembler/masm/textequ?view=msvc-170

The string literal on the righ side of TEXTEQU should be enclosed between angle brackets. The correct syntax :

MessageBox EQU <MessageBoxA>
Concerning the API function names, all the TEXTEQUs found in the Masm include files are following this rule :

MessageBoxA PROTO STDCALL :DWORD,:DWORD,:DWORD,:DWORD
IFNDEF __UNICODE__
  MessageBox equ <MessageBoxA>
ENDIF
Code it... That's all...

TimoVJL

Time to update pope.exe to point new folder or put it to own folder ;)
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Classes\*\shell\Open With Pope\command]
@="\"c:\\code\\bin64\\pope.exe\" %1"
May the source be with you

Phil

Hi Pelle, very happy to know you are alive. Next Time tell us you will not be here. We imagined a lot of (bad_ things, at leat me.
 ;D  ;D  ;D  ;D  ;D  ;D  ;D  ;D

Pelle

Quote from: sunshine on Yesterday at 01:52:26 PMint main(int argc, char *argv[]) {
    exit(0);
    return 0;
}
I can't see how your first example can fail: clear a register and then jump - no stack operations involved. Stack should be properly aligned when entering main().
/Pelle

Pelle

Quote from: Phil on Today at 01:25:16 PMNext Time tell us you will not be here.
Well, not everything can be perfectly planned. Sometimes life just happens...  :(
/Pelle

Pelle

Quote from: TimoVJL on Today at 11:51:12 AMTime to update pope.exe to point new folder or put it to own folder ;)
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Classes\*\shell\Open With Pope\command]
@="\"c:\\code\\bin64\\pope.exe\" %1"
OK, this should be possible to add...
/Pelle

sunshine

Quote from: Pelle on Today at 02:20:54 PM
Quote from: sunshine on Yesterday at 01:52:26 PMint main(int argc, char *argv[]) {
    exit(0);
    return 0;
}
I can't see how your first example can fail: clear a register and then jump - no stack operations involved. Stack should be properly aligned when entering main().

This time `main` is too simple, so it's optimized assembly code looks like a naked function:
xor ecx,ecx
jmp exit
ret
So, the `jmp exit` in main has no problem. But the `exit` in crt64.lib is not naked, and it jumps to `_Exit`:
push rbx
sub rsp,20
...
jmp _Exit
add rsp,20
pop rbx
ret
I think the `jmp _Exit` here cause rsp to be misaligned.

Pelle

Quote from: sunshine on Today at 02:59:44 PMSo, the `jmp exit` in main has no problem.
Then we agree.

Quote from: sunshine on Today at 02:59:44 PMBut the `exit` in crt64.lib is not naked, and it jumps to the `jmp _Exit` here cause rsp to be misaligned.
Will be solved by a recompile...
/Pelle

sunshine

Yes.

I found pocc can automatically use JMP to replace CALL if the caller is a simple wrapper:
void close(void) {
    CloseHandle(hFile);
}
asm:
mov rcx,hFile
jmp CloseHandle

But the assembly code for calling _Exit, exit, abort and assert is fixed no matter the caller is a simple wrapper or not. Please check this.