Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64StackTagging.cpp330 Instruction *collectInitializers(Instruction *StartInst, Value *StartPtr,
373 Value *StartPtr, in collectInitializers() argument
376 MemoryLocation AllocaLoc{StartPtr, Size}; in collectInitializers()
403 NextStore->getPointerOperand()->getPointerOffsetFrom(StartPtr, *DL); in collectInitializers()
421 MSI->getDest()->getPointerOffsetFrom(StartPtr, *DL); in collectInitializers()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DLexer.cpp3385 std::optional<uint32_t> Lexer::tryReadNumericUCN(const char *&StartPtr, in tryReadNumericUCN() argument
3389 char Kind = getCharAndSize(StartPtr, CharSize); in tryReadNumericUCN()
3409 const char *CurPtr = StartPtr + CharSize; in tryReadNumericUCN()
3488 if (CurPtr - StartPtr == (ptrdiff_t)(Count + 1 + (Delimited ? 2 : 0))) in tryReadNumericUCN()
3489 StartPtr = CurPtr; in tryReadNumericUCN()
3491 while (StartPtr != CurPtr) in tryReadNumericUCN()
3492 (void)getAndAdvanceChar(StartPtr, *Result); in tryReadNumericUCN()
3494 StartPtr = CurPtr; in tryReadNumericUCN()
3499 std::optional<uint32_t> Lexer::tryReadNamedUCN(const char *&StartPtr, in tryReadNamedUCN() argument
3505 char C = getCharAndSize(StartPtr, CharSize); in tryReadNamedUCN()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp97 Value *StartPtr; member
216 R.StartPtr = Ptr; in addRange()
238 I->StartPtr = Ptr; in addRange()
359 Value *StartPtr, in tryMergingIntoMemset() argument
427 NextStore->getPointerOperand()->getPointerOffsetFrom(StartPtr, DL); in tryMergingIntoMemset()
441 MSI->getDest()->getPointerOffsetFrom(StartPtr, DL); in tryMergingIntoMemset()
477 StartPtr = Range.StartPtr; in tryMergingIntoMemset()
479 AMemSet = Builder.CreateMemSet(StartPtr, ByteVal, Range.End - Range.Start, in tryMergingIntoMemset()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DMemCpyOptimizer.h82 Instruction *tryMergingIntoMemset(Instruction *I, Value *StartPtr,
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DXCOFFObjectFile.cpp779 uintptr_t StartPtr = reinterpret_cast<uintptr_t>(Start); in getRawData() local
781 if (Error E = Binary::checkOffset(Data, StartPtr, Size)) in getRawData()
783 " data with offset 0x" + Twine::utohexstr(StartPtr) + in getRawData()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopAccessAnalysis.cpp847 static void visitPointers(Value *StartPtr, const Loop &InnermostLoop, in visitPointers() argument
851 WorkList.push_back(StartPtr); in visitPointers()