4
votes
5answers
256 views
C++ CPU Register Usage
In C++, local variables are always allocated on the stack. The stack is a part of the allowed memory that your application can occupy. That memory is kept in your RAM (if not swapped out to disk). …
0
votes
1answer
67 views
Show CPU Registers in VS2008 watch window
Is it possible to add CPU registers (RAX, EAX, flags, etc etc) with a specific syntax in a watch window so they are displayed like regular variables and printed in base-10 (or hex if Hexadecimal …
1
vote
1answer
72 views
CPUID on Intel i7 processors
I'm having an issue with my CPUID-based code on newer i7-based machines. It is detecting the CPU as having a single core with 8 HT units instead of 4 cores each with 2 HT units.
I must be …
0
votes
1answer
95 views
Cannot access label through segment registers, error in assembly
INCLUDE Irvine16.inc
.data
byteArray BYTE 6 DUP(?)
listSize = ($ - byteArray)
aSum WORD 0
soffset = 0
.code
main PROC
mov ax, @data
mov ds, ax
mov cx, listSize
Loop1:
…
1
vote
2answers
86 views
Is there a way to store part of a 16 bit value in an 8 bit variable in Assembly?
I created one variable that stores a 16 bit variable, and I'm tring to store the upper half in an 8 bit variable.
How do I do this?
EDIT: its for the IA-32, and I don't think i can use registers
…
1
vote
2answers
116 views
What is the practical difference between the SI and DI registers?
I don't get what is the difference.
7
votes
2answers
404 views
What does the PIC register (%ebx) do?
I have written a "dangerous" program in C++ that jumps back and forth from one stack frame to another. The goal is to be jump from the lowest level of a call stack to a caller, do something, and then …
3
votes
5answers
318 views
Terminology: “registers” in assembly language programming
I've heard the terminologies: register, hardware register, program register,register file.
What's the difference between all these? And in assebmly, what is the type of the EAX register? Program …
1
vote
1answer
116 views
Embedding assembly in C with compiler finding registers for you
When embedding assembly code into a C/C++ program, you can avoid clobbering registers by saving them with a push instruction (or specify clobber list of compiler supports it).
If you are including …
1
vote
2answers
177 views
Callee save with the caller passing the used registers?
In compiler design, why instead of having a caller or callee register saving arrangement, couldn't the caller pass its list of used registers (that it would push in case of a caller saving …
5
votes
3answers
652 views
What’s a good example of register variable usage in C?
I'm reading through K&R and came to the small section on register variables, and was wondering if people here have some good examples of this put into practice.
From section 4.7 in K&R:
…
1
vote
7answers
332 views
Reading from 16-bit hardware registers
On an embedded system we have a setup that allows us to read arbitrary data over a command-line interface for diagnostic purposes. For most data, this works fine, we use memcpy() to copy data at the …
1
vote
3answers
269 views
Can I control register allocation in g++?
I have highly optimized piece of C++ and making even small changes in places far from hot spots can hit performance as much as 20%. After deeper investigation it turned out to be (probably) slightly …
0
votes
2answers
115 views
Can increment of a register be used to determine the clock rate?
Can increment of a register (in a loop) be used to determine the (effective) clock rate?
I've naturally assumed it can, but I was commented that Cpu's may implant Super-scalar techniques that make …
1
vote
2answers
141 views
Debugging managed code: Viewing return value
On Win32, with unmanaged code, the return value is usually stored in the EAX register. This is useful when the program doesn't save the return value in a variable. This can easily be seen in the …
