Home
last modified time | relevance | path

Searched refs:NumStores (Results 1 – 11 of 11) sorted by relevance

/external/llvm/lib/Target/PowerPC/
DPPCHazardRecognizers.cpp273 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()
DPPCHazardRecognizers.h75 unsigned NumStores; variable
/external/llvm/include/llvm/Analysis/
DLoopAccessAnalysis.h396 unsigned getNumStores() const { return NumStores; } in getNumStores()
472 unsigned NumStores; variable
/external/clang/include/clang/StaticAnalyzer/Core/
DAnalyzerOptions.h46 NumStores enumerator
/external/llvm/lib/Analysis/IPA/
DInlineCost.cpp1052 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/
DCGDecl.cpp744 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/
DRegAllocFast.cpp42 STATISTIC(NumStores, "Number of stores added");
291 ++NumStores; // Update statistics in spillVirtReg()
/external/llvm/lib/Analysis/
DLoopAccessAnalysis.cpp1014 NumStores++; in analyzeLoop()
1308 TLI(TLI), AA(AA), DT(DT), NumLoads(0), NumStores(0), in LoopAccessInfo()
/external/llvm/utils/TableGen/
DCodeGenDAGPatterns.cpp3304 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/
DCompilerInvocation.cpp144 .Default(NumStores); in ParseAnalyzerArgs()
145 if (Value == NumStores) { in ParseAnalyzerArgs()
/external/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp4742 unsigned NumStores = Legal->getNumStores(); in selectUnrollFactor() local
4744 unsigned StoresUF = UF / (NumStores ? NumStores : 1); in selectUnrollFactor()