OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:passes
(Results
76 - 100
of
1913
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/webkit/Source/WebCore/manual-tests/
load-deferrer-script-element.html
39
The test
passes
if no error messages show up in the page!</p>
open-after-close.html
13
<p>If the test
passes
, you will see a "PASS" message open in a new window.</p>
select-delete-item.html
18
Once the select gets focus, in 2 seconds it will delete an item. This test
passes
/ndk/sources/host-tools/sed-4.2.1/testsuite/
runtest
10
# As a convenience, suppress the output of make if the test
passes
/external/llvm/lib/Analysis/
RegionPass.cpp
11
// and transformation
passes
are derived from RegionPass. RGPassManager is
51
/// run - Execute all of the
passes
scheduled for execution. Keep track of
52
/// whether any of the
passes
modifies the function, and if so, return true.
82
// Run all
passes
on the current Region.
128
// Do not run other
passes
on this region.
132
// If the region was deleted, release all the region
passes
. This frees up
141
// Pop the region from queue after running all
passes
.
147
// Free all region nodes created in region
passes
.
168
/// Print
passes
managed by this manager
215
// RGPassManager
passes
. In such case, pop RGPassManager from th
[
all
...]
LoopPass.cpp
11
// and transformation
passes
are derived from LoopPass. LPPassManager is
73
// If L is current loop then skip rest of the
passes
and let
75
// and continue applying other
passes
on CurrentLoop.
137
/// all loop
passes
.
146
/// deleteSimpleAnalysisValue - Invoke deleteAnalysisValue hook for all
passes
.
177
/// run - Execute all of the
passes
scheduled for execution. Keep track of
178
/// whether any of the
passes
modifies the function, and if so, return true.
214
// Run all
passes
on the current Loop.
260
// Do not run other
passes
on this loop.
264
// If the loop was deleted, release all the loop
passes
. This frees u
[
all
...]
/external/icu4c/test/perf/unisetperf/
unisetperf.pl
20
"
passes
"=>"3",
69
"
passes
"=>"3",
/external/llvm/utils/lit/tests/
shtest-format.py
38
# CHECK: Expected
Passes
: 3
42
# CHECK: Unexpected
Passes
: 1
/frameworks/base/libs/hwui/
Stencil.h
69
* The test
passes
only when equal to the specified value.
74
* Used for debugging. The stencil test always
passes
and increments.
/external/llvm/include/llvm/Analysis/
RegionPass.h
11
// optimization and transformation
passes
are derived from RegionPass.
55
/// @param Banner The banner to separate different printed
passes
.
94
/// @brief Execute all of the
passes
scheduled for execution.
96
/// @return True if any of the
passes
modifies the function.
110
/// @brief Print
passes
managed by this manager.
113
/// @brief Get
passes
contained by this manager.
/external/llvm/tools/bugpoint/
BugDriver.h
96
bool debugOptimizerCrash(const std::string &ID = "
passes
");
103
/// debugMiscompilation - This method is used when the
passes
selected are not
132
/// runPasses - Run all of the
passes
in the "PassesToRun" list, discard the
133
/// output, and return true if any of the
passes
crashed.
215
/// series of cleanup
passes
(ADCE and SimplifyCFG) to eliminate any code
245
Module *runPassesOn(Module *M, const std::vector<std::string> &
Passes
,
249
/// runPasses - Run the specified
passes
on Program, outputting a bitcode
265
/// combinations of
passes
to compile the program with. Compile the program with
266
/// each set and mark test to see if it compiled correctly. If the
passes
267
/// compiled correctly output nothing and rearrange the
passes
into a new order
[
all
...]
BugDriver.cpp
56
/// getPassesString - Turn a list of
passes
into a string which indicates the
57
/// command line options that must be passed to add the
passes
.
59
std::string llvm::getPassesString(const std::vector<std::string> &
Passes
) {
61
for (unsigned i = 0, e =
Passes
.size(); i != e; ++i) {
64
Result +=
Passes
[i];
151
// Rearrange the
passes
and apply them to the program. Repeat this process
159
// decision by trying to run all of the
passes
on the input program,
164
outs() << "Running selected
passes
on program to test for crash: ";
/external/llvm/tools/llvm-extract/
llvm-extract.cpp
255
PassManager
Passes
;
256
Passes
.add(new DataLayout(M.get())); // Use correct DataLayout
260
Passes
.add(createGVExtractionPass(Gvs, DeleteFn));
262
Passes
.add(createGlobalDCEPass()); // Delete unreachable globals
263
Passes
.add(createStripDeadDebugInfoPass()); // Remove dead debug info
264
Passes
.add(createStripDeadPrototypesPass()); // Remove dead func decls
275
Passes
.add(createPrintModulePass(&Out.os()));
277
Passes
.add(createBitcodeWriterPass(Out.os()));
279
Passes
.run(*M.get());
/frameworks/compile/libbcc/lib/Core/
Compiler.cpp
19
#include <llvm/Analysis/
Passes
.h>
175
// We now create
passes
list performing LTO. These are copied from
177
// Only a subset of these LTO
passes
are enabled in optimization level 0 as
180
// FIXME: Figure out which
passes
(if any) makes sense for levels 1 and 2.
223
// The IPO
passes
may leave cruft around. Clean up after them.
251
// Delete basic blocks, which optimization
passes
may have killed.
264
// Invokde "beforeExecuteLTOPasses" before executing the
passes
.
301
// Add
passes
to the pass manager to emit machine code through MC layer.
313
// Invokde "beforeExecuteCodeGenPasses" before executing the
passes
.
/external/llvm/docs/
WritingAnLLVMPass.rst
12
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/nul
[
all
...]
Bugpoint.rst
11
``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
[
all
...]
/external/llvm/include/llvm/
PassRegistry.h
11
// and registration of
passes
. At application startup,
passes
are registered
69
/// enumerateWith - Enumerate the registered
passes
, calling the provided
/external/llvm/lib/Target/MBlaze/
MBlazeTargetMachine.cpp
16
#include "llvm/CodeGen/
Passes
.h"
75
// Implemented by targets that want to run
passes
immediately before
77
// print out the code after the
passes
.
/external/llvm/lib/Target/Sparc/
SparcTargetMachine.cpp
15
#include "llvm/CodeGen/
Passes
.h"
68
///
passes
immediately before machine code is emitted. This should return
69
/// true if -print-machineinstrs should print out the code after the
passes
.
/external/llvm/docs/CommandGuide/
opt.rst
61
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/llvm/include/llvm/CodeGen/
MachineFunctionPass.h
15
// care of declaring that no LLVM
passes
are invalidated.
29
/// allow convenient creation of
passes
that operate on the MachineFunction
/external/llvm/lib/Transforms/IPO/
BarrierNoopPass.cpp
14
// manager to be closed prior to running a new collection of function
passes
.
30
/// when they are phrased as non-module
passes
.
/external/llvm/lib/Transforms/Vectorize/
Vectorize.cpp
19
#include "llvm/Analysis/
Passes
.h"
26
/// initializeVectorizationPasses - Initialize all
passes
linked into the
/external/v8/test/mjsunit/regress/
regress-1973.js
33
// Check that strict mode
passes
unwrapped this value.
40
// Check that non-strict mode
passes
wrapped this value.
/frameworks/base/core/java/android/text/style/
CharacterStyle.java
55
*
passes
{@link #updateDrawState} calls through to the
71
*
Passes
updateDrawState through to the underlying CharacterStyle.
Completed in 2519 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>