| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| MachineFunctionPass.cpp | 86 R << NV("Pass", getPassName()) 87 << ": Function: " << NV("Function", F.getName()) << ": " 89 << NV("MIInstrsBefore", CountBefore) << " to " 90 << NV("MIInstrsAfter", CountAfter) 91 << "; Delta: " << NV("Delta", Delta);
|
| MachineOutliner.cpp | 466 R << "Did not outline " << NV("Length", StringLen) << " instructions" 467 << " from " << NV("NumOccurrences", CandidatesForRepeatedSeq.size()) 470 << NV("OutliningCost", OF.getOutliningCost()) << ")" 472 << NV("NotOutliningCost", OF.getNotOutlinedCost()) << ")" 477 R << NV((Twine("OtherStartLoc") + Twine(i)).str(), 493 R << "Saved " << NV("OutliningBenefit", OF.getBenefit()) << " bytes by " 494 << "outlining " << NV("Length", OF.getNumInstrs()) << " instructions " 495 << "from " << NV("NumOccurrences", OF.getOccurrenceCount()) 502 R << NV((Twine("StartLoc") + Twine(i)).str(),
|
| StackProtector.cpp | 291 << ore::NV("Function", F) 309 << ore::NV("Function", F) 346 << ore::NV("Function", F) 362 << ore::NV("Function", F)
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| AutoInitRemark.cpp | 26 R << " Volatile: " << NV("StoreVolatile", true) << "."; 28 R << " Atomic: " << NV("StoreAtomic", true) << "."; 35 R << " Volatile: " << NV("StoreVolatile", false) << "."; 37 R << " Atomic: " << NV("StoreAtomic", false) << "."; 53 << NV("StoreSize", Size) << " bytes."; 124 R << NV("UnknownLibCall", "unknown") << " function "; 125 R << NV("Callee", F) << " inserted by -ftrivial-auto-var-init."; 143 R << " Memory operation size: " << NV("StoreSize", Size) << " bytes."; 203 R << NV("VarName", *VI.Name); 205 R << NV("VarName", "<unknown>") [all...] |
| LoopUnroll.cpp | 468 << NV("UnrollCount", ULO.TripCount) << " iterations"; 477 << " peeled loop by " << NV("PeelCount", ULO.PeelCount) 485 << NV("UnrollCount", ULO.Count); 495 << NV("BreakoutTrip", BreakoutTrip); 502 << " with " << NV("TripMultiple", ULO.TripMultiple)
|
| /src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| InlineAdvisor.cpp | 59 << NV("Callee", Callee) << " will not be inlined into " 60 << NV("Caller", Caller) << ": " 61 << NV("Reason", Result.getFailureReason()); 280 static raw_ostream &operator<<(raw_ostream &R, const ore::NV &Arg) { 292 R << "(cost=" << ore::NV("Cost", IC.getCost()) 293 << ", threshold=" << ore::NV("Threshold", IC.getThreshold()) << ")"; 296 R << ": " << ore::NV("Reason", Reason); 343 << NV("Callee", Callee) << " not inlined into " 344 << NV("Caller", Caller) << " because it should never be inlined " 350 << NV("Callee", Callee) << " not inlined into [all...] |
| AssumptionCache.cpp | 174 void AssumptionCache::transferAffectedValuesInCache(Value *OV, Value *NV) { 175 auto &NAVV = getOrInsertAffectedValues(NV); 186 void AssumptionCache::AffectedValueCallbackVH::allUsesReplacedWith(Value *NV) { 187 if (!isa<Instruction>(NV) && !isa<Argument>(NV)) 192 AC->transferAffectedValuesInCache(getValPtr(), NV); 194 // entry for NV then this object might have been destroyed in favor of some
|
| MLInlineAdvisor.cpp | 277 OR << NV("Callee", Callee->getName()); 279 OR << NV(FeatureNameMap[I], getAdvisor()->getModelRunner().getFeature(I)); 280 OR << NV("ShouldInline", isInliningRecommended());
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| BoolAssignmentChecker.cpp | 73 Optional<NonLoc> NV = val.getAs<NonLoc>(); 74 if (!NV) 89 std::tie(StIn, StOut) = CM.assumeInclusiveRangeDual(state, *NV, Zero, One);
|
| ArrayBoundCheckerV2.cpp | 146 if (Optional<NonLoc> NV = extentBegin.getAs<NonLoc>()) { 147 if (NV->getAs<nonloc::ConcreteInt>()) { 150 NV->castAs<nonloc::ConcreteInt>(), 153 *NV = simplifiedOffsets.second; 156 SVal lowerBound = svalBuilder.evalBinOpNN(state, BO_LT, rawOffsetVal, *NV,
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/ |
| PartialInlining.cpp | 430 << ore::NV("Block", BlockList.front()->getName()) 533 << ore::NV("Callee", &F) 535 << ore::NV("Cost", MinOutlineRegionCost); 795 << NV("Callee", Cloner.OrigFunc) 804 << NV("Callee", Cloner.OrigFunc) << " not partially inlined into " 805 << NV("Caller", Caller) 814 << NV("Callee", Cloner.OrigFunc) << " not partially inlined into " 815 << NV("Caller", Caller) << " because too costly to inline (cost=" 816 << NV("Cost", IC.getCost()) << ", threshold=" 817 << NV("Threshold", IC.getCostDelta() + IC.getCost()) << ")" [all...] |
| Inliner.cpp | 350 << NV("Callee", Callee) << " will not be inlined into " 351 << NV("Caller", CB->getCaller()) 454 << NV("Callee", Callee) << " will not be inlined into " 455 << NV("Caller", Caller) << ": " 456 << NV("Reason", IR.getFailureReason()); 738 << NV("Callee", Callee) << " will not be inlined into " 739 << NV("Caller", CB->getCaller())
|
| OpenMPOpt.cpp | 585 return ORA << "OpenMP ICV " << ore::NV("OpenMPICV", ICVInfo.Name) 605 << ore::NV("OpenMPGPUKernel", F->getName()) << "\n"; 778 << ore::NV("OpenMPParallelMergeFront", 782 OR << ore::NV("OpenMPParallelMerge", CI->getDebugLoc()); 879 << ore::NV("OpenMPParallelMerge", CI->getDebugLoc()) 881 << ore::NV("OpenMPParallelMergeFront", 1054 << ore::NV("OpenMPParallelDelete", CI->getCaller()->getName()) 1423 << ore::NV("OpenMPOptRuntime", RFI.Name) 1457 << ore::NV("OpenMPOptRuntime", RFI.Name) << " deduplicated"; 1822 << ore::NV("OpenMPParallelRegion", F->getName() [all...] |
| SampleProfile.cpp | 595 Remark << "Applied " << ore::NV("NumSamples", Samples); 597 Remark << ore::NV("ProbeId", Probe->Id); 599 Remark << ore::NV("Factor", Probe->Factor); 601 Remark << ore::NV("OriginalSamples", R.get()); 952 << ore::NV("Callee", CalledFunction) << "' into '" 953 << ore::NV("Caller", &F) << "'"); 1127 << ore::NV("Callee", Callee) << "' into '" 1128 << ore::NV("Caller", &F) << "'"); 1560 << ore::NV("CondBranchesLoc", BranchLoc);
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/ |
| IndirectCallPromotion.cpp | 279 << ore::NV("target md5sum", Target) << " not found"; 291 << NV("TargetFunction", TargetFunction) << " with count of " 292 << NV("Count", Count) << ": " << Reason; 330 << "Promote indirect call to " << NV("DirectCallee", DirectCallee) 331 << " with count " << NV("Count", Count) << " out of " 332 << NV("TotalCount", TotalCount);
|
| PGOMemOPSizeOpt.cpp | 498 << "optimized " << NV("Memop", MO.getName(TLI)) << " with count " 499 << NV("Count", SumForOpt) << " out of " << NV("Total", TotalCount) 500 << " for " << NV("Versions", Version) << " versions";
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| AnnotationRemarks.cpp | 106 << "Annotated " << NV("count", KV.second) << " instructions with " 107 << NV("type", KV.first));
|
| LoopVersioningLICM.cpp | 434 << NV("RuntimeChecks", LAI->getNumRuntimePointerChecks()) 436 << NV("Threshold", VectorizerParams::RuntimeMemoryCheckThreshold); 466 << NV("LoadAndStoreCounter", 469 << NV("Threshold", InvariantThreshold); 539 << NV("RuntimeChecks", LAI->getNumRuntimePointerChecks());
|
| LoopIdiomRecognize.cpp | 875 << ore::NV("Inst", "memcpy") << " in " 876 << ore::NV("Function", MCI->getFunction()) 878 << ore::NV("Reason", "memcpy size is not equal to stride"); 1143 << ore::NV("Function", TheStore->getFunction()) 1145 << ore::NV("NewFunction", NewCall->getCalledFunction()) 1243 << ore::NV("Inst", InstRemark) << " in " 1244 << ore::NV("Function", TheStore->getFunction()) 1246 << ore::NV("Reason", "The loop may access store location"); 1271 << ore::NV("Inst", InstRemark) << " in " 1272 << ore::NV("Function", TheStore->getFunction() [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| OptimizationRemarkEmitter.h | 128 using NV = DiagnosticInfoOptimizationBase::Argument;
|
| AssumptionCache.h | 91 /// Move affected values in the cache for OV to be affected values for NV. 92 void transferAffectedValuesInCache(Value *OV, Value *NV);
|
| /src/external/gpl3/gdb.old/dist/sim/aarch64/ |
| decode.h | 52 NV = 0xf /* ditto */
|
| /src/external/gpl3/gdb/dist/sim/aarch64/ |
| decode.h | 52 NV = 0xf /* ditto */
|
| /src/external/apache2/llvm/dist/clang/lib/AST/Interp/ |
| EvalEmitter.cpp | 138 unsigned NV = Ptr.isBaseClass() ? 0 : Record->getNumVirtualBases(); 162 for (unsigned I = 0; I < NV; ++I) {
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| SVals.cpp | 207 if (Optional<nonloc::ConcreteInt> NV = getAs<nonloc::ConcreteInt>()) 208 return NV->getValue() == I;
|