About the registers.


 
Thread Tools Search this Thread
Operating Systems Linux About the registers.
# 1  
Old 07-30-2008
Question About the registers.

Is there any way to find how many registers are there in my system.
I am using Intel(R) Pentium(R) 4 CPU 3.00GHz. My OX is GNU linux.
# 2  
Old 07-30-2008
See http://www.intel.com/technology/itj/.../pdf/art_2.pdf

Especially page 6 "register renaming" for the closest thing to a sensible answer to this question. Dozens of other answers are possible depending on what you mean by "register".
# 3  
Old 07-30-2008
I would find out the appropriate documentation from your CPU vendor on that model.

I am not sure of the command:

cat /proc/cpuinfo

will tell you what you need to know.
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Solaris

changing registers of the child process

hi,'m using the 5.11 kernel version on amd64 architecture, 32-bit. i need help on the following issues 1)a proper structure to represent the register structure in the architecture 2)a function which would change the register values of the child when the control is with the parent.. ptrace_setregs... (0 Replies)
Discussion started by: sayaproj
0 Replies

2. Programming

What happen in registers Internaly using as in csl() function

Dear i do not understand that function used for clear screen (given below) cls { union REGS i,o; i.h.ah=6; i.h.al=0; i.h.ch=0; i.h.cl=0; i.h.dh=24; i.h.dl=79; i.h.bh=7; int86(16,&i,&o); } In Above function Registers are used(i think) but why and internally what the do for clearing... (3 Replies)
Discussion started by: brain_full
3 Replies

3. UNIX for Dummies Questions & Answers

how to read and write device registers

hello friends, While in the process of writing device drivers, i am facing problem in reading and writing device registers.I got base address of those mapped device registers. Can i add offset of those registers to that Base address to get access of those... (1 Reply)
Discussion started by: sriram.ec
1 Replies
Login or Register to Ask a Question