代码搜索:optimized
找到约 6,562 项符合「optimized」的源代码
代码结果 6,562
www.eeworm.com/read/109329/15559072
bpg idedemos.bpg
#------------------------------------------------------------------------------
VERSION = BWS.01
#------------------------------------------------------------------------------
!ifndef ROOT
ROOT =
www.eeworm.com/read/104551/15690043
kdevelop speex.kdevelop
Jean-Marc Valin
jean-marc.valin@usherbrooke.ca
$VERSION$
KDevAutoPr
www.eeworm.com/read/162614/5518390
c nothrow1.c
// Test that the nothrow optimization works properly.
// { dg-do compile }
// { dg-options "-O -fdump-tree-optimized" }
extern void blah() throw();
int i, j, k;
int main()
{
try
{
++i;
www.eeworm.com/read/162614/5518540
c empty-1.c
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
struct S {};
S bar (const S &a)
{
S s;
s = a;
return s;
}
/* Test whether memcpy call has been optimized out. */
/* {
www.eeworm.com/read/162614/5529991
c update-cunroll-2.c
/* { dg-options "-O2 -fdump-tree-optimized-blocks" } */
int a[8];
__attribute__ ((noinline))
int t()
{
int i;
for (i = 0; i < 3; i++)
if (a[i])
break;
return i;
}
main ()
{
int i;
for (i
www.eeworm.com/read/162614/5530322
c phi-opt-3.c
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-optimized" } */
int f(int a, int b)
{
if (a == 0)
return 0;
if (a != b)
return a;
return a;
}
/* There should be no ifs as the PHI
www.eeworm.com/read/162614/5530326
c structopt-3.c
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
struct foo
{
int a;
int b;
} temp;
/* We should be able to optimize this to return 11. */
int main(void)
{
temp.a = 5;
tem
www.eeworm.com/read/162614/5530341
c reassoc-4.c
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
float a, b, c, d;
extern int printf (const char *, ...);
int main(void)
{
float e;
float f;
/* We should not be able to
www.eeworm.com/read/162614/5530387
c pr18134.c
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-optimized" } */
int foo (int a)
{
void *p;
if (a!=0)
p = &&L0;
else
p = &&L1;
goto *p;
L0:
return 1;
L1:
return 0;
}
/* Everything shoul
www.eeworm.com/read/162614/5530449
c pr17141-2.c
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
void abort (void);
struct a
{
int i;
} *a;
int f(void)
{
int *ii = &a->i;
void *l;
a->i = 1;
if (*ii)
l = &&l1;