This portal is to open public enhancement requests against IBM Z Software products. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).
We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:
Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,
Post an idea.
Get feedback from the IBM team and other customers to refine your idea.
Follow the idea through the IBM Ideas process.
Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.
IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.
ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.
In most places where the assembler accepts a number, it will also accept an expression, which is always evaluated as a 31-bit signed expression, regardless of the context. The numeric value of a symbol, including one defined with EQU, is always a 31-bit signed number too.
Hexadecimal self-defining constants (as well as binary and character constants) represent signed 31-bit numbers in that context, and cannot go outside that range. Regardless of syntax, supporting values outside that range would require a total rewrite of expression processing and many other areas that currently store numbers as signed fullwords. This might eventually be worth while for 63-bit expressions, but would require a huge amount of work.
Hi John, Thanks for your response. I'd like to make a couple of comments:
First, I think if you separated the 64 bit issue from the 32 bit issue, that would make the 32-bit issue more addressable. Yes, full 64-but support would be perfect. But please don't let "the perfect" be the enemy of "the good".
Second, WRT "It is not at all clear how this could be notated and implemented", I made a suggestion that you do it with a new statement: LEQU. ["L" for logical, i.e. unsigned, value.] Your response did not address that idea.
Third, WRT 64 bit support, the problem with the XD'hhh' idea comes when EQU operands are computations involving values that are not hex strings. I think it would be overly complex and a mistake to make "D-ness" an attribute of the operands when what is really wanted is for D-ness to be the attribute of the result. I think it would be better for the user (and perhaps easier for you all to code) if you implemented a DEQU statement for the 64 bit case. The advantages are:
- It is easier to understand for the user as compared to yet another of the myriads of attributes and operands that already exist.
- I bet it would be easier to code at your end as well.
Best,
Dave