Tagged Questions
34
votes
9answers
14k views
Are there any downsides to passing structs by value in C, rather than passing a pointer?
Are there any downsides to passing structs by value in C, rather than passing a pointer?
If the struct is large, the there is obviously the performancd aspect of copying lots of data, but for a ...
7
votes
6answers
590 views
What could C/C++ “lose” if they defined a standard ABI?
The title says everything. I am talking about C/C++ specifically, because both consider this as "implementation issue". I think, defining a standard interface can ease building a module system on top ...
6
votes
3answers
276 views
Are the default constructor and destructor ever inline?
I'm curious if the default constructor and destructor that the compiler generates are inline or not, because I can justify it either way. On the one hand, you want the default constructor/destructor ...
6
votes
7answers
339 views
Why is Application Binary Interface important for programming
I don't understand why the ABI is important context of developing user-space applications. Is the set of system calls for an operating system considered an ABI? But if so then aren't all the ...
5
votes
2answers
622 views
What is the format of the x86_64 va_list structure?
Anyone have a reference for the representation of va_list in the x86_64 ABI (the one used on Linux)? I'm trying to debug some code where the stack or arguments seem corrupt and it would really help to ...
4
votes
5answers
116 views
Does changing f(mystruct *a) to f(const mystruct *a) breaks API/ABI in C?
1: void f(mystruct *a)
2: void f(const mystruct *a)
Does changing the function signature from 1->2 break API/ABI in C? Changing 2->1 break API/ABI in C?
3
votes
1answer
324 views
How to use c library function fgets in assembly language?
As the title described, how to use c library function fgets in assembly language? Indeed, I want to know how to get the file pointer to stdin. Thanks for your reply.
2
votes
2answers
118 views
ELF generation using libelf hints
I'm trying to generate a simple static ELF using libelf, but I seem to be having troubles.
I do not wish to generate an object file and then link it w/ LD, instead I wish to generate it on my own.
...
2
votes
1answer
96 views
Shared libraries and linking on Linux (elf)
I have read the thread on Creating Library with backward compatible ABI that uses Boost and I'm now trying to understand how I should link my shared libraries to maintain a stable ABI, and avoid ...
2
votes
1answer
346 views
Making syscalls on Linux without a stack
On Linux i386, the int $0x80 syscall ABI makes it easy to perform syscalls without having a valid userspace stack. The vdso/vsyscall interface, on the other hand, requires access to a stack. How do ...
2
votes
6answers
345 views
Does C have a standard ABI?
From a discussion somewhere else:
C++ has no standard ABI
But neither does C, right?
On any given platform it pretty much does. It wouldn't be useful as the lingua franca for ...
1
vote
1answer
88 views
Running executables of different format on any OS
This shouldn't be that hard that one may think, if I got it right. Specifically, I'll begin with iOS and the ELF executable format. Let's clarify that I have a jailbroken iPhone and I don't want to do ...
1
vote
2answers
81 views
programming for a generic ARM environment in C or C++ on X86
I'm looking for a solution to begin my journey in the ARM world's, i want to use the C as my main language and i'd like to create a basic program using the standard I/O library for this environment.
...