Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
01-05-2005, 12:57 AM
|
#1
|
Member
Registered: Jun 2004
Posts: 131
Rep:
|
optcode, assembly Code, or binary?
hi,
let's say i have a program written in C. i compiled the program.
2 things i want to ask:
1. I want to know the above compiled program will become optCode,assembly code or something else?
2. I heard after we compile a program, it will become binary. so what is this binary? how will it execute? does it need to be translated/compiled a step further for the cpu to understand?
Thanks,
|
|
|
01-05-2005, 01:02 AM
|
#2
|
Senior Member
Registered: Jan 2004
Location: Oregon, USA
Distribution: Slackware
Posts: 1,246
Rep:
|
It gets compiled into an ELF Binary
|
|
|
01-05-2005, 01:30 AM
|
#3
|
Member
Registered: Jun 2004
Posts: 131
Original Poster
Rep:
|
so does the cpu understand this ELF Binary directly? or does ELF binary need to be converted a step further to understand?
Thanks,
|
|
|
01-05-2005, 01:32 AM
|
#4
|
Senior Member
Registered: Jan 2004
Location: Oregon, USA
Distribution: Slackware
Posts: 1,246
Rep:
|
It needs to be processed further, which is done by the kernel. It would be a major security flaw if the kernel allowed users to create code that could be run directly through the CPU. Anyone could crash the computer pretty easily by just faking a binary file with malicious opcodes and running it.
Last edited by itsme86; 01-05-2005 at 01:34 AM.
|
|
|
01-05-2005, 03:58 AM
|
#5
|
Member
Registered: Jun 2004
Posts: 131
Original Poster
Rep:
|
Could u tell me the flow/process of this translation?
start from source Code -> ELF binary -> what's next? -> optCode
Thanks,
|
|
|
01-05-2005, 05:59 AM
|
#6
|
Member
Registered: Jan 2004
Location: Munich
Distribution: SuSE 9.2, 10.2, 10.3, knoppix
Posts: 276
Rep:
|
The ELF binary consists of opcodes (BTW: operation code, therefore opcode, not optcode).
Additionally the ELF file consists of various data describing the program code, ELF header
(as in http://www.cs.ucdavis.edu/~haungs/paper/node12.html) being the core
element of this data. Of course the cpu has no idea of how to process the header data,
therefore the ELF file is not executable directly, but only via the kernel.
HTH
|
|
|
All times are GMT -5. The time now is 03:12 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|