Searched refs:NumStores (Results 1 – 11 of 11) sorted by relevance
/external/llvm/lib/Target/PowerPC/ |
D | PPCHazardRecognizers.cpp | 273 NumStores = 0; in EndDispatchGroup() 300 for (unsigned i = 0, e = NumStores; i != e; ++i) { in isLoadOfStoredAddress() 375 if (isLoad && NumStores && !MI->memoperands_empty()) { in getHazardType() 402 if (isStore && NumStores < 4 && !MI->memoperands_empty()) { in EmitInstruction() 404 StoreSize[NumStores] = MO->getSize(); in EmitInstruction() 405 StoreOffset[NumStores] = MO->getOffset(); in EmitInstruction() 406 StoreValue[NumStores] = MO->getValue(); in EmitInstruction() 407 ++NumStores; in EmitInstruction()
|
D | PPCHazardRecognizers.h | 75 unsigned NumStores; variable
|
/external/llvm/include/llvm/Analysis/ |
D | LoopAccessAnalysis.h | 396 unsigned getNumStores() const { return NumStores; } in getNumStores() 472 unsigned NumStores; variable
|
/external/clang/include/clang/StaticAnalyzer/Core/ |
D | AnalyzerOptions.h | 46 NumStores enumerator
|
/external/llvm/lib/Analysis/IPA/ |
D | InlineCost.cpp | 1052 unsigned NumStores = (TypeSize + PointerSize - 1) / PointerSize; in analyzeCall() local 1060 NumStores = std::min(NumStores, 8U); in analyzeCall() 1062 Cost -= 2 * NumStores * InlineConstants::InstrCost; in analyzeCall()
|
/external/clang/lib/CodeGen/ |
D | CGDecl.cpp | 744 unsigned &NumStores) { in canEmitInitWithFewStoresAfterMemset() argument 753 return Init->isNullValue() || NumStores--; in canEmitInitWithFewStoresAfterMemset() 759 if (!canEmitInitWithFewStoresAfterMemset(Elt, NumStores)) in canEmitInitWithFewStoresAfterMemset() 769 if (!canEmitInitWithFewStoresAfterMemset(Elt, NumStores)) in canEmitInitWithFewStoresAfterMemset()
|
/external/llvm/lib/CodeGen/ |
D | RegAllocFast.cpp | 42 STATISTIC(NumStores, "Number of stores added"); 291 ++NumStores; // Update statistics in spillVirtReg()
|
/external/llvm/lib/Analysis/ |
D | LoopAccessAnalysis.cpp | 1014 NumStores++; in analyzeLoop() 1308 TLI(TLI), AA(AA), DT(DT), NumLoads(0), NumStores(0), in LoopAccessInfo()
|
/external/llvm/utils/TableGen/ |
D | CodeGenDAGPatterns.cpp | 3304 unsigned NumStores = 0; in VerifyInstructionFlags() local 3309 NumStores += InstInfo.mayStore; in VerifyInstructionFlags() 3327 if (!PatInfo.hasSideEffects && PatInfo.mayStore && !NumStores) in VerifyInstructionFlags()
|
/external/clang/lib/Frontend/ |
D | CompilerInvocation.cpp | 144 .Default(NumStores); in ParseAnalyzerArgs() 145 if (Value == NumStores) { in ParseAnalyzerArgs()
|
/external/llvm/lib/Transforms/Vectorize/ |
D | LoopVectorize.cpp | 4742 unsigned NumStores = Legal->getNumStores(); in selectUnrollFactor() local 4744 unsigned StoresUF = UF / (NumStores ? NumStores : 1); in selectUnrollFactor()
|