Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
19answers
4k views

Porting 32 bit C++ code to 64 bit - is it worth it? Why?

I am aware of some the obvious gains of the x64 architecture (higher addressable RAM addresses, etc)... but: What if my program has no real need to run in native 64 bit mode. Should I port it ...
25
votes
11answers
1k views

How does an assembly instruction turn into voltage changes on the CPU?

I've been working in C and CPython for the past 3 - 5 years. Consider that my base of knowledge here. If I were to use an assembly instruction such as MOV AL, 61h to a processor that supported it, ...
19
votes
5answers
4k views

L1 memory cache on Intel x86 processors

I am trying to profile and optimize algorithms and I would like to understand the specific impact of the caches on various processors. For recent Intel x86 processors (e.g. Q9300), it is very hard to ...
15
votes
6answers
2k views

How is CPU usage calculated?

I hope this is the right place to ask this question, as I think it is related to algorithms and performance. On my desktop, I have a little widget that tells me my current CPU usage. It also shows ...
14
votes
3answers
857 views

.csproj's platform specific ItemGroup works for assembly references but not content includes?

Since we have three assemblies that come in explicit x86 and x64 versions, I've edited the corresponding .csproj file(s) to use, for example, a block like this: <ItemGroup Condition=" ...
14
votes
9answers
5k views

Which CPU architectures support Compare And Swap (CAS)?

just curious to know which CPU architectures support compare and swap atomic primitives?
13
votes
12answers
2k views

Why is a boolean 1 byte and not 1 bit of size?

In C++, Why is a boolean 1 byte and not 1 bit of size? Why aren't there types like a 4-bit or 2-bit integers? I'm missing out the above things when writing an emulator for a CPU
12
votes
4answers
2k views

How are interrupts handled by dual processor machines?

I have an idea of how interrupts are handled by a dual core CPU. I was wondering about how interrupt handling is implemented on a board with more than one physical processor. Is any of the ...
11
votes
5answers
562 views

Would there be any point in designing a CPU that could handle IL directly?

If I understand this correctly: Current CPU developing companies like AMD and Intel have their own API codes (the assembly language) as what they see as the 2G language on top of the Machine code (1G ...
11
votes
6answers
2k views

How can I determine for which platform an executable is compiled?

I have a need to work with Windows executables which are made for x86, x64, and IA64. I'd like to programmatically figure out the platform by examining the files themselves. My target language is ...
9
votes
1answer
153 views

What exactly is a dual-issue processor?

I came across several references to the concept of a dual issue processor (I hope this even makes sense in a sentence). I can't find any explanation of what exactly dual issue is. Google gives me ...
9
votes
5answers
244 views

On what architectures is calculating invalid pointers unsafe?

int* a = new int[5] - 1; This line by itself invokes undefined behavior according to the C++ standard because a is an invalid pointer and not one-past-the-end. At the same time this is a zero ...
9
votes
4answers
6k views

Setup targeting both x86 and x64?

I have a program that requires both x64 and x86 dlls (it figures out which ones it needs at run time), but when trying to create a setup, it complains: File AlphaVSS.WinXP.x64.dll' targeting ...
8
votes
1answer
182 views

How has CPU architecture evolution affected virtual function call performance?

Years ago I was learning about x86 assembler, CPU pipelining, cache misses, branch prediction, and all that jazz. It was a tale of two halves. I read about all the wonderful advantages of the lengthy ...
7
votes
5answers
1k views

What's the purpose of the rotate instructions (ROL, RCL on x86)?

I always wondered what's the purpose of the rotate instructions some CPUs have (ROL, RCL on x86, for example). What kind of software makes use of these instructions? I first thought they may be used ...
7
votes
5answers
18k views

What is a CPU thread and how is it related to logical threads in code?

I have been seeing in the literature for some of the newer CPU's such as the Intel Xeon "Nehalem-EX" as having 8 cores and 16 threads. What are they talking about here? I saw mention of this in ...
6
votes
7answers
355 views

Advantages of a 64 bit system

From a developer perspective i am trying to understand , what is the selling point of a 64-bit system ? I understand that more registers are at your disposal , more memory can be allocated to a ...
6
votes
1answer
914 views

Determining the CPU architecture of a static library (LIB) on Windows

I just built libpng on a 64-bit Windows machine using VS2008. It produces a libpng.lib file inside the \projects\visualc71\Win32_Lib_Release directory (Configuration used being "LIB Release"). I ...
6
votes
8answers
397 views

Why are there only four registers?

Why are there only four registers in the most common CPU (x86)? Wouldn't there be a huge increase in speed if more registers were added? When will more registers be added?
6
votes
5answers
430 views

Why is my C++ app faster than my C app (using the same library) on a Core i7

I have a library written in C and I have 2 applications written in C++ and C. This library is a communication library, so one of the API calls looks like this: int source_send( source_t* source, ...
5
votes
2answers
104 views

Lightweight method to use Amd64 instructions under 32-bit Windows?

For some CPU-bound code using 64-bit variables, it is beneficial to use the Amd64 instruction set rather than x86. How can it be done under 32-bit Windows (e.g. Windows XP SP3)? Of course I assume a ...
5
votes
3answers
219 views

What instruction set is used by Tilera microprocessors?

Is there any documentation on this? I'm trying to get a handle on the feasibility of writing a compiler for the Tilera architecture.
5
votes
2answers
2k views

List of supported native code of Android phones

Is there any list of Android phones and their supported native code? For example I want to know which phones support only armeabi and which support armeabi-v7a. The latter is important because I'm ...
5
votes
1answer
754 views

How can I perform 64-bit division with a 32-bit divide instruction?

This is (AFAIK) a specific question within this general topic. Here's the situation: I have an embedded system (a video game console) based on a 32-bit RISC microcontroller (a variant of NEC's ...
5
votes
5answers
618 views

Why are CPU registers fast to access?

Register variables are a well-known way to get fast access (register int i). But why are registers on the top of hierarchy (registers, cache, main memory, secondary memory)? What are all the things ...
5
votes
2answers
994 views

Cache bandwidth per tick for modern CPUs

What is a speed of cache accessing for modern CPUs? How many bytes can be read or written from memory every processor clock tick by Intel P4, Core2, Corei7, AMD? Please, answer with both theoretical ...
5
votes
2answers
330 views

How does a hardware trap in a three-past-the-end pointer happen even if the pointer is never dereferenced?

In his November 1, 2005 C++ column, Herb Sutter writes ... int A[17]; int* endA = A + 17; for( int* ptr = A; ptr < endA; ptr += 5 ) { // ... } [O]n some CPU architectures, including ...
5
votes
8answers
251 views

What part (specifically) of a native executable makes it non-portable?

This sounds like a daft question at first, but bear with me. It is common knowledge that binaries for one CPU architecture do not run on others. So for example it is impossible to run (without a ...
5
votes
5answers
3k views

Reading Program Counter directly

Can the program counter on Intel CPU's can be read directly (that is without 'tricks') in kernel mode or some other mode? Thanks :-).
4
votes
1answer
219 views

cpu vs gpu - when cpu is better [closed]

I know many examples when GPU is much faster than CPU. But exists algorithms (problems) which are very hard to parallelise. Could you give me some examples or tests when CPU can overcome GPU ? Edit: ...
4
votes
4answers
319 views

cisc versus risc

If you were writing a a textbook, and you needed to decide on a CPU design to talk about certain issues, would you choose RISC or CISC? Pros for RISC, well, you know: cleaner, easier, and so on. Cons ...
4
votes
2answers
197 views

Understanding Memory Models

I've been reading up on memory models recently and I was sort of confused on how this worked. To quote http://cis.poly.edu/muller/CS623/weakmemory.htm if processor writes a new X then writes a ...
4
votes
2answers
466 views

What is the exact meaning of 'N' bit processor ? , clarification for freescale arch

While reading(one frescale processor manual) i stuck some where , which specifies that it is a 32 bit processor. May i know the exact meaning and logic behind that? Update: Does it specify its ALU ...
4
votes
3answers
1k views

Right way to detect cpu architecture?

I'm attempting to detect the right cpu architecture for installing either a x86 msi or x64 msi file. If I'm right, for the msi I need the os cpu architecture I'm not totally sure if my way is right ...
4
votes
2answers
195 views

Double(s) across different cpu architectures?

Is it OK to send over network double floating point values (adjusted for correct byte order of course) and using them interchangeably on different cpu architectures, specifically i386, mips (couple of ...
4
votes
4answers
965 views

Finding prime factors to large numbers using specially-crafted CPUs

My understanding is that many public key cryptographic algorithms these days depend on large prime numbers to make up the keys, and it is the difficulty in factoring the product of two primes that ...
4
votes
6answers
503 views

Are Harvard architecture computers immune to arbitrary code injection and execution attacks?

Harvard architecture computers have separate code and data memories. Does this make them immune to code injection attacks (as data cannot be executed as code)?
4
votes
7answers
218 views

Do certain languages have intrinsic processor architectures by-design

I'm curious to know if certain languages are, by design, better suited for certain processor architectures. When I say architectures, I don't mean ARM/PPC/MIPS but more stack, accumulator, or register ...
4
votes
7answers
985 views

On 32-bit CPUs, is an 'integer' type more efficient than a 'short' type?

On a 32-bit CPU, an integer is 4 bytes and a short integer is 2 bytes. If I am writing a C/C++ application that uses many numeric values that will always fit within the provided range of a short ...
3
votes
2answers
204 views

out-of-order versus in-order execution in the context of code written in C\C++

Could anyone explain to me(in plain english) out-of-order versus in-order execution? I'm reading some theoretical texts on that and I feel that I can't quite grasp it. A small example in the context ...
3
votes
2answers
265 views

Can a TLB hit lead to page fault in memory?

In UC Berkley Video lectures on OS by John Kubiatowicz (Prof. Kuby) available on web, he mentioned that TLB hit doesn't mean that corresponding page is in main memory . Page fault can still occur. ...
3
votes
1answer
118 views

streaming loads and non USWC memory

I just read this rather interesting article, Copying Accelerated Video Decode Frame Buffers. Where they explain how to do copying from USWC memory as fast as possible using streaming loads. My ...
3
votes
2answers
495 views

Definition/meaning of Aliasing? (CPU cache architectures)

I'm a little confused by the meaning of "Aliasing" between CPU-cache and Physical address. First I found It's definition on Wikipedia : However, VIVT suffers from aliasing problems, where several ...
3
votes
3answers
228 views

Why are there so many CPU architectures: x86, x64, x87, etc…?

Is the main different just instruction set or something more essential??
3
votes
2answers
48 views

If I wanted to develop algorithms for a purely RISC machine, what should my development environment be?

Short of buying a SPARC processor, what emulators are there? Thanks.
3
votes
2answers
92 views

Unary NOT/Integersize of the architecture

From "Mastering Perl/Chapter 16/Bit Operators/Unary NOT,~": The unary NOT operator (sometimes called the complement operator), ~, returns the bitwise negation, or 1's complement, of the value, ...
3
votes
2answers
533 views

Which ARM architectures have Out-Of-Order-Execution?

Which ARM architectures have Out-Of-Order-Execution?
3
votes
4answers
151 views

Does developing applications for SPARC, IBM power CPU require separate compliers, other than x86, x86-64 targets?

Does developing applications for SPARC, IBM PowerPC require separate compliers, other than x86 and x86-64 targets? If true, how easliy could x86, x64 binaries in Linux be ported to SPARC and PowerPC? ...
3
votes
1answer
195 views

What is the difference between short adressing mode and long addressing mode

While going through some data sheets of a processor architecture , i saw the terms, short addressing mode and long addressing mode Can anybody give me the general idea of the terms(not needed to be ...
3
votes
5answers
449 views

What kind of data processing problems would CUDA help with?

I've worked on many data matching problems and very often they boil down to quickly and in parallel running many implementations of CPU intensive algorithms such as Hamming / Edit distance. Is this ...

1 2 3 4