vote up 1 vote down star

i am designing a compiler in c . but for certain problems like big integers i have to code in assembly code . so how can i integrate assembly code in c?

i am wrting my code in dev cpp.. which i suppose uses gcc ... in windows..!!..

pls give me instructions for linux too

flag

52% accept rate
please specify what platform you are using, so that we can provide proper assembly syntax. – none Jun 16 at 7:27
2  
There is no standard ISO C way to do this - it depends on the particular C compiler you are using. – simonn Jun 16 at 7:30

3 Answers

vote up 4 vote down check

using asm

Good article : GCC-Inline-Assembly-HOWTO

link|flag
vote up 2 vote down

Use the 'asm' instruction, e.g.

asm("movl %ecx %eax"); /* moves the contents of ecx to eax */
link|flag
vote up 0 vote down

Don't you compile the runtime with your own compiler?

Note that another option is to use an external assembler (like AS). Less optimal, but the principle is portable. (though assembler syntaxes vary wildly)

Our own little compiler (which is GCC linking compatible) used AS for most of its assembler, and only acquired an own internal assembler after 8 year or so.

P.s. if you implement an internal assembler, have a look at NASM, their tables of assembler instructions and their addressing are really clean and can be often get converted (and used for regular updates for new instructions)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.