Tagged Questions
The computer-architecture tag has no wiki summary.
93
votes
4answers
3k views
What happens when a computer program runs?
I know the general theory but I can't fit in the details.
I know that a program resides in the secondary memory of a computer. Once the program begins execution it is entirely copied to the RAM. Then ...
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 ...
24
votes
8answers
959 views
System where 1 byte != 8 bit?
All the time I read sentences like
don't rely on 1 byte being 8 bit in size
use CHAR_BIT instead of 8 as a constant to convert between bits and bytes
et cetera. What real life systems are ...
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
2answers
154 views
Does anyone know any Compiler which optimizes code for energy consumption for embedded devices?
It's a general view that a faster code will consume less power because you can put CPU in idle state for more time but when we talk about energy consumption, is following a possibility:
Suppose ...
9
votes
5answers
2k views
What are some examples of non-von Neumann architectures?
If I understand correctly modern computers are modeled after the von Neumann architecture. I have sometimes seen reference to alternatives, but haven't really seen any very good descriptions of how ...
8
votes
5answers
1k views
Turing Model Vs Von Neuman model
First some background (based on my understanding)..
The Von-Neumann architecture describes the stored-program computer where instructions and data are stored in memory and the machine works by ...
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; ...
7
votes
4answers
152 views
Choosing an investigation topic of Modern Computer Systems Design
I have been asked in one of my university modules to perform a short (10-15 pages) investigation and review on one topic of modern computer systems design. We are given some guide topics such as;
...
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 ...
6
votes
6answers
182 views
C volatile variables and Cache Memory
Cache is controlled by cache hardware transparently to processor, so if we use volatile variables in C program, how is it guaranteed that my program reads data each time from the actual memory address ...
6
votes
7answers
600 views
What is the relationship between Turing Machine & Modern Computer?
Possible Duplicate:
What is the relationship between Turing Machine & Modern Computer ?
I heard a lot that modern computers are based on Turing machine. I just cannot build a bridge ...
6
votes
5answers
723 views
Understanding word alignment
I understand what it means to access memory such that it is aligned but I don’t understand why this is necessary. For instance, why can I access a single byte from an address 0x…1 but I cannot access ...
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
458 views
Some doubts regarding diagram of Von Neumann Arcitechture
Well I cant understand the above diagram of Von Neumann architecture [Cited from wikipedia] and not even sure whether it is correct. Some obvious doubts that I have -
How can ALU communicate with ...
5
votes
5answers
212 views
Where can I start looking to better understand how computers work?
I've been trying to figure out what computer field I want to go into later on in life. College is just around the corner for me and I've considered looking into Computer Engineering, Software ...
5
votes
4answers
2k views
maximum memory which malloc can allocate!
I was trying to figure out how much memory I can malloc to maximum extent on my machine
(1 Gb RAM 160 Gb HD Windows platform).
I read that maximum memory malloc can allocate is limited to physical ...
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 ...
5
votes
10answers
6k views
Where are variables in C++ stored?
Where are variables in C++ stored?
Inside the RAM or the processor's cache?
4
votes
2answers
191 views
what is the best way to learn Verilog?
I had finished reading Verilog Quick Start by James Lee.
I had also taken a look for the projects at opencores.com, so I decided to plan to design my own CPU for me to practice and I want to make an ...
4
votes
4answers
141 views
Off-chip memcpy?
I was profiling a program today at work that does a lot of buffered network activity, and this program spent most of its time in memcpy, just moving data back and forth between library-managed network ...
4
votes
3answers
455 views
Interrupt masking: why?
I was reading up on interrupts. It is possible to suspend non-critical interrupts via a special interrupt mask. This is called interrupt masking. What i dont know is when/why you might want to or need ...
4
votes
4answers
483 views
Basic question regarding ROM based executable
I have basic doubt regarding executable stored in ROM.
As I know the executable with text and RO attributes is stored in ROM. Question is as ROM is for Read Only Memory, what happens if there is ...
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
507 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 ...
4
votes
3answers
555 views
How does the NX flag work?
Could you please explain what the NX flag is and how it works (please be technical)?
3
votes
2answers
64 views
How does the Dalvik VM save and restore its registers between method calls?
Semantically, the Dalvik VM has a fresh set of registers for each method, and does not have instructions to access the call stack. But in terms of its implementation, the registers should be saved ...
3
votes
2answers
69 views
MIPS memory execution prevention
I'm doing some research with the MIPS architecture and was wondering how operating systems are implemented with the limited instructions and memory protection that mips offers. I'm specifically ...
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 ...
3
votes
3answers
192 views
Is wxPython good for a Hardware Simulator?
For a computer architecture assignment, I am trying to replace a C++ library called "Sim" with something in Python.
I am already using MyHDL for the simulator, but the C++ program has a nice ...
3
votes
3answers
234 views
Why are GPIOs used?
I have been searching around [in vain] for some good links/sources to help understand GPIOs and why they are used in embedded systems. Can anyone please point me to some ?
3
votes
1answer
328 views
How do I figure out a computer's architecture from the command line?
Is there a standard program I can use to find out whether I'm on an i386 or x86, 32-bit or 64-bit machine? I'm on a Unix box.
3
votes
5answers
262 views
How is 6 trits equal to 9.5 bits?
This reddit thread says 6 trits ~ 9.5 bits.
How is 6 trits ~ 9.5 bits?
3
votes
4answers
394 views
Is this a mistake in my Computer Architecture book?
I'm working on my HW for computer architecture and I came across the following problem:
A = 247
B = 237
1) Assume A and B are signed 8-bit integers stored in two's complement format. ...
3
votes
7answers
2k views
How are bits stored in memory? (In chunks? Can there be bits of multiple sizes stored toghether?)
I used to think that each memory location contains 8, 16, 32 or 64 bits. So 0101 would be stored in an 8 bit machine as 00000101 (sign extended if it was negative). This was all fine and dandy until I ...
2
votes
2answers
56 views
Does a dual-core ARM7 provide cache coherency between the cores?
On Intel processors, each core has its own L1 an L2 caches. Is this true on the ARM dual-core processors? If so, can I rely on cache coherency between the two cores, such that a thread running on core ...
2
votes
1answer
64 views
Direct Map Cache and cache misses
I am working on my homework, but I am not sure how to calculate the total cache misses. I have been trying to understand it but it just is not making sense to me. I am given some Mips code and I need ...
2
votes
2answers
173 views
MIPS Pipeline Forwarding (double data hazard)
In the Patterson & Hennessy Book:
But can't this be handled as a EX hazard:
Why is forwarding done in the MEM stage? And how? With 1 stall (for the 2nd add, I will need result from EX in ...
2
votes
2answers
57 views
Finding offset from a code snippet
I am a bit stuck up with the following question,
Consider the following MIPS code and answer the questions that follow.
addi $t1, $s0, 400
loop: lw $s1, 0($s0)
add $s2, $s2, $s1
lw $s1, 4($s0)
...
2
votes
2answers
165 views
Confused between Temporal and Spatial locality in real life code
I was reading this question, I wanted to ask more about the code that he showed i.e
for(i = 0; i < 20; i++)
for(j = 0; j < 10; j++)
a[i] = a[i]*j;
The questions are,
I ...
2
votes
1answer
464 views
CPU Cache implementation in C or C++ or SystemC
I need a very basic C or C++ source code of CPU cache. Google didnt help me find a proper one.
The implementation only needs to provide the most fundamental functionality of a cache.
For ex, in C++:
...
2
votes
2answers
215 views
MIX or MMIX - what is the best
Hi my first question …
I start reading ‘The Art of Computer Programming’. I know it’s hard. First I decide to lean the language of book – I start with MIX. I made some exercises and I think I can ...
2
votes
9answers
408 views
Can we have a computer with just registers as memory?
Registers are the fastest memories in a computer. So if we want to build a computer with just registers and not even caches is it possible? I think of even replacing the magnetic discs with registers ...
2
votes
1answer
250 views
2
votes
2answers
218 views
How much time does it take to fetch one word from memory?
Taking Peter Norvig's advice, I am pondering on the question:
How much time does it take to fetch one word from memory, with and without a cache miss?
(Assume standard hardware and architecture. ...