/external/llvm/docs/HistoricalNotes/ |
D | 2001-06-01-GCCOptimizations2.txt | 10 If we were to reimplement any of these optimizations, I assume that we 14 Static optimizations, xlation unit at a time: 17 Link time optimizations: 20 Of course, many optimizations could be shared between llvmopt and 24 > BTW, about SGI, "borrowing" SSA-based optimizations from one compiler and 31 optimizations are written in C++ and are actually somewhat 35 > But your larger point is valid that adding SSA based optimizations is 46 optimization" happens right along with other data optimizations (ie, CSE 49 As far as REAL back end optimizations go, it looks something like this:
|
D | 2001-06-01-GCCOptimizations.txt | 7 Take a look at this document (which describes the order of optimizations 31 I've marked optimizations with a [t] to indicate things that I believe to 36 optimizations are done on the tree representation]. 38 Given the lack of "strong" optimizations that would take a long time to 41 SSA based optimizations that could be adapted (besides the fact that their
|
D | 2001-01-31-UniversalIRIdea.txt | 17 features as well as low-level machine-independent optimizations (like PRE) 23 compiler could then focus on language-specific analyses and optimizations.
|
/external/srtp/ |
D | config.log | 80 configure:1746: gcc -Wall -O4 -fexpensive-optimizations -funroll-loops conftest.c >&5 90 configure:1840: gcc -o conftest -Wall -O4 -fexpensive-optimizations -funroll-loops conftest.c >&5 94 configure:1895: gcc -c -Wall -O4 -fexpensive-optimizations -funroll-loops conftest.c >&5 98 configure:1948: gcc -c -Wall -O4 -fexpensive-optimizations -funroll-loops conftest.c >&5 116 configure:2124: gcc -c -Wall -O4 -fexpensive-optimizations -funroll-loops conftest.c >&5 124 configure:2179: gcc -c -Wall -O4 -fexpensive-optimizations -funroll-loops conftest.c >&5 176 configure:2799: gcc -c -Wall -O4 -fexpensive-optimizations -funroll-loops conftest.c >&5 183 configure:2907: gcc -o conftest -Wall -O4 -fexpensive-optimizations -funroll-loops conftest.c >&5 192 configure:2970: gcc -c -Wall -O4 -fexpensive-optimizations -funroll-loops conftest.c >&5 201 configure:2970: gcc -c -Wall -O4 -fexpensive-optimizations -funroll-loops conftest.c >&5 [all …]
|
/external/proguard/src/proguard/ant/ |
D | ConfigurationTask.java | 61 … configuration.optimizations = extendClassSpecifications(configuration.optimizations, in appendTo() 62 … this.configuration.optimizations); in appendTo() 215 configuration.optimizations = extendFilter(configuration.optimizations, in addConfiguredOptimization()
|
/external/proguard/src/proguard/gui/ |
D | OptimizationsDialog.java | 189 public void setFilter(String optimizations) in setFilter() argument 191 StringMatcher filter = optimizations != null && optimizations.length() > 0 ? in setFilter() 192 new ListParser(new NameParser()).parse(optimizations) : in setFilter()
|
D | GUIResources.properties | 98 optimizations = Optimizations key 160 Specify the types of optimizations to be performed. 162 A filter for the names of the optimizations to be performed. 164 Select from the currently available optimizations... 458 selectOptimizations = Select optimizations... 499 Perform peephole optimizations for variable loading and storing. 501 Perform peephole optimizations for arithmetic instructions. 503 Perform peephole optimizations for casting operations. 505 Perform peephole optimizations for field loading and storing. 507 Perform peephole optimizations for branch instructions. [all …]
|
/external/llvm/docs/CommandGuide/ |
D | opt.rst | 13 takes LLVM source files as input, runs the specified optimizations or analyses 25 optimized output file. The optimizations available via :program:`opt` depend 28 option to determine what optimizations you can use. 90 applying other optimizations. It is essentially the same as :option:`-strip` 121 line options to enable various optimizations or analyses. To see the new 122 complete list of optimizations, use the :option:`-help` and :option:`-load`
|
D | llc.rst | 96 Disable optimizations that may produce excess precision for floating point. 102 Enable optimizations that assume no Inf values. 106 Enable optimizations that assume no NAN values. 110 Enable optimizations that make unsafe assumptions about IEEE math (e.g. that 112 optimizations allow the code generator to make use of some instructions which
|
D | lli.rst | 129 Disable optimizations that may increase floating point precision. 135 Enable optimizations that assume no Inf values. 141 Enable optimizations that assume no NAN values. 147 Causes **lli** to enable optimizations that may decrease floating point
|
/external/llvm/test/Instrumentation/AddressSanitizer/ |
D | instrument_load_then_store.ll | 15 ; With optimizations enabled we should see only one call to __asan_report_* 21 ; Without optimizations we should see two calls to __asan_report_*
|
/external/chromium_org/third_party/opus/src/ |
D | config.h.in | 76 /* Use generic ARMv4 inline asm optimizations */ 79 /* Use ARMv5E inline asm optimizations */ 82 /* Use ARMv6 inline asm optimizations */ 85 /* Use ARM NEON inline asm optimizations */
|
D | configure.ac | 185 [AS_HELP_STRING([--disable-asm], [Disable assembly optimizations])],, 214 [Use generic ARMv4 inline asm optimizations]) 217 [Use ARMv5E inline asm optimizations]) 222 [Use ARMv6 inline asm optimizations]) 227 [Use ARM NEON inline asm optimizations]) 323 [*** ARM assembly requires perl -- disabling optimizations])
|
/external/libopus/ |
D | config.h.in | 76 /* Use generic ARMv4 inline asm optimizations */ 79 /* Use ARMv5E inline asm optimizations */ 82 /* Use ARMv6 inline asm optimizations */ 85 /* Use ARM NEON inline asm optimizations */
|
D | configure.ac | 185 [AS_HELP_STRING([--disable-asm], [Disable assembly optimizations])],, 214 [Use generic ARMv4 inline asm optimizations]) 217 [Use ARMv5E inline asm optimizations]) 222 [Use ARMv6 inline asm optimizations]) 227 [Use ARM NEON inline asm optimizations]) 323 [*** ARM assembly requires perl -- disabling optimizations])
|
/external/llvm/docs/tutorial/ |
D | LangImpl4.rst | 24 however, does give us obvious optimizations when compiling simple code: 91 Fortunately, LLVM provides a broad range of optimizations that you can 99 hold to the mistaken notion that one set of optimizations is right for 101 to make complete decisions about what optimizations to use, in which 117 to run a few per-function optimizations as the user types the function 122 In order to get per-function optimizations going, we need to set up a 124 and organize the LLVM optimizations that we want to run. Once we have 125 that, we can add a set of optimizations to run. The code looks like 137 // Do simple "peephole" optimizations and bit-twiddling optzns. 157 basically boilerplate, it adds a pass so that later optimizations know [all …]
|
D | OCamlLangImpl4.rst | 27 compiling simple code, we don't get obvious optimizations: 41 parsing the input. As such, this transcription lacks optimizations like 43 above) as well as other more important optimizations. Constant folding, 101 Fortunately, LLVM provides a broad range of optimizations that you can 109 hold to the mistaken notion that one set of optimizations is right for 111 to make complete decisions about what optimizations to use, in which 127 to run a few per-function optimizations as the user types the function 132 In order to get per-function optimizations going, we need to set up a 134 organize the LLVM optimizations that we want to run. Once we have that, 135 we can add a set of optimizations to run. The code looks like this: [all …]
|
/external/chromium_org/third_party/icu/source/config/ |
D | mh-beos | 12 # Safe optimizations 18 # -fexpensive-optimizations -foptimize-register-move -fregmove \ 30 # use any O optimizations at all. (the behavior kicks in at -O1)
|
/external/icu/icu4c/source/config/ |
D | mh-beos | 12 # Safe optimizations 18 # -fexpensive-optimizations -foptimize-register-move -fregmove \ 30 # use any O optimizations at all. (the behavior kicks in at -O1)
|
/external/libpng/ |
D | configure.ac | 278 [Enable ARM NEON optimizations: =no/off, check, api, yes/on:] 279 [no/off: disable the optimizations; check: use internal checking code] 287 [Disable ARM Neon optimizations]) 295 [Turn on ARM Neon optimizations at run-time]);; 298 [Enable ARM Neon optimizations]) 300 [you want the optimizations unconditionally pass -mfpu=neon] 307 # where ARM optimizations were explicitly requested (this allows a fallback if a
|
/external/pixman/ |
D | config.h.in | 124 /* use ARM NEON assembly optimizations */ 127 /* use ARM SIMD assembly optimizations */ 136 /* use MIPS DSPr2 assembly optimizations */
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
D | README | 20 optimizations. These include copy propagation, dead code elimination, 22 optimizations in a loop, as each may open up opportunities for other 23 optimizations to do additional work. See most files called ir_*.cpp 121 optimizations ((color * 1.0 == color) and ((mat1 * mat2) * vec == mat1 125 optimizations like CSE where one must navigate an expression tree. 130 common subexpression elimination, and many other optimizations much 153 excellent code, but we do expect to do some SSA-based optimizations
|
/external/mesa3d/src/glsl/ |
D | README | 20 optimizations. These include copy propagation, dead code elimination, 22 optimizations in a loop, as each may open up opportunities for other 23 optimizations to do additional work. See most files called ir_*.cpp 121 optimizations ((color * 1.0 == color) and ((mat1 * mat2) * vec == mat1 125 optimizations like CSE where one must navigate an expression tree. 130 common subexpression elimination, and many other optimizations much 153 excellent code, but we do expect to do some SSA-based optimizations
|
/external/chromium_org/third_party/opus/ |
D | BUILD.gn | 11 # If ARM optimizations shall be used to accelerate performance. 80 # optimizations are turned off.
|
/external/clang/docs/tools/ |
D | clang.pod | 160 Disable special handling and optimizations of builtin functions like strlen and 186 strings and other optimizations. 280 Moderate level of optimization which enables most optimizations. 284 Like B<-O2>, except that it enables optimizations that take longer to perform 289 Enables all the optimizations from B<-O3> along with other aggressive 290 optimizations that may violate strict compliance with language standards. 294 Like B<-O2> with extra optimizations to reduce code size. 317 Clang supports a number of optimizations to reduce the size of debug 325 The B<-fstandalone-debug> option turns off these optimizations. This
|