The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
75 views

analysis of cpu cache access time

I have the following program which I with the help of someother on stackoverflow wrote to understand cachelines and CPU caches.I have the result of the calculation posted below. 1 450.0 ...
4
votes
4answers
59 views

Why speed of variable length pipeline is determined by the slowest stage + whats the total execution time of program?

I am new to pipelining and I need some help regarding the fact that The speed of the pipelining is determined by the speed of the slowest stage Not only this, if I am given a 5 stage pipeline ...
0
votes
1answer
41 views

Is float consistent across CPUs? [duplicate]

If I run the exact same sequence of floating point calculations (e.g. in a C program) on two different types of CPUs that both implement the IEEE Standard for Floating-Point Arithmetic (IEEE 754), is ...
0
votes
1answer
27 views

How does Kernel protect Mode Bits (PSW) from being modified by User Program?

I understand that the CPU distinguishes Kernel Mode and User Mode based on the Program Status Word, but suppose that a User Program was attempting to gain unauthorised access to invoke system calls by ...
0
votes
2answers
48 views

Why do we have limited RAM size? [closed]

I am sorry for my obsolescence but kindly help me understand this. Nowadays we have 1 TB hard disk and much more is advancing(Thanks to Moore's Law)..Still we are stuck with 2-6GB RAM... My ...
-1
votes
0answers
35 views

IDA -Hex-Rays Convert set of CPU instructions to a code [closed]

I am a new user to the IDA Hex-Rays tool, I am interesting to understand how do I take set of CPU instructions and actually covert them to human readable code. If I right click it there is option to ...
2
votes
1answer
70 views

In which hazard does cache miss fall into?

There are three types of hazard in the five stage of pipeline:- 1) Control hazard : - if/jump 2) Data hazard :- RAW(read after write), WAR ( write after read), WAW (write after write) 3) structural ...
-2
votes
1answer
25 views

Which version of Firefox Nightly should I install? [closed]

I have a Samsung Galaxy S3, but I really don't understand about mobile architectures. Anybody can explain me? I need to install Fennex on my Android, but I don't know which of these two versions ...
1
vote
0answers
62 views

MIPS Store Byte and Store Halfword Implementation

I'm currently implementing a single cycle MIPS processor and am working on implementing the SB and SH instructions. I've successfully implemented the LB/LBU and LH/LHU instructions using the idea from ...
-2
votes
0answers
25 views

Order of micro-instructions [closed]

I'm making an assembly simulator in C++ for an assignment and I need to know in what order to put these since the order is very important. So my question is: In what order should these ...
0
votes
2answers
60 views

How to indicate that an Android app only supports ARM CPUs?

I have an Android application that only runs on ARM CPUs. This is due to the fact that I have included an ARM executable in the APK. However, after quite a bit of searching, I have been unable to find ...
1
vote
1answer
63 views

Programmatically find the number of cache levels

i am a newbie in c programming . I have an assignment to find the number of data cache levels in the cpu and also the hit time of each levels.I am looking at C Program to determine Levels & Size ...
3
votes
1answer
118 views

How much memory does my CPU support?

This is my second question, following my first (How to detect if CPU is 32 or 64 bit). I know now how to find out if my CPU has a 64 bit architecture. But having a 64-bit architecture, does not mean ...
0
votes
1answer
17 views

Is long defined by system architecture, or is it an IEEE standard?

Working on getting some communication of longs between computers and chips. Was running into some issues and thought it might be because the definition of longs between different system architectures ...
3
votes
1answer
52 views

How can I dynamically hint a branch target to an x64 CPU?

I'd like to know how to write efficient jump tables for x64 processors, either in C, C++ or assembly. The input is known in advance, but impossible to predict algorithmically. Assuming I can look as ...
0
votes
0answers
61 views

How to compute CPU peak performance [closed]

I want to compute the theoretical peak performance for Intel Xeon X5660 2.8GHz Westmere processor(using one thread with icc -O2 turned on). I thought -O2 would automatically turn on SSE, so peak ...
0
votes
0answers
49 views

Unable to run on device - unsupported architecture error

all. I was wondering if someone could help me with my problem. I have a project that I'm working on. I have all the certificates and necessary profiles in place, or at least I’m pretty sure. The ...
1
vote
1answer
54 views

how do you find the sizeof address and data bus

Recently I saw that this is a question which is asked in an interview. how do you find the sizeof address and databus in a system. You can find the sizeof address using sizeof for a pointer. But ...
4
votes
3answers
962 views

How does direct mapped cache work?

I am taking a System Architecture course and I have trouble understanding how a direct mapped cache works. I have looked in several places and they explain it in a different manner which gets me even ...
2
votes
1answer
414 views

How to use Fused Multiply-Add (FMA) instructions with SSE/AVX

I have learned that some Intel/AMD CPUs can do simultanous multiply and add with SSE/AVX: FLOPS per cycle for sandy-bridge and haswell SSE2/AVX/AVX2. I like to know how to do this best in code and I ...
7
votes
2answers
169 views

Cache behaviour of memory-mapped I/O

Does anyone know which type of CPU cache behaviour (e.g. uncacheable write-combining) is assigned to file-backed, memory-mapped I/O on modern x86 systems? Is there any way to detect which is the ...
1
vote
1answer
89 views

State machine event generation in multi-processor architecture

I'm having a small architecture argument with a coworker at the moment. I was hoping some of you could help settle it by strongly suggesting one approach over another. We have a DSP and Cortex-M3 ...
0
votes
2answers
570 views

Program Counter and Instruction Register

Program counter holds the address of the instruction that should be executed next, while instruction register holds the actual instruction to be executed. wouldn't one of them be enough? And what is ...
13
votes
2answers
1k views

What is difference between sjlj vs dwarf vs seh?

Well, that's all. I can't find enough information to decide which compiler should I use to compile my project. There are several programs on different computers simulating a process. On Linux I'm ...
2
votes
1answer
1k views

FLOPS per cycle for sandy-bridge and haswell SSE2/AVX/AVX2

I'm confused on how many flops per cycle per core can be done with Sandy-Bridge and Haswell. As I understand it with SSE it should be 4 flops per cycle per core for SSE and 8 flops per cycle per core ...
1
vote
1answer
92 views

XMM Registers Total or Per Core

In a multicore CPU, does each core have access to it's own bank of XMM registers? For example if a chip is listed as having 16 XMM registers (XMM0-XMM15), is that 16 registers per core or 16 shared? ...
13
votes
3answers
187 views

How would you generically detect cache line associativity from user mode code?

I'm putting together a small patch for the cachegrind/callgrind tool in valgrind which will auto-detect, using completely generic code, CPU instruction and cache configuration (right now only x86/x64 ...
1
vote
1answer
58 views

CPU operations during g++ compiling

I would like to invest in a build server to decrease the time of g++ compilation. Since the sources are parallelizable, our idea is a many-core system. (32-48-64 cores) My question is that what type ...
0
votes
1answer
242 views

Designing ALU Control block for single cycle MIPS

Hope this isn't off topic for Stack Overflow. I was learning about MIPS and I've gotten stuck at this step. This is the truth table for the ALU Control Block. Now this is the first time I'm coming ...
0
votes
0answers
26 views

Resource Dependencies between processes

Given processes are : P1: C=D * E P2: M=G + C P3: A=B + C P4: C=L + M P5: F=G + E The processes are assumed to be single statements for simplicity. Resource Dependence is concerned with ...
4
votes
3answers
175 views

Is it possible to detect processor architecture in java? [duplicate]

Is it possible to detect processor architecture in java? like x86 or sun SPARC, etc? If so, how would I go about doing it?
0
votes
3answers
118 views

Integer determinism [closed]

I just want to ask, are integers deterministic? I know they're supposed to be, but are they the same on all platforms? I did a search on Google for it, but the only thing it returned was how to put ...
1
vote
2answers
57 views

Asembly code on different O.S.s but same processor is same or different?

When a C/C++ code is compiled, it produces assembly code. If I have Windows and Linux dual boot (i.e. exact same processor) and I write a program in C++ on both Windows and Linux then the assembly ...
0
votes
0answers
267 views

How many pipelines are used with intel core i7?

Does anybody know how many pipelines are used in core i7 CPUs (Nehalem Architecture)? I know that there are 14-stages per pipeline, but how many pipelines are there?
0
votes
1answer
66 views

How to Archive for both iOS Devices and iPhone Simulator

I want to build CocosDenshion once and for all, copy the files into /usr/local and use it from which ever project I like. The CocosDenshion target, of the cocos2d Xcode project, builds a static ...
2
votes
1answer
65 views

Does endianess depend on processor or memory?

Endianess determines the ordering of bytes in a word. Let us consider the following memory system : so this is a byte addressable 32 bit memory. If I move a hex value 'val = 0x56789A' into the ...
-1
votes
1answer
178 views

GWAN not recognizing Java

I followed the FAQ, but I'm running Ubuntu 10 server so J6 is the best I can get. When I start gwan 4.2.13 (sudo ./gwan) I get "hello.java: to use .java scripts, install Java" echo $JAVA_HOME ...
1
vote
1answer
62 views

Error in equation of performance prediction time

I have used this equation in order to obtain the execution time: Execution time = Cpu time + memory time then, Execution time = (#instructions * average instruction execution time) + ...
0
votes
3answers
194 views

Loading in 256bit vector register in AVX2 Haswell processor

I want to load a 256 bit YMM register with 32 values, each of length 1 byte. All the intrinsic I looked into load either double word, i.e., 4 byte integers or quad word, i.e., 8 byte values. How to ...
0
votes
1answer
145 views

Is Intel's Last Branch Record feature unique to Intel processors?

Last Branch Record refers to a collection of register pairs (MSRs) that store the source and destination addresses related to recently executed branches. They are supported across Intel Core 2, Intel ...
6
votes
2answers
165 views

Impacts of CPU cache on speed

I just wrote a program to test the impact of CPU cache on speed performance. void* foo(void* ptr) { int* r = (int*) ptr; for (int i = (r - s); i < N; i += NUM_THREADS) *r += ...
0
votes
1answer
350 views

Internal fragmentation [closed]

Smaller block size results in low internal fragmentation as compared larger block sizes. Is it possible to have more internal fragmentation with a smaller Block size as compared to a larger Block size ...
1
vote
3answers
75 views

Are JFE and JNE imperative to assembly, or can I remove them?

I'm laying out an 8-bit processor architecture with 4-bit instructions for fun, and am encountering some limitations with a 4-bit instruction. I'd like to include SHR (shift right) and SHL (shift ...
0
votes
1answer
206 views

How to target multiple architectures using NDK?

Background I've recently started to develop some code using the NDK, and I've thought of a possible portability problem that could occur while developing using NDK. The problem Since NDK uses ...
3
votes
1answer
81 views

POWER8 architecture 'flat' virtual address space

As mentioned here, can anyone explain what is meant by a 'flat' 32 bit space? Text for the lazy: Another interesting feature of the architecture is a virtual address system which maps all ...
1
vote
1answer
73 views

Are `armeabi-v7a` and `armeabi` the only two arm options to put in Application.mk for an Android app?

If not, what other options are there for the arm architectures in the Application.mk file?
0
votes
1answer
96 views

Parallel stadium of Pipeline and Multiplexer 2:1

I have a Spartan-E3 FPGA and I'm realizing a (parallel) pipeline with 4 stages like this: http://i.imgur.com/6CQNk.png The two stages "T3" are the same. T1, T2 and T4 "run" at 50MHz, while T3 runs at ...
1
vote
1answer
92 views

How can I detect architecture with fortran while compiling?

I am actually working on a scientific project in Fortran and the set of employed functions are divided into the 64bit and 32bit version. In addition, some variables are defined with different ...
2
votes
1answer
123 views

Do compilers have certain optimization heuristics to support branch prediction? If not, why not?

This question is mostly a follow up after reading this article by Aater Suleman on improving branch prediction from the software side. The author provides a way to "unroll" conditional statements such ...
0
votes
1answer
239 views

Difference b/w hyper threading and multithreading?

I was wondering if someone could explain me the difference b/w these two ? Has it something to do with intel hardware architecture (HT) ?

1 2 3 4 5 7