OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PassToPrint
(Results
1 - 2
of
2
) sorted by null
/external/llvm/tools/opt/
PassPrinters.cpp
27
const PassInfo *
PassToPrint
;
34
: FunctionPass(ID),
PassToPrint
(PI), Out(out), QuietPass(Quiet) {
35
std::string PassToPrintName =
PassToPrint
->getPassName();
41
Out << "Printing analysis '" <<
PassToPrint
->getPassName()
45
getAnalysisID<Pass>(
PassToPrint
->getTypeInfo()).print(Out, F.getParent());
52
AU.addRequiredID(
PassToPrint
->getTypeInfo());
61
const PassInfo *
PassToPrint
;
67
: CallGraphSCCPass(ID),
PassToPrint
(PI), Out(out), QuietPass(Quiet) {
68
std::string PassToPrintName =
PassToPrint
->getPassName();
74
Out << "Printing analysis '" <<
PassToPrint
->getPassName() << "':\n"
[
all
...]
/external/swiftshader/third_party/LLVM/tools/opt/
opt.cpp
149
const PassInfo *
PassToPrint
;
154
CallGraphSCCPass(ID),
PassToPrint
(PI), Out(out) {
155
std::string PassToPrintName =
PassToPrint
->getPassName();
161
Out << "Printing analysis '" <<
PassToPrint
->getPassName() << "':\n";
167
getAnalysisID<Pass>(
PassToPrint
->getTypeInfo()).print(Out,
176
AU.addRequiredID(
PassToPrint
->getTypeInfo());
185
const PassInfo *
PassToPrint
;
190
: ModulePass(ID),
PassToPrint
(PI), Out(out) {
191
std::string PassToPrintName =
PassToPrint
->getPassName();
197
Out << "Printing analysis '" <<
PassToPrint
->getPassName() << "':\n";
[
all
...]
Completed in 725 milliseconds