Home
last modified time | relevance | path

Searched refs:passes (Results 1 – 25 of 316) sorted by relevance

12345678910>>...13

/external/skia/src/gpu/
DGrDefaultPathRenderer.cpp358 const GrStencilSettings* passes[3]; in internalDrawPath() local
366 passes[0] = &gDirectToStencil; in internalDrawPath()
368 passes[0] = NULL; in internalDrawPath()
376 passes[0] = &gDirectToStencil; in internalDrawPath()
378 passes[0] = NULL; in internalDrawPath()
388 passes[0] = &gEOStencilPass; in internalDrawPath()
396 passes[1] = &gInvEOColorPass; in internalDrawPath()
398 passes[1] = &gEOColorPass; in internalDrawPath()
410 passes[0] = &gWindStencilSeparateWithWrap; in internalDrawPath()
412 passes[0] = &gWindStencilSeparateNoWrap; in internalDrawPath()
[all …]
/external/llvm/utils/release/
DfindRegressions-simple.py66 passes = {}
71 passes[x] = ''
90 passes[x] += t + "\n"
104 passes[x] += t + "\n"
110 passes[x] += t + "\n"
138 if len(passes['compile state']) != 0:
140 print passes['compile state']
142 if len(passes['exec state']) != 0:
144 print passes['exec state']
/external/icu4c/test/perf/utrie2perf/
Dutrie2perf.bat14 %PERF% CheckFCD -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000
15 rem %PERF% CheckFCDAlwaysGet -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000
16 rem %PERF% CheckFCDUTF8 -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000
17 %PERF% ToNFC -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000
18 %PERF% GetBiDiClass -f \temp\udhr\%%f -v -e UTF-8 --passes 3 --iterations 30000
Dutrie2perf.sh20 $PERF CheckFCD -f ~/udhr/$file -v -e UTF-8 --passes 3 --iterations 30000
23 $PERF ToNFC -f ~/udhr/$file -v -e UTF-8 --passes 3 --iterations 30000
24 $PERF GetBiDiClass -f ~/udhr/$file -v -e UTF-8 --passes 3 --iterations 30000
/external/llvm/tools/lto/
DLTOCodeGenerator.cpp303 PassManager passes; in applyScopeRestrictions() local
304 passes.add(createVerifierPass()); in applyScopeRestrictions()
346 passes.add(createInternalizePass(mustPreserveList)); in applyScopeRestrictions()
349 passes.run(*mergedModule); in applyScopeRestrictions()
371 PassManager passes; in generateObjectFile() local
374 passes.add(createVerifierPass()); in generateObjectFile()
377 passes.add(new DataLayout(*_target->getDataLayout())); in generateObjectFile()
378 _target->addAnalysisPasses(passes); in generateObjectFile()
384 PassManagerBuilder().populateLTOPassManager(passes, in generateObjectFile()
391 passes.add(createVerifierPass()); in generateObjectFile()
[all …]
/external/llvm/unittests/Bitcode/
DBitReaderTest.cpp59 PassManager passes; in TEST() local
60 passes.add(createVerifierPass()); in TEST()
61 passes.run(*m); in TEST()
/external/llvm/docs/
DWritingAnLLVMPass.rst12 passes are where most of the interesting parts of the compiler exist. Passes
17 All LLVM passes are subclasses of the `Pass
28 passes. One of the main features of the LLVM Pass Framework is that it
29 schedules passes to run in an efficient way based on the constraints that your
39 Here we describe how to write the "hello world" of passes. The "Hello" pass is
212 contained in an anonymous namespace --- this reflects the fact that passes
270 nice command line option (:option:`--time-passes`) that allows you to get
271 information about the execution time of your pass along with the other passes
276 $ opt -load ../../../Debug+Asserts/lib/Hello.so -hello -time-passes < hello.bc > /dev/null
293 passes listed are automatically inserted by the :program:`opt` tool to verify
[all …]
DBugpoint.rst11 ``bugpoint`` narrows down the source of problems in LLVM tools and passes. It
26 the LLVM infrastructure at all. It works with any and all LLVM passes and code
40 LLVM passes are specified on the command line, it runs these passes on the test
41 program. If any of the passes crash, or if they produce malformed output (which
54 output, ``bugpoint`` runs the test program after all of the LLVM passes have
56 the difference resulted from a failure in one of the LLVM passes, and enters the
66 can to reduce the list of passes (for optimizer crashes) and the size of the
68 passes triggers the bug. This is useful when debugging a problem exposed by
69 ``opt``, for example, because it runs over 38 passes.
77 failure. At the end, ``bugpoint`` should tell you what passes crash, give you a
[all …]
DHowToSubmitABug.rst94 This command should do two things: it should print out a list of passes, and
103 bugpoint foo.bc <list of passes printed by opt>
107 submit the "foo.bc" file and the list of passes printed by ``opt``.
146 <http://valgrind.org/>`_'s clean, passes purify, or some other memory
152 and optionally a series of LLVM passes to run. For example:
156 bugpoint -run-llc [... optzn passes ...] file-to-test.bc --args -- [program arguments]
158 bugpoint will try to narrow down your list of passes to the one pass that
166 Similarly to debugging incorrect compilation by mis-behaving passes, you
DPasses.rst43 The table below divides the passes that LLVM provides into three categories.
44 Analysis passes compute information that other passes can use or for debugging
45 or program visualization purposes. Transform passes can use (or invalidate)
46 the analysis passes. Transform passes all mutate the program in some way.
47 Utility passes provides some utility but don't otherwise fit categorization.
48 For example passes to extract functions to bitcode or write a module to bitcode
49 are neither analysis nor transform passes. The table of contents above
221 Optimization passes may make conditions that this pass checks for more or less
226 This code may be run before :ref:`instcombine <passes-instcombine>`. In many
399 Provides other passes access to information on how the size and alignment
[all …]
/external/llvm/docs/CommandGuide/
Dbugpoint.rst7 **bugpoint** [*options*] [*input LLVM ll/bc files*] [*LLVM passes*] **--args**
13 **bugpoint** narrows down the source of problems in LLVM tools and passes. It
78 Do not run the specified passes to clean up and reduce the size of the test
79 program. By default, **bugpoint** uses these passes internally when attempting to
80 reduce test programs. If you're trying to find a bug in one of these passes,
91 Continually randomize the specified passes and run them on the test program
106 register new optimization passes. Once loaded, the object will add new command
169 This script will "fail" as long as FileCheck passes. So the result
170 will be the minimum bitcode that passes FileCheck.
Dopt.rst61 analysis passes in any order. The :option:`-help` option lists all the passes
67 This is short hand for a standard list of *compile time optimization* passes.
111 .. option:: -time-passes
118 If this is a debug build, this option will enable debug printouts from passes
125 optimization or analysis passes. Once loaded, the object will add new command
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
Dprinting.py453 passes = {}
462 _add_to_dict_of_lists(passes,
466 _add_to_dict_of_lists(passes,
470 _add_to_dict_of_lists(passes,
479 if len(passes) or len(flaky) or len(regressions):
482 if len(passes):
483 for key, tests in passes.iteritems():
/external/valgrind/main/memcheck/tests/
Dvcpu_fbench.c711 long passes; local
749 passes = 0;
767 passes++;
768 if ((passes % 100L) == 0) {
769 printf("Pass %ld.\n", passes);
846 passes, i + 1);
/external/valgrind/main/perf/
Dfbench.c707 long passes; local
745 passes = 0;
763 passes++;
764 if ((passes % 100L) == 0) {
765 printf("Pass %ld.\n", passes);
842 passes, i + 1);
/external/llvm/tools/
DMakefile64 PARALLEL_DIRS += bugpoint-passes
75 PARALLEL_DIRS := $(filter-out bugpoint-passes, \
/external/llvm/autoconf/m4/
Dsanity_check.m41 dnl Check a program for version sanity. The test runs a program, passes it an
4 dnl passes the sanity check.
/external/llvm/projects/sample/autoconf/m4/
Dsanity_check.m41 dnl Check a program for version sanity. The test runs a program, passes it an
4 dnl passes the sanity check.
/external/llvm/test/CodeGen/ARM/
Dcode-placement.ll34 define i32 @t2(i32 %passes, i32* nocapture %src, i32 %size) nounwind readonly {
38 %0 = icmp eq i32 %passes, 0 ; <i1> [#uses=1]
61 %exitcond18 = icmp eq i32 %3, %passes ; <i1> [#uses=1]
/external/emma/core/java12/com/vladium/emma/report/
DIItemAttribute.java46 …boolean passes (IItem item, int criterion); // ideally, criteria should come from a double-dispatc… in passes() method
99 public boolean passes (final IItem item, final int criterion) in passes() method in IItemAttribute.Factory.NameAttribute
164 public boolean passes (final IItem item, final int criterion) in passes() method in IItemAttribute.Factory.FractionAttribute
/external/icu4c/tools/ctestfw/
Duperf.cpp89 passes(1), iterations(0), time(0), in UPerfTest()
105 passes(1), iterations(0), time(0), in UPerfTest()
159 passes = atoi(options[PASSES].value); in init()
412 for(int32_t ps =0; ps < passes; ps++){ in runTestLoop()
449 double avg_t = sum_t/passes; in runTestLoop()
/external/libvpx/libvpx/
Dvpxenc.c976 static const arg_def_t passes = ARG_DEF("p", "passes", 1, variable
1011 &outputfile, &codecarg, &passes, &pass_arg, &fpf_name, &limit, &deadline,
1506 int passes; member
1585 global->passes = 1; in parse_global_config()
1607 else if (arg_match(&arg, &passes, argi)) in parse_global_config()
1609 global->passes = arg_parse_uint(&arg); in parse_global_config()
1611 if (global->passes < 1 || global->passes > 2) in parse_global_config()
1612 die("Error: Invalid number of passes (%d)\n", global->passes); in parse_global_config()
1667 if (global->pass > global->passes) in parse_global_config()
1671 global->passes = global->pass; in parse_global_config()
[all …]
/external/webkit/LayoutTests/fast/dom/HTMLLinkElement/
Dprefetch-detached-expected.txt1 This test passes if it doesn't crash.
/external/webkit/LayoutTests/fast/encoding/
Dcharset-koi8-u-expected.txt3 The test passes if these two letters look inverted along the vertical axis: "ЭЄ"
Dmeta-in-script-expected.txt3 This test passes if the charset is parsed from the meta tag outside the script.

12345678910>>...13