Home
last modified time | relevance | path

Searched refs:StoreOffset (Results 1 – 6 of 6) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
H A DPPCHazardRecognizers.cpp302 if (LoadValue == StoreValue[i] && LoadOffset == StoreOffset[i]) in isLoadOfStoredAddress()
310 if (StoreOffset[i] < LoadOffset) { in isLoadOfStoredAddress()
311 if (int64_t(StoreOffset[i]+StoreSize[i]) > LoadOffset) return true; in isLoadOfStoredAddress()
313 if (int64_t(LoadOffset+LoadSize) > StoreOffset[i]) return true; in isLoadOfStoredAddress()
405 StoreOffset[NumStores] = MO->getOffset(); in EmitInstruction()
H A DPPCHazardRecognizers.h72 int64_t StoreOffset[4]; variable
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DVNCoercion.cpp185 int64_t StoreOffset = 0, LoadOffset = 0; in analyzeLoadFromClobberingWrite() local
187 GetPointerBaseWithConstantOffset(WritePtr, StoreOffset, DL); in analyzeLoadFromClobberingWrite()
203 if (StoreOffset > LoadOffset || in analyzeLoadFromClobberingWrite()
204 StoreOffset + StoreSize < LoadOffset + LoadSize) in analyzeLoadFromClobberingWrite()
216 if (StoreOffset + int64_t(StoreSize) <= LoadOffset) in analyzeLoadFromClobberingWrite()
221 return LoadOffset - StoreOffset; in analyzeLoadFromClobberingWrite()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DLoads.cpp455 APInt StoreOffset(DL.getTypeSizeInBits(StorePtr->getType()), 0); in areNonOverlapSameBaseLoadAndStore() local
459 DL, StoreOffset, /* AllowNonInbounds */ false); in areNonOverlapSameBaseLoadAndStore()
466 ConstantRange StoreRange(StoreOffset, in areNonOverlapSameBaseLoadAndStore()
467 StoreOffset + StoreAccessSize.toRaw()); in areNonOverlapSameBaseLoadAndStore()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGExprCXX.cpp559 CharUnits StoreOffset = Store.first; in EmitNullBaseClassInitialization() local
563 CGF.Builder.CreateConstInBoundsByteGEP(DestPtr, StoreOffset), in EmitNullBaseClassInitialization()
564 CGF.Builder.CreateConstInBoundsByteGEP(SrcPtr, StoreOffset), in EmitNullBaseClassInitialization()
573 CharUnits StoreOffset = Store.first; in EmitNullBaseClassInitialization() local
577 CGF.Builder.CreateConstInBoundsByteGEP(DestPtr, StoreOffset), in EmitNullBaseClassInitialization()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp2205 int64_t StoreOffset = PrevDef->getOperand(OffsetPos1).getImm(); in canUseLastOffsetValue() local
2207 NewMI->getOperand(OffsetPosLd).setImm(LoadOffset + StoreOffset); in canUseLastOffsetValue()
2217 Offset = StoreOffset; in canUseLastOffsetValue()