OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getPassInfo
(Results
1 - 7
of
7
) sorted by null
/external/llvm/include/llvm/
PassRegistry.h
48
///
getPassInfo
- Look up a pass' corresponding PassInfo, indexed by the pass'
50
const PassInfo *
getPassInfo
(const void *TI) const;
52
///
getPassInfo
- Look up a pass' corresponding PassInfo, indexed by the pass'
54
const PassInfo *
getPassInfo
(StringRef Arg) const;
/external/llvm/lib/IR/
Pass.cpp
60
const PassInfo *PI = PassRegistry::getPassRegistry()->
getPassInfo
(AID);
164
return PassRegistry::getPassRegistry()->
getPassInfo
(TI);
168
return PassRegistry::getPassRegistry()->
getPassInfo
(Arg);
172
const PassInfo *PI = PassRegistry::getPassRegistry()->
getPassInfo
(ID);
PassRegistry.cpp
87
const PassInfo *PassRegistry::
getPassInfo
(const void *TI) const {
94
const PassInfo *PassRegistry::
getPassInfo
(StringRef Arg) const {
150
PassInfo *InterfaceInfo = const_cast<PassInfo*>(
getPassInfo
(InterfaceID));
160
PassInfo *ImplementationInfo = const_cast<PassInfo*>(
getPassInfo
(PassID));
PassManager.cpp
599
PassRegistry::getPassRegistry()->
getPassInfo
(P->getPassID());
617
const PassInfo *PI = PassRegistry::getPassRegistry()->
getPassInfo
(*I);
715
PassRegistry::getPassRegistry()->
getPassInfo
(PI);
758
PassRegistry::getPassRegistry()->
getPassInfo
((*I)->getPassID())) {
822
const PassInfo *PInf = PassRegistry::getPassRegistry()->
getPassInfo
(PI);
955
if (const PassInfo *PInf = PassRegistry::getPassRegistry()->
getPassInfo
(PI)) {
[
all
...]
/external/llvm/tools/bugpoint/
bugpoint.cpp
106
const PassInfo *PI = PassRegistry::getPassRegistry()->
getPassInfo
(ID);
/external/llvm/tools/llc/
llc.cpp
349
const PassInfo *PI = PR->
getPassInfo
(StartAfter);
357
const PassInfo *PI = PR->
getPassInfo
(StopAfter);
/external/llvm/lib/CodeGen/
Passes.cpp
468
const PassInfo *TPI = PR->
getPassInfo
(PrintMachineInstrs.getValue());
469
const PassInfo *IPI = PR->
getPassInfo
(StringRef("print-machineinstrs"));
Completed in 1874 milliseconds