Searched defs:Changed (Results 1 - 25 of 120) sorted by relevance

12345

/external/llvm/lib/Transforms/Utils/
H A DLowerInvoke.cpp55 bool Changed = false; local
77 ++NumInvokes; Changed = true;
79 return Changed;
H A DMem2Reg.cpp63 bool Changed = false; local
81 Changed = true;
84 return Changed;
H A DSimplifyInstructions.cpp56 bool Changed = false; variable
77 Changed = true;
86 Changed |= res;
96 return Changed;
/external/llvm/include/llvm/ADT/
H A DSetOperations.h24 bool Changed = false; local
29 Changed = true;
31 return Changed;
/external/llvm/lib/CodeGen/
H A DExpandISelPseudos.cpp48 bool Changed = false; local
60 Changed = true;
74 return Changed;
H A DOptimizePHIs.cpp75 bool Changed = false; local
77 Changed |= OptimizeBB(*I);
79 return Changed;
157 bool Changed = false; local
176 Changed = true;
191 Changed = true;
194 return Changed;
H A DProcessImplicitDefs.cpp139 bool Changed = false; local
160 Changed = true;
166 return Changed;
/external/llvm/lib/Transforms/Scalar/
H A DConstantProp.cpp70 bool Changed = false; local
94 Changed = true;
98 return Changed;
H A DDCE.cpp46 bool Changed = false; variable
51 Changed = true;
55 return Changed;
H A DFlattenCFGPass.cpp54 bool Changed = false; local
66 Changed |= LocalChange;
68 return Changed;
H A DLoopDeletion.cpp57 bool &Changed, BasicBlock *Preheader);
83 bool &Changed, BasicBlock *Preheader) {
105 if (!L->makeLoopInvariant(I, Changed, Preheader->getTerminator()))
166 bool Changed = false;
167 if (!isLoopDead(L, exitingBlocks, exitBlocks, Changed, preheader))
168 return Changed;
175 return Changed;
249 Changed = true;
253 return Changed;
80 isLoopDead(Loop *L, SmallVectorImpl<BasicBlock *> &exitingBlocks, SmallVectorImpl<BasicBlock *> &exitBlocks, bool &Changed, BasicBlock *Preheader) argument
H A DPartiallyInlineLibCalls.cpp61 bool Changed = false; local
94 Changed = true;
99 return Changed;
H A DSimplifyCFGPass.cpp73 bool Changed = false; local
108 Changed = true;
143 return Changed;
150 bool Changed = false; local
163 Changed |= LocalChange;
165 return Changed;
/external/llvm/lib/Target/AArch64/
H A DAArch64CleanupLocalDynamicTLSPass.cpp59 bool Changed = false; local
75 Changed = true;
84 Changed |= VisitNode(N, TLSBaseAddrReg);
87 return Changed;
H A DAArch64DeadRegisterDefinitionsPass.cpp69 bool Changed = false; local
116 return Changed;
123 bool Changed = false; local
128 Changed = true;
129 return Changed;
/external/llvm/lib/Transforms/IPO/
H A DInternalize.cpp137 bool Changed = false; local
169 Changed = true;
201 Changed = true;
214 Changed = true;
219 return Changed;
H A DGlobalDCE.cpp75 bool Changed = false; local
78 Changed |= optimizeGlobalCtorsList(M, isEmptyFunction);
85 Changed |= RemoveUnusedGlobalValue(*I);
97 Changed |= RemoveUnusedGlobalValue(*I);
110 Changed |= RemoveUnusedGlobalValue(*I);
173 Changed = true;
182 Changed = true;
192 Changed = true;
199 return Changed;
H A DIPConstantPropagation.cpp57 bool Changed = false; local
70 Changed |= PropagateConstantReturn(*I);
72 Changed |= LocalChange;
74 return Changed;
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCAPElim.cpp95 bool Changed = false; local
108 Changed = true;
127 return Changed;
151 bool Changed = false; local
172 Changed |= OptimizeBB(F->begin());
175 return Changed;
/external/chromium_org/chrome/tools/service_discovery_sniffer/
H A Dservice_discovery_sniffer.cc35 void ServicePrinter::Changed() { function in class:local_discovery::ServicePrinter
88 services_[service_name]->Changed();
/external/llvm/lib/Target/Hexagon/
H A DHexagonFixupHwLoops.cpp90 bool Changed = fixupLoopInstrs(MF); local
91 return Changed;
120 bool Changed = false; local
143 Changed = true;
154 return Changed;
/external/llvm/lib/Target/NVPTX/
H A DNVPTXImageOptimizer.cpp53 bool Changed = false; local
69 Changed |= replaceIsTypePSampler(Instr);
72 Changed |= replaceIsTypePSurface(Instr);
75 Changed |= replaceIsTypePTexture(Instr);
87 return Changed;
H A DNVPTXReplaceImageHandles.cpp48 bool Changed = false; local
56 Changed |= processInstr(MI);
69 return Changed;
/external/llvm/tools/bugpoint/
H A DListReducer.h158 bool Changed = true; local
160 while (Changed) { // Trimming loop.
161 Changed = false;
184 Changed = true;
/external/llvm/lib/Analysis/
H A DRegionPass.cpp56 bool Changed = false; local
72 Changed |= RP->doInitialization(R, *this);
97 Changed |= P->runOnRegion(CurrentRegion, *this);
100 if (Changed)
155 Changed |= P->doFinalization();
166 return Changed;

Completed in 635 milliseconds

12345