Tagged Questions

6
votes
10answers
6k views

Where are variables in C++ stored?

Where are variables in C++ stored? Inside the RAM or the processor's cache?
2
votes
2answers
226 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. ...
1
vote
1answer
71 views

Problem in translating from MIPS to C

I was trying to solve this homework assignment but was unable to come up with a solution. Below is the problem, Translate the following MIPS code into a high-level language program. Assume that ...
1
vote
3answers
42 views

Evaluating the operation of Assembly code

This is my homework assignment. Describe as concisely as possible what the following MIPS code achieves? Assume that register $8 holds base address of array A. addi $10, $0, 0 L1: lw $16, ...
1
vote
1answer
229 views

What is the difference between Registers and Temporary Registers?

Valgrind uses an intermediate code representation to let us instrument binary code so that we don't have to deal with programming language level constructs. In the process of converting binary code ...
0
votes
1answer
46 views

Problem in values of registers

I was trying to solve this homework assignment but was unable to come up with a solution. Below is the problem, Translate this code into MIPS machine once_more: lw $5, 48($6) sub $5, $5, ...
0
votes
1answer
34 views

Calculating address of labels

I am stuck with solving my assignment. Here is what it states, Consider the following fragment of MIPS assembly-language code: start: add $t1, $t2, $t3 addi $t1, $t1, 10 add ...
0
votes
3answers
252 views

Books for studying the basics of computer architecture? [closed]

Possible Duplicate: Which Computer Organization & Architecture book is good for me? I want to better understand how computers work, how computers process my programs, how processors do ...
0
votes
1answer
53 views

64bit Applications and Memory Limits

Can someone explain to me how 64 bit applications, a 64bit OS, and a 64 bit CPU fit together to establish how much memory is addressable by some application? For example, how is addressable memory ...