Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Transforms/Utils/
H A DVNCoercion.cpp162 int64_t StoreOffset = 0, LoadOffset = 0; in analyzeLoadFromClobberingWrite() local
164 GetPointerBaseWithConstantOffset(WritePtr, StoreOffset, DL); in analyzeLoadFromClobberingWrite()
185 if (StoreOffset < LoadOffset) in analyzeLoadFromClobberingWrite()
186 isAAFailure = StoreOffset + int64_t(StoreSize) <= LoadOffset; in analyzeLoadFromClobberingWrite()
188 isAAFailure = LoadOffset + int64_t(LoadSize) <= StoreOffset; in analyzeLoadFromClobberingWrite()
197 if (StoreOffset > LoadOffset || in analyzeLoadFromClobberingWrite()
198 StoreOffset + StoreSize < LoadOffset + LoadSize) in analyzeLoadFromClobberingWrite()
203 return LoadOffset - StoreOffset; in analyzeLoadFromClobberingWrite()
/freebsd-12.1/contrib/llvm/lib/Target/PowerPC/
H A DPPCHazardRecognizers.cpp304 if (LoadValue == StoreValue[i] && LoadOffset == StoreOffset[i]) in isLoadOfStoredAddress()
312 if (StoreOffset[i] < LoadOffset) { in isLoadOfStoredAddress()
313 if (int64_t(StoreOffset[i]+StoreSize[i]) > LoadOffset) return true; in isLoadOfStoredAddress()
315 if (int64_t(LoadOffset+LoadSize) > StoreOffset[i]) return true; in isLoadOfStoredAddress()
407 StoreOffset[NumStores] = MO->getOffset(); in EmitInstruction()
H A DPPCHazardRecognizers.h73 int64_t StoreOffset[4]; variable
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGExprCXX.cpp546 CharUnits StoreOffset = Store.first; in EmitNullBaseClassInitialization() local
550 CGF.Builder.CreateConstInBoundsByteGEP(DestPtr, StoreOffset), in EmitNullBaseClassInitialization()
551 CGF.Builder.CreateConstInBoundsByteGEP(SrcPtr, StoreOffset), in EmitNullBaseClassInitialization()
560 CharUnits StoreOffset = Store.first; in EmitNullBaseClassInitialization() local
564 CGF.Builder.CreateConstInBoundsByteGEP(DestPtr, StoreOffset), in EmitNullBaseClassInitialization()
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp2986 int64_t StoreOffset = PrevDef->getOperand(OffsetPos1).getImm(); in canUseLastOffsetValue() local
2988 NewMI->getOperand(OffsetPosLd).setImm(LoadOffset + StoreOffset); in canUseLastOffsetValue()
2998 Offset = StoreOffset; in canUseLastOffsetValue()