-funrolling-loops 옵션이 동작하는건가요?

toy의 이미지

-funroll-loops을 사용해서 컴파일해보았는데...
사용하나 하지않나 실행시간에 변화가 없습니다....
이 옵션이 실제로 동작을 하는것인가요?
아니면 제가 잘못테스트한것일까요...
실행시간이 빨라지는 예제(??)가 있을까여... :oops: :oops:

urmajest의 이미지

urmajest@anecdote urmajest $ cat test.c
#include<stdio.h>

int main()
{
        int i;
        for (i = 0; i < 16; ++i)
                ++i;
        printf("%d\n", i);
        return 1;
}

urmajest@anecdote urmajest $ gcc -O3 -S test.c
urmajest@anecdote urmajest $ cat test.s
        .file   "test.c"
        .section        .rodata.str1.1,"aMS",@progbits,1
.LC0:
        .string "%d\n"
        .text
        .p2align 4,,15
.globl main
        .type   main, @function
main:
        pushl   %ebp
        xorl    %eax, %eax
        movl    %esp, %ebp
        subl    $8, %esp
        andl    $-16, %esp
        .p2align 4,,15
.L6:
        addl    $2, %eax
        cmpl    $15, %eax
        jle     .L6
        movl    $.LC0, (%esp)
        movl    $16, %edx
        movl    %edx, 4(%esp)
        call    printf
        movl    %ebp, %esp
        movl    $1, %eax
        popl    %ebp
        ret
        .size   main, .-main
        .section        .note.GNU-stack,"",@progbits
        .ident  "GCC: (GNU) 3.3.5  (Gentoo Linux 3.3.5-r1, ssp-3.3.2-3, pie-8.7.7.1)"
urmajest@anecdote urmajest $ gcc -O3 -funroll-loops -S test.c
urmajest@anecdote urmajest $ cat test.s
        .file   "test.c"
        .section        .rodata.str1.1,"aMS",@progbits,1
.LC0:
        .string "%d\n"
        .text
        .p2align 4,,15
.globl main
        .type   main, @function
main:
        pushl   %ebp
        movl    $16, %edx
        movl    %esp, %ebp
        subl    $8, %esp
        andl    $-16, %esp
        movl    %edx, 4(%esp)
        movl    $.LC0, (%esp)
        call    printf
        movl    %ebp, %esp
        movl    $1, %eax
        popl    %ebp
        ret
        .size   main, .-main
        .section        .note.GNU-stack,"",@progbits
        .ident  "GCC: (GNU) 3.3.5  (Gentoo Linux 3.3.5-r1, ssp-3.3.2-3, pie-8.7.7.1)"

loop이 사라졌네요 ^^

P.S. 글 올릴 때는 어셈블리 코드를 자세히 안 봤는데, 그리 좋은 예제는 아닌 것 같네요. strength reduction이 대박되는 예제를 실행해보면 시간 차이가 나지 않을까 싶네요.

hanzo69의 이미지

최적화를 한다면 일반적으로 루프를 풀어봤자 큰 차이는 없습니다. 반복횟수가 아주 많은 루프는 풀어서도 안되구요. 오히려 펜티엄2 이상이라면 루프를 돌리는게 풀어서 처리하는 것보다 더 빠를 수 있습니다. history에 기록이 남고 BTB에 들어가기 때문이죠.
더군다나 CPU는 backward conditional jump의 목적지를 기본 예측대상으로 삼기때문에 루프로 인한 점프가 있다 해서 파이프라인이 리셋되거나 하진 않습니다.
단 실행구조상 직렬배치된 다수의 서로 다른 루프 내에 점프 가능성이 낮은 if-continue문들이 여럿 있다면 얘기가 달라지겠지만요.. 하지만 이런 경우엔 루프를 컴파일러가 풀어써도 forward conditional jump 코드를 생성시켜 예측을 실패하게 만들기때문에 효과가 없습니다... 직접 풀어서 써야죠.

쩝.. 얘기가 복잡해지는 듯...

IA-32 Intel

님ㅎ 즐~

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.