Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

52
votes
8answers
3k views

Which is faster: x<<1 or x<<10?

I don't want to optimize anything, I swear, I just want to ask this question out of curiosity. I know that on most hardware there's an assembly command of bit-shift (e.g. shl, shr), which is a single ...
34
votes
28answers
4k views

Why do you program in assembly?

I have a question for all the hardcore low level hackers out there. I ran across this sentence in a blog. I don't really think the source matters (it's Haack if you really care) because it seems to ...
32
votes
22answers
5k views

How are Operating Systems “Made”?

Creating an OS seems like a massive project. How would anyone even get started? For example, when I pop Ubuntu into my drive, how can my computer just run it? (This, I guess, is what I'd really ...
24
votes
17answers
2k views

Am I “wasting” my time learning C and other low level stuff?

I have just recently started learning C and the reason I did that was because frankly, I consider myself to be of a "less-developer" than the people who know and work with C. Thus I planned to start ...
20
votes
4answers
2k views

Assembly - 32 bit vs 64 bit…?

I'm really wanting to learn assembly. I'm pretty good at c/c++, but want a better understanding of what's going on at a lower level. I realize that asembly related questions have been asked before, ...
20
votes
14answers
2k views

What next generation low level language is the best bet to migrate the code base?

Let's say you have a company running a lot of C/C++, and you want to start planning migration to new technologies so you don't end up like COBOL companies 15 years ago. For now, C/C++ runs more than ...
19
votes
5answers
7k views

What is the purpose of the frame pointer?

I'm a beginner in assembly language and have noticed that the x86 code emitted by compilers usually keeps the frame pointer around even in release/optimized mode, when it could use the EBP register ...
14
votes
10answers
614 views

What specific examples are there of knowing C making you a better high level programmer?

I know about the existance of question such as this one and this one. Let me explain. Afet reading Joel's article Back to Basics and seeing many similar questions on SO, I've begun to wonder what are ...
13
votes
7answers
985 views

Useful bit-twiddling hacks? [closed]

There are lots of complicated bit-twiddling hacks around, see http://graphics.stanford.edu/~seander/bithacks.html. It's astonishing to read about them, but most of the time they're not worth the loss ...
13
votes
3answers
727 views

How to reduce default C++ memory consumption?

I have a server application written in C++. After startup, it uses about 480 KB of memory on x86 Linux (Ubuntu 8.04, GCC 4.2.4). I think 480 KB is an excessive amount of memory: the server isn't even ...
12
votes
7answers
437 views

How are 3D arrays stored in C?

I understand that arrays in C are allocated in row-major order. Therefore, for a 2 x 3 array: 0 1 2 3 4 5 Is stored in memory as 0 1 2 3 4 5 However, what if I have a 2 x 3 x 2 array: 0 1 2 ...
11
votes
7answers
572 views

Which programming languages aren't considered high-level?

In informatics theory I hear and read about high-level and low-level languages all time. Yet I don't understand why this is still relevant as there aren't any (relevant) low-level languages except ...
11
votes
3answers
2k views

Assembly - .data, .code, and registers…?

So this morning I posted a confused question about assembly and I received some great genuine help, which I really appreciate. And now I'm starting to get into assembly and am beginning to understand ...
10
votes
8answers
311 views

Is there a way to enforce specific endianness for a C or C++ struct?

I've seen a few questions and answers regarding to the endianness of structs, but they were about detecting the endianness of a system, or converting data between the two different endianness. What I ...
10
votes
10answers
627 views

What second language to use besides Scala for LowLevel?

I am absolutely happy with Scala and just love it :) But sometimes I really want to go a bit more "low level", without a JVM and using "cool" CPU-Features like SSE etc. So what would be a good ...
10
votes
7answers
753 views

Safer Alternatives to the C Standard Library

The C standard library is notoriously poor when it comes to I/O safety. Many functions have buffer overflows (gets, scanf), or can clobber memory if not given proper arguments (scanf), and so on. ...
9
votes
2answers
115 views

How are functions curried?

I understand what the concept of currying is, and know how to use it. These are not my questions, rather I am curious as to how this is actually implemented at some lower level than, say, Haskell ...
9
votes
2answers
181 views

How to detect disassociation by AP reboot within station in PS mode

I'm writing a fairly low-level driver for a wireless card, and while most of the spec is fairly straightforward, I haven't wrapped my head around a single question yet: If my station is in power-save ...
9
votes
3answers
164 views

How is Object.GetHashCode() implemented in CLR & JVM?

I've been musing about this for some time: how exactly is Object.GetHashCode implemented in the CLR or Java? The contract for this method is that if it is called on the same object instance, it should ...
9
votes
6answers
270 views

Where can I learn about the low-level workings of my computer?

I've been programming for about 11 years by now, and used a lot of different programming languages ranging from Python to C. However, what I'm ashamed of is that I'm still missing a lot of the ...
9
votes
3answers
2k views

Why doesn't Linux use the hardware context switch via the TSS?

I read the following statement: The x86 architecture includes a specific segment type called the Task State Segment (TSS), to store hardware contexts. Although Linux doesn't use hardware ...
8
votes
5answers
155 views

Why is a function call, rather than variable addresses, used to detect stack growth direction?

I read different responses to the question of detecting stack growth detection and I understand that, in modern architectures, stack might grow randomly, might be created off heap, and so on. ...
8
votes
11answers
909 views

Building an Operating System [closed]

I would like to build an operating system, it's one of my dreams. Before that I like to recreate ubuntu or debian or something else. but before that I need some advice and help from all my friends. I ...
8
votes
3answers
267 views

Learning about the low level

I'm interested in learning more about the PC from a lower (machine) level. I graduated from a school which taught us concepts using the Java language which abstracted out that level almost ...
8
votes
11answers
1k views

Would you use num%2 or num&1 to check if a number is even?

Well, there are at least two low-level ways of determining whether a given number is even or not: 1. if (num%2 == 0) { /* even */ } 2. if ((num&1) == 0) { /* even */ } I consider the second ...
8
votes
9answers
999 views

What Skill set should a low level programmer possess?

I am an embedded SW Engineer, with less than 3 yrs of experience. I aim to "sharpen the saw" continuously. I was wondering if there was anything specific to low level programming that C/C++ coders ...
8
votes
3answers
676 views

low level programming: How does the OS start a new thread/process?

Whenever the bootloader loads the operating system there is presumably only ONE program flow active, right? This would mean, one processor holds the instruction pointer and executes the commands it ...
7
votes
5answers
310 views

Allocation latency seems high, why?

I have a (java) application that runs in a low latency environment, it typically processes instructions in ~600micros (+/- 100). Naturally as we've moved further into the microsecond space the things ...
7
votes
19answers
879 views

Is knowing some basic low-level stuff essential to all programmers?

Should all decent programmers be expected to know at least something about low-level stuff such as the following: The gist of how garbage collection is implemented, how memory management works ...
7
votes
5answers
4k views

How do you set strings to uppercase / lowercase in Unicode?

This is mostly a theoretical question I'm just very curious about. (I'm not trying to do this by coding it myself or anything, I'm not reinventing wheels.) My question is how the uppercase/lowercase ...
7
votes
6answers
2k views

CPU Emulation and locking to a specific clock speed

If you had read my other question, you'll know I've spent this weekend putting together a 6502 CPU emulator as a programming exercise. The CPU emulator is mostly complete, and seems to be fairly ...
6
votes
1answer
60 views

Stepwise description of file execution in Windows

What happens, at low-level (stepwise) when a program is executed in windows. In other words the processes that take place from clicking a file to actually reaching execution. Are you aware of any ...
6
votes
12answers
952 views

How “low” does C go as a “low-level” language? [closed]

We often hear that C is a low-level language, but how low does it go? The lowest level I am aware of is memory management using pointers. Are there further levels I have yet to discover? What does ...
6
votes
5answers
173 views

Why are there so many different calling conventions?

Historically, why does it seem like just about everyone and their kid brother defined their own calling conventions? You've got C, C++, Windows, Pascal, Fortran, Fastcall and probably a zillion ...
6
votes
1answer
213 views

primitive ssh connection (lowlevel)

as a small (large) hobby project I've set out to make a (very primitive) ssh-2.0 client in C#. This is to explore and better understand DH and help flourish my encryption familiarities :) As per RFC ...
6
votes
7answers
328 views

Read then conditional write vs. write

Which is, on average, faster - check the value then, if needed, assign, or simply assign? Or, in C++ terms: bool b; if(b) b = false; or b = false; Assume that the if() condition is true with ...
6
votes
5answers
234 views

How do the visually impared handle boot failures and other low-level environments

I know that screen readers and similar software exists to help the blind and visually impaired to use computers when in Windows or other operating systems. I am curious as to what support is ...
6
votes
1answer
884 views

GCC Fixed Size Integers

On the MSVC++ compiler, one can use the __int8, __int16, __int32 and similar types for integers with specific sizes. This is extremely useful for applications which need to work with low-level data ...
5
votes
3answers
149 views

How does a computer draw the screen?

How does a computer draw anything to the screen at the lowest level (nothing about external libraries like X11)? Are there supposed to be assembly commands that do this? How exactly does the CPU ...
5
votes
2answers
113 views

Estimating how processor frequency affects I/O performance

I am doing research about dedicated I/O software that would run on consumer hardware. Essentially it boils down to saving huge data streams for later processing. Right now I am looking for a model to ...
5
votes
3answers
192 views

It is possible to write less than 1 byte to a file

As far as I know the smallest unit in C is a byte. Where does this constraint comes from? CPU? For example, how can I write a nibble or a single bit to a file?
5
votes
4answers
606 views

Divide by 10 using bit shifts?

Is it possible to divide an unsigned integer by 10 by using pure bit shifts, addition, subtraction and maybe multiply? Using a processor with very limited resources and slow divide.
5
votes
8answers
605 views

Why do Java and C# have bitshifts operators?

Is the difference between integer multiply(temporarily forgetting about division) still in favor of shifting and if so how big is the difference? It simply seems such a low level optimization, even ...
5
votes
2answers
908 views

Real low level sound generation in C#?

Anyone knows of a sensible way to create an ARBITRARY sound wave in C# and play it back from the speakers? This issue has been coming back to every now and then for years, I always end up giving it ...
5
votes
1answer
1k views

iPhone iOS4 low-level camera control?

Is there a way to manually set low-level still-camera settings like shutter speed, aperture, or ISO in iOS4 on the iPhone 4? I don't think it exists in the official SDK but perhaps someone has found ...
5
votes
5answers
201 views

need book & web site suggestion for advanced low-level programming

I want to learn all advanced details of low-level programming so i want to be able to Learn advanced c/c++ Optimize my code with and without inline assembly Understand the internals of an exe, dll, ...
5
votes
5answers
558 views

How do I use low-level 8 bit flags as conditionals?

In my keyboard hook, each keypress gets a flag that states if it was injected or not. http://msdn.microsoft.com/en-us/library/ms644967(VS.85).aspx I've distilled a KBDLLHOOKSTRUCT from the lParam. I ...
5
votes
3answers
743 views

How CPUs implement Instructions like MUL/MULT?

In different assembly languages MUL (x86)/MULT (mips) refer to multiplication. It is a black box for the programmer. I am interested in how actually a CPU accomplishes a multiplication regardless of ...
5
votes
3answers
2k views

Bitwise subtraction in Python

This is a follow-up to my question yesterday: CMS kindly provided this example of using bitwise operators to add two numbers in C: #include<stdio.h> int add(int x, int y) { int a, b; ...
5
votes
11answers
3k views

What is the best way to add two numbers without using the + operator?

A friend and I are going back and forth with brain-teasers and I have no idea how to solve this one. My assumption is that it's possible with some bitwise operators, but not sure.

1 2 3 4