Home
last modified time | relevance | path

Searched refs:StartPtr (Results 1 – 10 of 10) sorted by relevance

/llvm-project-15.0.7/polly/test/DeLICM/
H A Dreduction_looprotate_load.ll3 ; void func(int *A, double* StartPtr) {
5 ; int phi = *StartPtr;
12 define void @func(double* noalias nonnull %A, double* noalias nonnull %StartPtr) {
26 %Start = load double, double* %StartPtr
H A Dreduction_looprotate_hoisted.ll3 ; void func(int *A, int* StartPtr) {
13 define void @func(i32* noalias nonnull %A, i32* noalias nonnull %StartPtr) {
27 %Start = load i32, i32* %StartPtr
/llvm-project-15.0.7/llvm/test/Transforms/LoopVectorize/ARM/
H A Dvector_cast.ll13 define void @test0(%class.A* %StartPtr, %class.A* %APtr) {
18 %addr = phi %class.A* [ %StartPtr, %entry ], [ %incdec.ptr.i, %for.body.i ]
/llvm-project-15.0.7/clang/lib/Lex/
H A DLexer.cpp3202 char Kind = getCharAndSize(StartPtr, CharSize); in tryReadNumericUCN()
3222 const char *CurPtr = StartPtr + CharSize; in tryReadNumericUCN()
3299 StartPtr = CurPtr; in tryReadNumericUCN()
3301 while (StartPtr != CurPtr) in tryReadNumericUCN()
3304 StartPtr = CurPtr; in tryReadNumericUCN()
3314 char C = getCharAndSize(StartPtr, CharSize); in tryReadNamedUCN()
3317 const char *CurPtr = StartPtr + CharSize; in tryReadNamedUCN()
3357 Diag(StartPtr, diag::err_invalid_ucn_name) in tryReadNamedUCN()
3388 StartPtr = CurPtr; in tryReadNamedUCN()
3390 while (StartPtr != CurPtr) in tryReadNamedUCN()
[all …]
/llvm-project-15.0.7/llvm/lib/Target/AArch64/
H A DAArch64StackTagging.cpp315 Instruction *collectInitializers(Instruction *StartInst, Value *StartPtr,
357 Value *StartPtr, in collectInitializers() argument
360 MemoryLocation AllocaLoc{StartPtr, Size}; in collectInitializers()
387 isPointerOffset(StartPtr, NextStore->getPointerOperand(), *DL); in collectInitializers()
404 Optional<int64_t> Offset = isPointerOffset(StartPtr, MSI->getDest(), *DL); in collectInitializers()
/llvm-project-15.0.7/clang/include/clang/Lex/
H A DLexer.h773 tryReadNumericUCN(const char *&StartPtr, const char *SlashLoc, Token *Result);
774 llvm::Optional<uint32_t> tryReadNamedUCN(const char *&StartPtr,
789 uint32_t tryReadUCN(const char *&StartPtr, const char *SlashLoc, Token *Result);
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp95 Value *StartPtr; member
211 R.StartPtr = Ptr; in addRange()
233 I->StartPtr = Ptr; in addRange()
380 Value *StartPtr, in tryMergingIntoMemset() argument
455 isPointerOffset(StartPtr, NextStore->getPointerOperand(), DL); in tryMergingIntoMemset()
468 Optional<int64_t> Offset = isPointerOffset(StartPtr, MSI->getDest(), DL); in tryMergingIntoMemset()
503 StartPtr = Range.StartPtr; in tryMergingIntoMemset()
505 AMemSet = Builder.CreateMemSet(StartPtr, ByteVal, Range.End - Range.Start, in tryMergingIntoMemset()
/llvm-project-15.0.7/llvm/include/llvm/Transforms/Scalar/
H A DMemCpyOptimizer.h69 Instruction *tryMergingIntoMemset(Instruction *I, Value *StartPtr,
/llvm-project-15.0.7/llvm/lib/Object/
H A DXCOFFObjectFile.cpp715 uintptr_t StartPtr = reinterpret_cast<uintptr_t>(Start); in getRawData() local
717 if (Error E = Binary::checkOffset(Data, StartPtr, Size)) in getRawData()
719 " data with offset 0x" + Twine::utohexstr(StartPtr) + in getRawData()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DLoopAccessAnalysis.cpp766 static void visitPointers(Value *StartPtr, const Loop &InnermostLoop, in visitPointers() argument
770 WorkList.push_back(StartPtr); in visitPointers()