Tagged Questions
The cpu-registers tag has no wiki summary.
33
votes
3answers
801 views
If registers are so blazingly fast, why don't we have more of them?
In 32bit, we got 8 "general purpose" registers. With 64bit, the amount doubles, but it seems independent from the 64bit change itself.
Now, if registers are so fast (no memory access), why aren't ...
13
votes
2answers
2k views
Why is the JVM stack-based and the Dalvik VM register-based?
I'm curious, why did Sun decide to make the JVM stack-based and Google decide to make the DalvikVM register-based?
I suppose the JVM can't really assume that a certain number of registers are ...
11
votes
7answers
288 views
How does a computer use just a few registers?
I know a little about assembly, and that there are 4 or 8 or so general purpose registers. How do all the programs on a computer work with just that amount of registers, especially with multithreading ...
9
votes
6answers
752 views
Could this code damage my processor?
A friend sent me that code and alleges that it could damage the processor. Is that true?
void damage_processor() {
while (true) {
// Assembly code that sets the five control registers ...
8
votes
1answer
150 views
x64 Assembly: Is reserving stack space necessary for functions less than four arguments?
Just started learning x64 assembly and I have a question about functions, arguments, and the stack. As far as I understand it, the first four arguments in a function get passed to rcx, rdx, r8, and ...
8
votes
2answers
296 views
What CPU registers are to be restored at the end of an asm procedure in Delphi
When writing a Delphi procedure or function in assembly code, which registers must be saved and restored to the original value at the end of the procedure?
When calling another Delphi procedure or ...
8
votes
2answers
2k 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 ...
7
votes
2answers
240 views
Why is %eax zeroed before a call to printf?
I am trying to pick up a little x86. I am compiling on a 64bit mac with gcc -S -O0.
Code in C:
printf("%d", 1);
Output:
movl $1, %esi
leaq LC0(%rip), %rdi
movl $0, %eax ; WHY?
...
7
votes
5answers
381 views
Most Efficient way to set Register to 1 or (-1)
I am taking an assembly course now, and the guy who checks our home assignments is a very pedantic old-school optimization freak. For example he deducts 10% if he sees:
mov ax, 0
instead of:
xor ...
7
votes
2answers
895 views
Copy from one register to another - VIM
How to copy the contents of one register to another without pasting on clip board? I'd yanked one text and it got yanked in the default " register. Now i wan't to copy another text without ...
7
votes
1answer
418 views
Why did Windows 64 choose to require xmm6 and xmm7 to be saved/restored?
Why did Windows 64 choose to require xmm6 and xmm7 to be saved/restored?
In Windows 32, you could write assembly routines which clobbered xmm0...xmm7. But if you take that same assembly code and run ...
6
votes
4answers
189 views
Does it ever make sense for a compiler to pass a structure like this in a cpu register to a function?
I'd like to know if some kind of structure contains more than one primitive but its total size is less than or equal to size of a single cpu register like a 4-byte register, does it ever make sense ...
6
votes
5answers
268 views
Modern CPU Inner Loop Indirection Optimizations
From http://www.boost.org/community/implementation_variations.html
"... coding differences such as changing a class from virtual to non-virtual members or removing a level of indirection are unlikely ...
6
votes
1answer
177 views
Set CPU register values while debugging managed app in VS
I am debugging a .NET app in Visual Studio 2010 RC using disassembly view. The code is optimized and JIT-ed. At a particular point, I need to change ZR CPU flag so that JNE instruction would take a ...
6
votes
5answers
328 views
when to use registers in C?
I have something like this
register unsigned int a, b, c;
int n;
for (n = 0; n < 10; ++n){
c = a + b
b = a
a = c
array[n] = c;
}
what it does, it doesn't matter. The code runs quickly the way it ...
6
votes
3answers
3k 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:
...
5
votes
2answers
111 views
ARM register r9 in the Linux kernel
The "ARM Architecture Procedure Calling Standard" (AAPCS/EABI) states (5.1.1) that
"The role of register r9 is platform specific."
but
"A virtual platform [...] may designate r9 as an additional ...
5
votes
1answer
306 views
Why is orig_eax provided in addition to eax?
Why is the orig_eax member included in sys/user.h's struct user_regs_struct?
5
votes
5answers
625 views
Why are CPU registers fast to access?
Register variables are a well-known way to get fast access (register int i). But why are registers on the top of hierarchy (registers, cache, main memory, secondary memory)? What are all the things ...
5
votes
5answers
1k 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). ...
5
votes
5answers
1k 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 ...
4
votes
5answers
173 views
Faking register reads in C
I have an existing code base for an embedded system with no operating system. I'm trying to get it to build with the x86 gcc instead of just the cross compiler, as a first step toward being able to ...
4
votes
1answer
110 views
GDB debugging in Linux _x86_64 command info
I am trying to debug my program in linux with gdb.
i want to validate registers values of a particular frame in linux and for that i run two commands;
info reg and info frame
i found that the values ...
4
votes
2answers
280 views
Do I have to initialize the CPU registers in assembly code that is called from C?
I'm reading Paul Carter's pcasm book. It uses NASM, a C driver app that calls my assembly code, and a companion library that makes it easy to do basic I/O in assembly.
This is what my function that ...
4
votes
2answers
201 views
Understanding Memory Models
I've been reading up on memory models recently and I was sort of confused on how this worked.
To quote http://cis.poly.edu/muller/CS623/weakmemory.htm
if processor writes a new X then writes a ...
4
votes
1answer
315 views
How are registers shared among threads?
I know that stacks are per thread, but registers are limited,like on IA32,only 8 registers.
So how are registers shared among threads?
4
votes
2answers
472 views
ARM NEON: What's the difference between vld4_f32 and vld4q_f32?
I'm not in a position to make out the difference between vld4_f32 and vld4q_f32 in ARM NEON instructions.
The confusion started when I raised my coding levels and started looking at the assembly ...
4
votes
2answers
379 views
4
votes
3answers
273 views
Is this a valid C code? [closed]
Possible Duplicate:
What does the code do?
void duff(register char *to, register char *from, register int count)
{
register int n=(count+7)/8;
switch(count%8)
{
case 0: ...
4
votes
7answers
345 views
Is there a standard way to detect bit width of hardware?
Variables of type int are allegedly "one machine-type word in length"
but in embedded systems, C compilers for 8 bit micro use to have int of 16 bits!, (8 bits for unsigned char) then for more bits, ...
3
votes
3answers
84 views
C: How do I simulate 8086 registers?
Ohai,
I'm currently trying to implement an 8086 ASM debugger for learning purposes. Until now, I tried to simulate the 8 and 16 bit registers with char arrays but this approach is driving me nuts, ...
3
votes
1answer
107 views
Optimizing used registers when using inline ARM assembly in GCC
I want to write some inline ARM assembly in my C code. For this code, I need to use a register or two more than just the ones declared as inputs and outputs to the function. I know how to use the ...
3
votes
2answers
188 views
gcc argument register spilling on x86-64
I'm doing some experimenting with x86-64 assembly. Having compiled this dummy function:
long myfunc(long a, long b, long c, long d,
long e, long f, long g, long h)
{
long xx = a * b * ...
3
votes
3answers
307 views
How to read from and write to hardware registers using C#?
I have absolutely no experience or knowledge regarding hardware registers and how to interface with them via code. However, my current C# project requires me to read temperatures from a chip on the ...
3
votes
4answers
150 views
Why number++ uses EAX while number— uses ECX?
;disas for number++
mov eax, [number]
add eax,1
mov [number],eax
;disas for number--
mov ecx, [number]
sub ecx,1
mov [number],ecx
Why number++ uses EAX while number-- uses ECX ?
What's the ...
3
votes
5answers
172 views
Why didn't Intel made the high order part of their CPUs' registers available?
When programming in assembly and doing some sort of string manipulation I use al, ah and sometimes others to hold characters because this allows me to keep more data in my registers. I think this is a ...
3
votes
1answer
1k views
What x86 register denotes source location in movsb instruction?
What x86 register denotes source location in movsb instruction?
3
votes
4answers
290 views
Can gcc/g++ tell me when it ignores my register?
When compiling C/C++ codes using gcc/g++, if it ignores my register, can it tell me?
For example, in this code
int main()
{
register int j;
int k;
for(k = 0; k < 1000; k++)
...
3
votes
2answers
681 views
How do i write Simple inline asm instruction from C on Linux 64 bit?
i am writing a simple c program and my requirement is to print RIP(Instruction Pointer) from some function of the program. i dont want to use ptrace.
the one thing i tried with inline asm is:
...
3
votes
1answer
107 views
How is the implicit segment register of a near pointer determined?
In section 4.3 of Intel 64® and IA-32 Architectures Software Developer's Manual. Volume 1: Basic Architecture, it says:
A near pointer is a 32-bit offset ... within a segment. Near pointers are ...
3
votes
3answers
829 views
testing if a register equals itself in ia32
(ia32) for example,
test $eax, $eax
why would you ever want to do that? it does $eax & $eax, right? shouldn't this always set the flag register to say that they are equal..?
addendum:
so test ...
3
votes
2answers
588 views
How to correctly calculate address spaces?
Below is an example of a question given on my last test in a Computer Engineering course. Anyone mind explaining to me how to get the start/end addresses of each? I have listed the correct answers ...
3
votes
6answers
284 views
assembly registers beginner
So I've been getting into a bit of assembly lately and I'm a beginner so i was wondering if someone could clarify something. I take it every process has it's own set of registers, and each thread can ...
3
votes
2answers
207 views
Vim Register Use in Ex Mode
Potentially 2 questions in one. I would like to know how to reference a register in Ex mode.
For instance, I'm editing a file and I want to save the file with a timestamp (or just datestamp really) ...
3
votes
3answers
3k views
Storing values in HI and LO registers of MIPS
I am writing certain code in MIPS and I've come to the point where the requirement is to store the result, temporarily, in HI and LO special registers (both are 8 bytes wide). These instructions are ...
3
votes
6answers
1k views
Java equivalent of register int?
In C, I can allocate a register for a variable, for example:
register int i = 0;
I am aware that Java is an interpreted language, and is many many abstractions away from the CPU.
Is there any ...
3
votes
4answers
886 views
Register allocation rules in code generated by major C/C++ compilers
I remember some rules from a time ago (pre-32bit Intel processors), when was quite frequent (at least for me) having to analyze the assembly output generated by C/C++ compilers (in my case, ...
2
votes
2answers
70 views
How to print out register offsets in visual studio trace point?
I'm using a visual studio trace point in a function I don't own (part of windows' user32.dll) and I want to print out the function's parameters.
If I had the source code for the function I could use ...
2
votes
3answers
79 views
What is an 8-bit register on a desktop cpu?
Reading through the following instruction table manual I see that integer multiplication is often much faster for 8-bit registers.
In the context of a normal desktop cpu, what does 8-bit register ...
2
votes
1answer
128 views
What do ds:si and es:di mean in assembly?
The movsb (move string, bytes) instruction fetches the byte at address
ds:si, stores it at address es:di, and then increments or decrements
the si and di registers by one.
I know esi,si and ...