Tagged Questions

40
votes
10answers
2k views

Why is x86 ugly? aka Why is x86 considered inferior when compared to others?

Recently I've been reading some SO archives and encountered statements against x86 architecture. Why do we need different CPU architecture for server & mini/mainframe & mixed-core? says "PC ...
8
votes
5answers
2k views

How cache memory works?

Today when I was in computer organization class, teacher talked about something interesting to me. When it comes to talk about Why cache memory works, he said that: for (i=0; i<M; i++) for(j=0; ...
6
votes
2answers
92 views

Optimize this assembly code

I'm taking a Computer Architecture course right now, and we're going over basic R-type and I-type instructions (also, this is a RISC architecture), etc. I can't seem to figure out how to optimize this ...
5
votes
4answers
293 views

Why do 64 bit systems have only a 48 bit address space?

I an book i read the following: The 32-bit processors have 2^32 possible addresses, while curent 64-bit processors have a 48-bit address space My expectation was that if its a 64-bit process the ...
5
votes
6answers
123 views

Representation of a Kilo/Mega/Tera Byte

I was getting a little confused with the representation of different units of bytes. It is accepted throughout that 1 byte = 8 bits However, in a lot of sources I have seen that 1 kiloByte = 2^ ...
5
votes
3answers
221 views

how do addressing modes work on a physical level?

I'm trying to learn this basic thing about processors that should be taught in every CS department of every university. Yet i can't find it on the net (Google doesn't help) and i can't find it in my ...
4
votes
2answers
229 views

Where to get all versions of x86 aka IA32 Instruction Set Architecture manuals

I know about Intel 64 and IA-32 Architectures Software Developer's Manuals. I also know that these cover all the legacy & old processor ISAs. But I want the individual manual (the one that ...
4
votes
8answers
1k views

Why do we need different CPU architecture for server & mini/mainframe & mixed-core?

I was just wondering what other CPU architectures are available other than INTEL & AMD. So, found List of CPU architectures on Wikipedia. It categorizes notable CPU architectures into following ...
4
votes
4answers
508 views

how can we find that this processor supports how much memory?

I have just started the Assembly language programming and in the first lecture our teacher told us about intel 8080 and intel 8085 and he said there was 64k memory with these processor. Now i want to ...
4
votes
3answers
1k views

CPU Switches from User mode to Kernel Mode : What exactly does it do? How does it makes this transition?

CPU Switches from User mode to Kernel Mode : What exactly does it do? How does it makes this transition? EDIT: Even if it is architecture dependent please provide me with an answer. The architecture ...
4
votes
2answers
396 views

What about Programmer “Invisible” registers?

These are "Programmer Visible" x86-64 registers: What about the invisible registers? Just now I learned that MMU registers, Interrupt Descriptor Table (IDT) uses these invisible registers. I'm ...
3
votes
2answers
201 views

Vectored interrupts

What is the difference between vectored and non vectored interrupts? I thought all interrupts had to be vectored interrupts... After all don't all interrupts have a vector number and thus a vector ...
3
votes
2answers
129 views

Burst Mode Definition

I was reading up on computer organization and in the Memory chapter it mentions that "SDRAMS have several modes of operation, for example burst modes of different lengths can be specified." Can ...
2
votes
1answer
250 views

Pointer based array access in MIPS

What do we mean by the pointer based array access in MIPS?
2
votes
4answers
1k views

Which Computer Organization & Architecture book is good for me?

I'm always interested in learning the inner working of things. I started with C programming and then learnt Operating systems (from stallings) and then linkers & loaders and then assembly language ...
1
vote
1answer
72 views

Meaning of: Array1 : .word 0:20

What is the meaning of : Array1 : .word 0:20
1
vote
2answers
349 views

Need little more clarification on address lines of processor

Yesterday, while I was pondering over Why can’t OS use entire 64-bits for addressing? I found another interesting thing. Lets take Intel Core 2 Duo Processor for example. From "4.2 Alphabetical ...
1
vote
3answers
467 views

16 bit processor , memory addressing and memory cells

Suppose the accumulater register of the processor is of 16 bit , now we can call this processor as 16 bit processor, that is this processor supports 16 bit addressing. now my question is how we can ...
1
vote
3answers
166 views

Dummy operations handling of Intel processor

Admittedly, I have a bit silly question. Basically, I am wondering if there are some special mechanisms provided by Intel processors to efficiently execute a series of dummy, i.e., NOP instructions? ...
0
votes
1answer
27 views

By Pass Method for Instruction Pipeline

Hi Suppose the below instruction : R1<-M1 R2<-M2 R3<-R1*R2 M3<-R3 Now We Will create a pipeline like below pipeline without bypassing:[XXX : bubble] IF1 ID1 EX1 ME1 WB1 IF2 ID2 EX2 ...
0
votes
1answer
214 views

Clear instruction in MIPS: clear $t0

what does the instruction clear $t0 perform in MIPS?I mean what is the actual MIPS instruction for this pseudo-instruction?
0
votes
1answer
359 views

Segment register, IP register and memory addressing issue!

In the following text I asked two questions and I also described that what I know about these question so that you can understand my thinking. Your precious comments about the below text are required. ...
0
votes
5answers
395 views

Few questions on number representation in computer?

I started learning Assembly language from the book: Introduction to 80x86 Assembly Language and Computer Architecture This is from the Representing Data in a Computer We have looked at two ...