It's known that CF indicates unsigned carry out and OF indicates signed overflow. So how does an assembly program differentiate between unsigned and signed data since it's only a sequence of bits? (Through additional memory storage for type information, or through positional information or else?) And could these two flags be used interchangeably?
|
|
The distinction is in what instructions are used to manipulate the data, not the data itself. Modern computers (since circa 1970) use a representation of integer data called two's-complement in which addition and subtraction work exactly the same on both signed and unsigned numbers.
The answer to your question is that assembly code has several ways of distinguishing signed from unsigned data:
|
||
|
|
|
Do not try to opcode the sign. That is impossible. Instead, only try to realize the truth: there is no sign. Then you'll see it is not the sign-type that differentiates, it is only yourself. |
|||
|
|
|
|
There is no way to ask the CPU to test and return the type of a byte/word/long. 0xFF may hold "255" or "-1" it all depends on what type of byte your program says it is. Constructs such as "type", "signess" etc only exist in higher level languages such as Java and not at the CPU level. In the end everything is a byte to the CPU it is up to our programs to organise and know how to intrepret and manipulate these values... The CPU flags found in the status do not enforce any paradigm it is up to your code to test and react accordingly. On Intel CPUs the MMX and FPU registers actually occupy the same registers. It is thus impossible to mix FPU and MMX type instructions at the same time, because values from one operation will trash the other. Programs that need either typically complete their actions in one mode eg issuing FPU instructions and then might start MMX but never both at the same time. |
||
|
|
|
|
There are different opcodes for dealing with signed and unsigned data. If a program wants to compare two signed integers, it uses the opcodes Similarly, there are also the The signed opcodes test the flags ZF, OF, and SF. The unsigned opcodes test the flags ZF, CF, and SF. See the 80386 Programmer's Reference Manual sections on the JCC instructions and the setCC instructions for the exact conditions tested. |
||
|
|
|
|
It doesn't. The flags just become set whenever the condition occurs. The programmer is supposed to know what types of ints he's working with and from that know which flag to examine if he cares. |
||
|
|
|
|
Usually assembly programs carry no special information around with variables to indicate whether they are signed or unsigned. It's the programmer's job to know when to check which flags and when to use which conditionals (i.e. using JA instead of JG). So you need to know what type of variable you're about to work with so that you know which commands to use. This is why most programming languages give warnings when programmers use signed/unsigned types interchangeably (i.e. without an explicit cast), since this can be done in the hardware but can yield unexpected results. |
||
|
|
|
|
I believe it's based on the operation you're using that determines which flag to use. Eg. signed vs unsigned add. So I suppose you can play with the memory with any command you'd like. |
||
|
|
