OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:passes
(Results
26 - 50
of
1913
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/llvm/tools/opt/
opt.cpp
51
// The OptimizationList is automatically populated with registered
Passes
by the
95
cl::desc("Do not run any optimization
passes
"));
159
// ---------- Define Printers for module and function
passes
------------
418
/// AddOptimizationPasses - This routine adds optimization
passes
462
// -std-compile-opts adds the same module
passes
as -O3.
566
// Initialize
passes
630
// Create a PassManager to hold and optimize the collection of
passes
we are
633
PassManager
Passes
;
641
Passes
.add(TLI);
652
Passes
.add(TD)
[
all
...]
/external/llvm/include/llvm/
InitializePasses.h
1
//===- llvm/InitializePasses.h -------- Initialize All
Passes
---*- C++ -*-===//
22
/// initializeCore - Initialize all
passes
linked into the
26
/// initializeTransformUtils - Initialize all
passes
linked into the
30
/// initializeScalarOpts - Initialize all
passes
linked into the
34
/// initializeObjCARCOpts - Initialize all
passes
linked into the ObjCARCOpts
38
/// initializeVectorization - Initialize all
passes
linked into the
42
/// initializeInstCombine - Initialize all
passes
linked into the
46
/// initializeIPO - Initialize all
passes
linked into the IPO library.
49
/// initializeInstrumentation - Initialize all
passes
linked into the
53
/// initializeAnalysis - Initialize all
passes
linked into the Analysis library
[
all
...]
PassManagers.h
27
// The Pass Manager Infrastructure manages
passes
. It's responsibilities are:
31
// o Release memory occupied by dead
passes
54
// used by a pass manager to manage execution order of
passes
. It also provides
82
// This is a external interface used by various tools to manages
passes
. It
182
/// Schedule pass P for execution. Make sure that
passes
required by
184
/// the manager. Remove dead
passes
. This is a recursive function.
187
/// Set pass P as the last user of the given analysis
passes
.
190
/// Collect
passes
whose last user is P
194
///
passes
and all pass managers. If desired pass is not found
223
// Print
passes
managed by this top level manager
[
all
...]
Pass.h
1
//===- llvm/Pass.h - Base class for
Passes
----------------------*- C++ -*-===//
13
//
Passes
are designed this way so that it is possible to run
passes
in a cache
15
// end. This allows arbitrary
passes
to be strung together and have them
18
//
Passes
should extend one of the classes below, depending on the guarantees
66
// Different types of
passes
.
78
/// Pass interface - Implemented by all '
passes
'. Subclass this if you are an
80
/// constrained
passes
described below.
113
/// necessary clean up after all
passes
have run.
146
/// getAnalysisUsage - This function should be overriden by
passes
that nee
[
all
...]
/frameworks/base/core/java/android/text/style/
MetricAffectingSpan.java
44
*
passes
{@link #updateDrawState} and {@link #updateMeasureState}
61
*
Passes
updateDrawState through to the underlying MetricAffectingSpan.
69
*
Passes
updateMeasureState through to the underlying MetricAffectingSpan.
/external/clang/test/FixIt/
fixit-c90.c
6
This test
passes
because clang merely warns for this syntax error even with
/external/icu4c/test/perf/unisetperf/draft/
contperf.sh
21
$PERF Contains --type $type -f ~/udhr/$file -v -e UTF-8 --
passes
3 --iterations 10000
span16perf.sh
21
$PERF SpanUTF16 --type $type -f ~/udhr/$file -v -e UTF-8 --
passes
3 --iterations 10000
/external/llvm/tools/bugpoint/
FindBugs.cpp
26
/// combinations of
passes
to compile the program with. Compile the program with
27
/// each set and mark test to see if it compiled correctly. If the
passes
28
/// compiled correctly output nothing and rearrange the
passes
into a new order.
29
/// If the
passes
did not compile correctly, output the command required to
52
// Step 1: Randomize the order of the optimizer
passes
.
57
// Step 2: Run optimizer
passes
on the program and check for success.
59
outs() << "Running selected
passes
on program to test for crash: ";
67
outs() << "Optimizer
passes
caused failure!\n\n";
91
outs() << "*** Checking if
passes
caused miscompliation:\n";
/external/webkit/LayoutTests/fast/dom/HTMLLinkElement/
prefetch-detached.html
7
<p>This test
passes
if it doesn't crash.</p>
/external/webkit/LayoutTests/fast/encoding/
charset-koi8-u.html
13
<p>The test
passes
if these two letters look inverted along the vertical axis: "??"</p>
meta-in-script.html
24
<p>This test
passes
if the charset is parsed from the meta tag outside the script.
namespace-tolerance.html
12
If this test
passes
, the UTF-8 character below should exactly match the character the character in namespace-tolerance-expected.txt.
/external/webkit/Source/WebCore/manual-tests/
focusringcolor-change-on-theme-change.html
8
<p>The tests
passes
if the focus ring around the input element changes color.</p>
right-click-crash.html
5
Do it over and over again in quick succession. The test
passes
if you don't see a crash.
keyboard-menukey-event.html
21
The test
passes
if you see 'PASS' below.
26
The test
passes
if you see additional 'PASS' below.
/frameworks/compile/libbcc/include/bcc/
Compiler.h
46
// instance to construct the compilation
passes
.
109
// Called before adding first pass to code-generation
passes
.
113
// Called after adding last pass to code-generation
passes
.
117
// Called before executing code-generation
passes
.
122
// Called after executing code-generation
passes
.
126
// Called before adding first pass to code-generation
passes
.
130
// Called after adding last pass to code-generation
passes
.
134
// Called before executing code-generation
passes
.
139
// Called after executing code-generation
passes
.
/external/llvm/lib/CodeGen/
Passes.cpp
1
//===--
Passes
.cpp - Target independent code generation
passes
------------===//
11
// generation
passes
provided by the LLVM backend.
15
#include "llvm/CodeGen/
Passes
.h"
16
#include "llvm/Analysis/
Passes
.h"
95
/// Allow standard
passes
to be disabled by command line options. This supports
126
/// Allow standard
passes
to be disabled by the command line, regardless of who
202
// List of
passes
explicitly substituted by this target. Normally this is
203
// empty, but it is a convenient way to suppress or replace specific
passes
223
// registers all common codegen
passes
[
all
...]
/external/llvm/lib/IR/
PassManager.cpp
62
// Print IR out before/after specified
passes
.
65
llvm::cl::desc("Print IR before specified
passes
"),
70
llvm::cl::desc("Print IR after specified
passes
"),
166
/// Execute all of the
passes
scheduled for execution. Keep track of
167
/// whether any of the
passes
modifies the function, and if so, return true.
187
// Print
passes
managed by this manager
229
/// add - Add a pass to the queue of
passes
to run. This
passes
ownership of
232
/// implies that all
passes
MUST be allocated with 'new'.
246
/// run - Execute all of the
passes
scheduled for execution. Keep track o
[
all
...]
/external/llvm/autoconf/m4/
sanity_check.m4
1
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/
sanity_check.m4
1
dnl Check a program for version sanity. The test runs a program,
passes
it an
4
dnl
passes
the sanity check.
/external/llvm/docs/CommandGuide/
bugpoint.rst
7
**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.
/external/llvm/include/llvm/Analysis/
LoopPass.h
11
// and transformation
passes
are derived from LoopPass.
56
// LPPassManager
passes
. In such case, pop LPPassManager from the
72
/// maintained by various
passes
. Note, if required this interface can
91
/// run - Execute all of the
passes
scheduled for execution. Keep track of
92
/// whether any of the
passes
modifies the module, and if so, return true.
106
/// Print
passes
managed by this manager
137
/// maintained by various
passes
. Note, if required this interface can
143
/// all
passes
that implement simple analysis interface.
146
/// deleteSimpleAnalysisValue - Invoke deleteAnalysisValue hook for all
passes
/external/llvm/include/llvm/Support/
PassNameParser.h
11
// used to add command line arguments to a utility for all of the
passes
that
14
// The PassNameParser class adds ALL
passes
linked into the system (that are
18
// includes
passes
that have a PassType that are compatible with the filter
50
// Add all of the
passes
to the map that got initialized before 'this' did.
55
// which
passes
we want to include.
60
// Ignore non-selectable and non-constructible
passes
! Ignore
71
errs() << "Two
passes
with the same argument (-"
100
/// true for
passes
to be registered as command-line options.
123
/// PassList(cl::desc("
Passes
available:"));
/external/llvm/include/llvm/CodeGen/
LinkAllCodegenComponents.h
10
// This header file pulls in all codegen related
passes
for tools like lli and
19
#include "llvm/CodeGen/
Passes
.h"
27
// We must reference the
passes
in such a way that compilers will not
Completed in 1362 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>