Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
#define TEN(a) a a a a a a a a a a

intege_mul(iter_t iterations, void* cookie)
{
    struct _state *pState = (struct _state*)cookie;
    register int r = pState->N + 37431;
    register int s = pState->N + 4;
    register int t = r * s * s * s * s * s * s * s * s * s * s - r;

    while (iterations-- > 0) {
            TEN(r *= s;); r -= t;
            TEN(r *= s;); r -= t;
    }
    use_int(r);
}

I see with the older gcc 4.4.6 20120305 (Red Hat 4.4.6-4) it disassemble it like below,it get good optimization


  2f83:       48 83 ec 08             sub    $0x8,%rsp
    2f87:       8b 36                   mov    (%rsi),%esi
    2f89:       8d 86 37 92 00 00       lea    0x9237(%rsi),%eax
    2f8f:       83 c6 04                add    $0x4,%esi
    2f92:       89 f2                   mov    %esi,%edx
    2f94:       0f af d0                imul   %eax,%edx
    2f97:       0f af d6                imul   %esi,%edx
    2f9a:       0f af d6                imul   %esi,%edx
    2f9d:       0f af d6                imul   %esi,%edx
    2fa0:       0f af d6                imul   %esi,%edx
    2fa3:       0f af d6                imul   %esi,%edx
    2fa6:       0f af d6                imul   %esi,%edx
    2fa9:       0f af d6                imul   %esi,%edx
    2fac:       0f af d6                imul   %esi,%edx
    2faf:       0f af d6                imul   %esi,%edx
    2fb2:       29 c2                   sub    %eax,%edx
    2fb4:       48 85 ff                test   %rdi,%rdi
    2fb7:       74 1e                   je     2fd7 
    2fb9:       89 f1                   mov    %esi,%ecx
    2fbb:       0f af ce                imul   %esi,%ecx
    2fbe:       0f af c9                imul   %ecx,%ecx
    2fc1:       0f af ce                imul   %esi,%ecx
    2fc4:       0f af c9                imul   %ecx,%ecx
    2fc7:       0f af c1                imul   %ecx,%eax
    2fca:       29 d0                   sub    %edx,%eax
    2fcc:       0f af c1                imul   %ecx,%eax
    2fcf:       29 d0                   sub    %edx,%eax
    2fd1:       48 83 ef 01             sub    $0x1,%rdi
    2fd5:       75 f0                   jne    2fc7 
    2fd7:       89 c7                   mov    %eax,%edi
    2fd9:       e8 00 00 00 00          callq  2fde 
    2fde:       48 83 c4 08             add    $0x8,%rsp
    2fe2:       c3                      retq

but newer gcc gcc version 4.6.3 do it like below ( -o2 -o3 -o4 -ffast-math doesn't change the things)

  2b40:       8b 16                   mov    (%rsi),%edx
    2b42:       48 89 f8                mov    %rdi,%rax
    2b45:       8d ba 37 92 00 00       lea    0x9237(%rdx),%edi
    2b4b:       83 c2 04                add    $0x4,%edx
    2b4e:       89 f9                   mov    %edi,%ecx
    2b50:       0f af ca                imul   %edx,%ecx
    2b53:       0f af ca                imul   %edx,%ecx
    2b56:       0f af ca                imul   %edx,%ecx
    2b59:       0f af ca                imul   %edx,%ecx
    2b5c:       0f af ca                imul   %edx,%ecx
    2b5f:       0f af ca                imul   %edx,%ecx
    2b62:       0f af ca                imul   %edx,%ecx
    2b65:       0f af ca                imul   %edx,%ecx
    2b68:       0f af ca                imul   %edx,%ecx
    2b6b:       0f af ca                imul   %edx,%ecx
    2b6e:       29 f9                   sub    %edi,%ecx
    2b70:       48 85 c0                test   %rax,%rax
    2b73:       74 55                   je     2bca 
    2b75:       48 83 e8 01             sub    $0x1,%rax
    2b79:       0f 1f 80 00 00 00 00    nopl   0x0(%rax)
    2b80:       0f af fa                imul   %edx,%edi
    2b83:       48 83 e8 01             sub    $0x1,%rax
    2b87:       0f af fa                imul   %edx,%edi
    2b8a:       0f af fa                imul   %edx,%edi
    2b8d:       0f af fa                imul   %edx,%edi
    2b90:       0f af fa                imul   %edx,%edi
    2b93:       0f af fa                imul   %edx,%edi
    2b96:       0f af fa                imul   %edx,%edi
    2b99:       0f af fa                imul   %edx,%edi
    2b9c:       0f af fa                imul   %edx,%edi
    2b9f:       0f af fa                imul   %edx,%edi
    2ba2:       29 cf                   sub    %ecx,%edi
    2ba4:       0f af fa                imul   %edx,%edi
    2ba7:       0f af fa                imul   %edx,%edi
    2baa:       0f af fa                imul   %edx,%edi
    2bad:       0f af fa                imul   %edx,%edi
    2bb0:       0f af fa                imul   %edx,%edi
    2bb3:       0f af fa                imul   %edx,%edi
    2bb6:       0f af fa                imul   %edx,%edi
    2bb9:       0f af fa                imul   %edx,%edi
    2bbc:       0f af fa                imul   %edx,%edi
    2bbf:       0f af fa                imul   %edx,%edi
    2bc2:       29 cf                   sub    %ecx,%edi
    2bc4:       48 83 f8 ff             cmp    $0xffffffffffffffff,%rax
    2bc8:       75 b6                   jne    2b80 
    2bca:       e9 00 00 00 00          jmpq   2bcf 
    2bcf:       90                      nop

question is how could I know the first one use which optimization flag for gcc, actually from the build log they use the same flag, any help?

share|improve this question
What have you tried? Did you do try -O2 and -O3 for example? Also, are these compiled on the same system? – Shahbaz Sep 11 '12 at 14:42

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.