vote up 1 vote down star

I'm trying to learn mips assembly at the moment. To that end, I wrote a very simple c program...

int main(){}

...and compiled it on a mips machine with the -S option to gcc to generate assembly code. Here is what the beginning of the main function looks like:

    .ent   main
main:
    .frame $fp,8,$31
    .mask  0x40000000,-8
    .fmask 0x00000000,0

I then tried to figure out what this all means by looking at the documentation for gas, but I couldn't find any of these directives there. So what do they mean? Where can I find more information?

flag

62% accept rate
Perhaps your copy of gcc is configured to use some other assembler (not gas)? What does this say "gcc -c -Wa,-version -xc - < /dev/null" ? – sigjuice Apr 8 at 21:05
My copy of gcc is the one that comes with netbsd and it does use gas. I ran your command to confirm. I still think it is odd that gas doesn't document those and doesn't even link to some other place where they are documented. – Kim Apr 9 at 6:38

2 Answers

vote up 2 vote down check

take a look here

link|flag
vote up 1 vote down

Take a look on this:

http://www.cs.unibo.it/~solmi/teaching/arch%5F2002-2003/AssemblyLanguageProgDoc.pdf

Good luke !

Best regards, Marcos.

link|flag

Your Answer

Get an OpenID
or

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