Bug 463027 - broken check for MPX instruction support in assembler
Summary: broken check for MPX instruction support in assembler
Status: RESOLVED FIXED
Alias: None
Product: valgrind
Classification: Developer tools
Component: general (show other bugs)
Version: 3.21 GIT
Platform: Other Other
: NOR normal
Target Milestone: ---
Assignee: Julian Seward
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2022-12-14 04:26 UTC by Samuel Bronson
Modified: 2022-12-23 13:52 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Samuel Bronson 2022-12-14 04:26:24 UTC
SUMMARY
There is a syntax error in the "if amd64 assembler knows the MPX instructions" check.
The assembler never gets to see it.

STEPS TO REPRODUCE
1. On amd64, follow the build instructions from README, up through step 4

OBSERVED RESULT
The configure output includes the line:
checking if amd64 assembler knows the MPX instructions... no

EXPECTED RESULT
With a sufficiently-new assembler, it should instead be:
checking if amd64 assembler knows the MPX instructions... yes

SOFTWARE/OS VERSIONS
gcc (Debian 10.2.1-6) 10.2.1 20210110
GNU assembler (GNU Binutils for Debian) 2.35.2

ADDITIONAL INFORMATION
The relevant portion of config.log is:
configure:12750: checking if amd64 assembler knows the MPX instructions
configure:12773: gcc -c   conftest.c >&5
conftest.c: In function 'main':
conftest.c:51:11: error: expected ':' or ')' before 'bnd'
   51 |           bnd jmp  end\n"
      |           ^~~
conftest.c:51:23: error: stray '\' in program
   51 |           bnd jmp  end\n"
      |                       ^
conftest.c:51:25: warning: missing terminating " character
   51 |           bnd jmp  end\n"
      |                         ^
conftest.c:51:25: error: missing terminating " character
conftest.c:52:23: error: stray '\' in program
   52 |           foo: bnd ret\n"
      |                       ^
conftest.c:52:25: warning: missing terminating " character
   52 |           foo: bnd ret\n"
      |                         ^
conftest.c:52:25: error: missing terminating " character
conftest.c:53:19: warning: missing terminating " character
   53 |           end: nop");
      |                   ^
conftest.c:53:19: error: missing terminating " character
   53 |           end: nop");
      |                   ^~~
configure:12773: $? = 1

However, it's actually just missing some starting " characters.
See attached patch. The test even passes!
Comment 1 Paul Floyd 2022-12-14 09:13:14 UTC
Thanks for the analysis, but it looks like you forgot to add the patch.
Comment 2 Paul Floyd 2022-12-23 13:52:14 UTC
commit 316282cd3b357fe94cac466754adb42c17fad7d2 (HEAD -> master, origin/master, origin/HEAD)
Author: Paul Floyd <pjfloyd@wanadoo.fr>
Date:   Fri Dec 23 14:49:39 2022 +0100

    Bug 463027 - broken check for MPX instruction support in assembler