代码搜索:optimized

找到约 6,562 项符合「optimized」的源代码

代码结果 6,562
www.eeworm.com/read/366702/2866062

c gnu-inline-template-func.c

/* { dg-do compile } */ /* { dg-options "-O" } */ // such that static functions are optimized out /* { dg-final { scan-assembler "func1" } } */ /* { dg-final { scan-assembler "func2" } } */ /* { dg-fi
www.eeworm.com/read/366702/2866214

c gnu-inline-template-class.c

/* { dg-do compile } */ /* { dg-options "-O" } */ // such that static functions are optimized out /* { dg-final { scan-assembler "func1" } } */ /* { dg-final { scan-assembler "func2" } } */ /* { dg-fi
www.eeworm.com/read/366702/2866338

c gnu-inline-namespace.c

/* { dg-do compile } */ /* { dg-options "-O" } */ // such that static functions are optimized out /* { dg-final { scan-assembler "func1" } } */ /* { dg-final { scan-assembler "func2" } } */ /* { dg-fi
www.eeworm.com/read/366702/2872173

c expr2.c

// { dg-do run } // Copyright (C) 2000 Free Software Foundation // by Alexandre Oliva int i, j; const int &f(const int& I, const int& J) { // this must not be optimized to I
www.eeworm.com/read/366702/2882385

c update-tailcall.c

/* { dg-options "-O2 -fdump-tree-tailc -fdump-tree-optimized" } */ __attribute__ ((noinline)) int factorial(int x) { if (x == 1) return 1; else return x*factorial(--x); } int gbl; int
www.eeworm.com/read/366702/2882881

c ssa-pre-15.c

/* { dg-do compile } */ /* { dg-options "-O2 -fdump-tree-optimized" } */ /* Verify we PRE the strlen call, as strlen("") folds to zero. */ extern __SIZE_TYPE__ strlen (const char *); __SIZE_TYPE__
www.eeworm.com/read/366702/2882902

c recip-5.c

/* { dg-options "-O1 -funsafe-math-optimizations -ftrapping-math -fdump-tree-recip -fdump-tree-optimized" } */ /* { dg-do compile } */ /* { dg-warning "-fassociative-math disabled" "" { target *-*-* }
www.eeworm.com/read/366702/2882971

c pr18133-2.c

/* { dg-do compile } */ /* { dg-options "-O1 -fdump-tree-optimized-blocks" } */ int c, d; int bar (int a) { void *p; int b; if (a!=0) { b = 3; p = &&L0; } else {
www.eeworm.com/read/366702/2883006

c 20031106-4.c

/* { dg-do compile } */ /* { dg-options "-O1 -fdump-tree-optimized" } */ extern void link_error (void); /* Check for cprop on fields of the same struct. */ struct s { char d; int a, b; doub
www.eeworm.com/read/366702/2883019

c bool-4.c

/* { dg-do compile } */ /* { dg-options "-O1 -fdump-tree-optimized" } */ int f(_Bool x) { return (x != 0); } /* There should be no != 0 which is produced by the front-end as bool_var != 0 is th