代码搜索:optimizations

找到约 908 项符合「optimizations」的源代码

代码结果 908
www.eeworm.com/read/162614/5530325

c pr22051-2.c

/* { dg-do compile } */ /* { dg-options "-O2 -fdump-tree-optimized -w" } */ void *arf (); int foo() { void (*q)(void); int r = q; if (r != 0) return 1; else return 2; } /* The
www.eeworm.com/read/162614/5530339

c recip-5.c

/* { dg-options "-O1 -funsafe-math-optimizations -ftrapping-math -fdump-tree-recip -fdump-tree-optimized" } */ /* { dg-do compile } */ /* Test the reciprocal optimizations together with trapping math
www.eeworm.com/read/162614/5530525

c pr23109.c

/* { dg-do compile } */ /* { dg-options "-O2 -funsafe-math-optimizations -fdump-tree-recip -fdump-tree-lim" } */ double F[2] = { 0., 0. }, e = 0.; int main() { int i; double E, W, P, d; /
www.eeworm.com/read/229812/4742107

txt gblopt.txt

Notes on Possible Global Optimizations ====================================== Global optimizations will be profitable when cross-module information can be exploited: essentially, any optimization
www.eeworm.com/read/424812/10410420

txt run_options.txt

#-- Synplicity, Inc. #-- Version Synplify for Lattice 8.8L2 #-- Project file F:\new_uart\uart0_2\uart0_3\run_options.txt #-- Written on Sat Mar 07 01:34:55 2009 #add_file options add_file -ve
www.eeworm.com/read/400994/11566235

txt run_options.txt

#-- Synplicity, Inc. #-- Version 9.0 #-- Project file C:\temp\xp2_demo\run_options.txt #-- Written on Tue Jan 15 11:47:27 2008 #add_file options add_file -vhdl -lib work "E:/ispTOOLS7_0/ispcp
www.eeworm.com/read/127088/14380024

win makefile.win

# Project: JLee's DNS Resolver # Makefile created by Dev-C++ 4.9.8.7 CPP = g++.exe CC = gcc.exe WINDRES = windres.exe RES = dns_private.res OBJ = dns.o $(RES) LINKOBJ = dns.o $(RES) LI
www.eeworm.com/read/162614/5530707

c 20031201-1.c

/* PR optimization/12628 */ /* The following test used to ICE in init_alias_analysis because the given command line options meant that reg_scan wasn't (re)run before the jump bypassing pass. */
www.eeworm.com/read/405053/11472691

makefile

CC = gcc AR = ar CFLAGS = -Wall -fomit-frame-pointer # For StrongARM CPUs CFLAGS += -mcpu=strongarm # Note that -O2 doesn't produce as good results as the -O with all the # specific optimisations b
www.eeworm.com/read/162614/5528911

c fold-div-1.c

/* { dg-do compile } */ /* { dg-options "-funsafe-math-optimizations -fdump-tree-gimple" } */ float f(float x) { return x/2 + x/3; } float g(float x) { return 2/x + 3/x; } float h(float x) {