Adam K. Johnson

443
Reputation
90 views

Registered User

Name Adam K. Johnson
Member for 1 year
Seen yesterday
Website
Location US
Age 25
Just a poor university student. ^_^
Nov
11
comment What can I use to profile C++ code in Linux?
Oprofile also seems to work better than gprof for functions coded in assembly than many other tools.
Nov
11
comment Python 3 Function List
The official documentation for Python has been good for a while now, and I refer to it frequently.
Nov
6
comment C calling conventions and passed arguments
How C code behaves and how the calling conventions work can be quite different. Here's the System V C calling conventions for i386 if you are curious. It tends to be somewhat vague about certain things, however... sco.com/developers/devspecs/…
Nov
6
comment C calling conventions and passed arguments
A compiler implements a set of calling conventions for other code and languages to operate with it in compiled code that is the essence of a calling convention and it is distinct from the C language itself, as it is a specific architecture implementation. An implementation can do many things as long as it acts the same for C code, but it could be doing any number of things in machine code to get it done. That is where the calling convention comes in. For i386, Linux uses the System V C calling convention, and OS X uses a modified version of it (mostly alignment restrictions).
Nov
6
comment Python “is” operator behaves unexpectedly with integers
The id function is the hash function that is used for dictionaries and such and doesn't have any relation to the "is" operator. The "is" operator is to detect multiple references (aliases) to the same object, not equality or hash equality. For instance for a = b = 20007, a is b should be true. The fact that it works on separate assignments to small integers is just an implementation detail.
Nov
6
comment C calling conventions and passed arguments
Actually, this was from the compiler I was working on, but I was stashing a value that is live later on in the program. I assumed that it was safe and wanted to avoid putting its value on the stack twice (once to save and once for argument passing).
Nov
6
comment C calling conventions and passed arguments
I am not talking about within a language like C or C++ (nor passing by reference/value). I am talking about the actual, runtime stack parameters at the machine level and whether or not those stack locations can be modified be the callee.
Nov
6
comment Why does the Mac ABI require 16-byte stack alignment for x86-32?
It doesn't matter so much that the stack pointer is not aligned at that point because you want the arguments to be aligned in memory. So with your typical stack frame, you are guaranteed that you are 16-byte aligned at 8(%ebp), which is your arguments begin.
Nov
6
revised C calling conventions and passed arguments
added some sample code
Nov
6
comment C calling conventions and passed arguments
I'm not talking about the arguments in C, I am talking about calling C functions from assembly and at the machine level.
Nov
6
asked C calling conventions and passed arguments
Oct
23
revised Underused features of Windows batch files
fixed some awkward wordings, fixed ordering
Oct
23
revised Underused features of Windows batch files
corrected % handling, added info on turning on delayed expansion
Oct
23
comment Underused features of Windows batch files
True, this does need delayed expansion, but you can enable it within your script. I am updating my answer now to include that.
Sep
30
awarded  Scholar
Sep
30
comment Where can I find assembler instruction specification info for the Motorola 68000?
Just what I was looking for. Thanks!
Sep
30
awarded  Student
Sep
30
asked Where can I find assembler instruction specification info for the Motorola 68000?
Sep
7
comment Open multiple Eclipse workspaces on the Mac
The answer is missing some parts of the path. For example, mine is: /Developer/Eclipse/Eclipse.app/Contents/MacOS/eclipse &
Sep
7
accepted OpenGL in Python with Snow Leopard?
Sep
7
answered OpenGL in Python with Snow Leopard?
Sep
2
awarded  Yearling