summaryrefslogtreecommitdiff
path: root/asm/listing.h
diff options
context:
space:
mode:
authorH. Peter Anvin (Intel) <hpa@zytor.com>2019-08-19 13:09:46 -0700
committerH. Peter Anvin (Intel) <hpa@zytor.com>2019-08-19 13:11:34 -0700
commitb83621350cd69649782426ebcfa4c0f26f9aa939 (patch)
tree366e4cf736fdd7292eacf709f5a8a74c517eb61e /asm/listing.h
parent2586cee21dfc45c24b1bec47c0e0f7ddfae3dca8 (diff)
downloadnasm-b83621350cd69649782426ebcfa4c0f26f9aa939.tar.gz
listing: add the -L+ option to enable all listing options
-L+ or %pragma list options ++ will enable all possible listing options. Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
Diffstat (limited to 'asm/listing.h')
-rw-r--r--asm/listing.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/asm/listing.h b/asm/listing.h
index 6156df5a..351fc69e 100644
--- a/asm/listing.h
+++ b/asm/listing.h
@@ -130,7 +130,11 @@ extern uint64_t list_options, active_list_options;
* (with two bits left over for future use! This isn't particularly
* efficient code, but just about every instance of it should be
* fed a constant, so the entire function can be precomputed at
- * compile time.
+ * compile time. The only cases where the full computation is needed
+ * is when parsing the -L option or %pragma list options, neither of
+ * which is in any way performance critical.
+ *
+ * The character + represents ALL listing options.
*
* This returns 0 for invalid values, so that no bit is accessed
* for unsupported characters.
@@ -149,6 +153,8 @@ static inline const_func uint64_t list_option_mask(unsigned char x)
if (x > '9')
return 0;
x = x - '0' + 26*2;
+ } else if (x == '+') {
+ return ~UINT64_C(0);
} else {
return 0;
}