Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
DPPCHazardRecognizers.cpp61 NumStores = 0; in EndDispatchGroup()
93 for (unsigned i = 0, e = NumStores; i != e; ++i) { in isLoadOfStoredAddress()
171 if (isLoad && NumStores) { in getHazardType()
284 StoreSize[NumStores] = ThisStoreSize; in EmitInstruction()
285 StorePtr1[NumStores] = Node->getOperand(1); in EmitInstruction()
286 StorePtr2[NumStores] = Node->getOperand(2); in EmitInstruction()
287 ++NumStores; in EmitInstruction()
DPPCHazardRecognizers.h47 unsigned NumStores; variable
/external/llvm/lib/Target/PowerPC/
DPPCHazardRecognizers.cpp276 NumStores = 0; in EndDispatchGroup()
303 for (unsigned i = 0, e = NumStores; i != e; ++i) { in isLoadOfStoredAddress()
378 if (isLoad && NumStores && !MI->memoperands_empty()) { in getHazardType()
405 if (isStore && NumStores < 4 && !MI->memoperands_empty()) { in EmitInstruction()
407 StoreSize[NumStores] = MO->getSize(); in EmitInstruction()
408 StoreOffset[NumStores] = MO->getOffset(); in EmitInstruction()
409 StoreValue[NumStores] = MO->getValue(); in EmitInstruction()
410 ++NumStores; in EmitInstruction()
DPPCHazardRecognizers.h75 unsigned NumStores; variable
/external/llvm/include/llvm/Analysis/
DLoopAccessAnalysis.h524 NumLoads(LAI.NumLoads), NumStores(LAI.NumStores), in LoopAccessInfo()
539 NumStores = LAI.NumStores;
572 unsigned getNumStores() const { return NumStores; } in getNumStores()
662 unsigned NumStores; variable
/external/clang/include/clang/StaticAnalyzer/Core/
DAnalyzerOptions.h46 NumStores enumerator
/external/llvm/lib/Analysis/
DInlineCost.cpp1237 unsigned NumStores = (TypeSize + PointerSize - 1) / PointerSize; in analyzeCall() local
1245 NumStores = std::min(NumStores, 8U); in analyzeCall()
1247 Cost -= 2 * NumStores * InlineConstants::InstrCost; in analyzeCall()
DLoopAccessAnalysis.cpp1579 NumStores++; in analyzeLoop()
1926 NumLoads(0), NumStores(0), MaxSafeDepDistBytes(-1), CanVecMem(false), in LoopAccessInfo()
/external/clang/lib/CodeGen/
DCGDecl.cpp803 unsigned &NumStores) { in canEmitInitWithFewStoresAfterMemset() argument
812 return Init->isNullValue() || NumStores--; in canEmitInitWithFewStoresAfterMemset()
818 if (!canEmitInitWithFewStoresAfterMemset(Elt, NumStores)) in canEmitInitWithFewStoresAfterMemset()
828 if (!canEmitInitWithFewStoresAfterMemset(Elt, NumStores)) in canEmitInitWithFewStoresAfterMemset()
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DRegAllocFast.cpp40 STATISTIC(NumStores, "Number of stores added");
270 ++NumStores; // Update statistics in spillVirtReg()
DVirtRegRewriter.cpp33 STATISTIC(NumStores , "Number of stores added");
1655 ++NumStores; in SpillRegToStackSlot()
/external/llvm/lib/CodeGen/
DRegAllocFast.cpp40 STATISTIC(NumStores, "Number of stores added");
295 ++NumStores; // Update statistics in spillVirtReg()
/external/llvm/utils/TableGen/
DCodeGenDAGPatterns.cpp3350 unsigned NumStores = 0; in VerifyInstructionFlags() local
3355 NumStores += InstInfo.mayStore; in VerifyInstructionFlags()
3373 if (!PatInfo.hasSideEffects && PatInfo.mayStore && !NumStores) in VerifyInstructionFlags()
/external/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp449 EVT MemVT, unsigned NumStores,
11230 unsigned NumStores, bool IsConstantSrc, bool UseVector) { in MergeStoresOfConstantsOrVecElts() argument
11232 if (NumStores < 2) in MergeStoresOfConstantsOrVecElts()
11239 for (unsigned i=0; i < NumStores; ++i) { in MergeStoresOfConstantsOrVecElts()
11257 unsigned Elts = NumStores; in MergeStoresOfConstantsOrVecElts()
11270 for (unsigned i = 0; i < NumStores; ++i) { in MergeStoresOfConstantsOrVecElts()
11288 unsigned SizeInBits = NumStores * ElementSizeBytes * 8; in MergeStoresOfConstantsOrVecElts()
11294 for (unsigned i = 0; i < NumStores; ++i) { in MergeStoresOfConstantsOrVecElts()
11295 unsigned Idx = IsLE ? (NumStores - 1 - i) : i; in MergeStoresOfConstantsOrVecElts()
11328 for (unsigned i = 0; i < NumStores; ++i) in MergeStoresOfConstantsOrVecElts()
[all …]
/external/clang/lib/Frontend/
DCompilerInvocation.cpp165 .Default(NumStores); in ParseAnalyzerArgs()
166 if (Value == NumStores) { in ParseAnalyzerArgs()
/external/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp5487 unsigned NumStores = Legal->getNumStores(); in selectInterleaveCount() local
5489 unsigned StoresIC = IC / (NumStores ? NumStores : 1); in selectInterleaveCount()