Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64StackTagging.cpp309 Instruction *collectInitializers(Instruction *StartInst, Value *StartPtr,
351 Value *StartPtr, in collectInitializers() argument
354 MemoryLocation AllocaLoc{StartPtr, Size}; in collectInitializers()
381 NextStore->getPointerOperand()->getPointerOffsetFrom(StartPtr, *DL); in collectInitializers()
399 MSI->getDest()->getPointerOffsetFrom(StartPtr, *DL); in collectInitializers()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Lex/
H A DLexer.h774 tryReadNumericUCN(const char *&StartPtr, const char *SlashLoc, Token *Result);
775 std::optional<uint32_t> tryReadNamedUCN(const char *&StartPtr,
790 uint32_t tryReadUCN(const char *&StartPtr, const char *SlashLoc, Token *Result);
/freebsd-14.2/contrib/llvm-project/clang/lib/Lex/
H A DLexer.cpp3333 char Kind = getCharAndSize(StartPtr, CharSize); in tryReadNumericUCN()
3353 const char *CurPtr = StartPtr + CharSize; in tryReadNumericUCN()
3433 StartPtr = CurPtr; in tryReadNumericUCN()
3435 while (StartPtr != CurPtr) in tryReadNumericUCN()
3438 StartPtr = CurPtr; in tryReadNumericUCN()
3449 char C = getCharAndSize(StartPtr, CharSize); in tryReadNamedUCN()
3452 const char *CurPtr = StartPtr + CharSize; in tryReadNamedUCN()
3527 StartPtr = CurPtr; in tryReadNamedUCN()
3529 while (StartPtr != CurPtr) in tryReadNamedUCN()
3532 StartPtr = CurPtr; in tryReadNamedUCN()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp96 Value *StartPtr; member
212 R.StartPtr = Ptr; in addRange()
234 I->StartPtr = Ptr; in addRange()
355 Value *StartPtr, in tryMergingIntoMemset() argument
422 NextStore->getPointerOperand()->getPointerOffsetFrom(StartPtr, DL); in tryMergingIntoMemset()
436 MSI->getDest()->getPointerOffsetFrom(StartPtr, DL); in tryMergingIntoMemset()
471 StartPtr = Range.StartPtr; in tryMergingIntoMemset()
473 AMemSet = Builder.CreateMemSet(StartPtr, ByteVal, Range.End - Range.Start, in tryMergingIntoMemset()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DMemCpyOptimizer.h81 Instruction *tryMergingIntoMemset(Instruction *I, Value *StartPtr,
/freebsd-14.2/contrib/llvm-project/llvm/lib/Object/
H A DXCOFFObjectFile.cpp771 uintptr_t StartPtr = reinterpret_cast<uintptr_t>(Start); in getRawData() local
773 if (Error E = Binary::checkOffset(Data, StartPtr, Size)) in getRawData()
775 " data with offset 0x" + Twine::utohexstr(StartPtr) + in getRawData()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopAccessAnalysis.cpp849 static void visitPointers(Value *StartPtr, const Loop &InnermostLoop, in visitPointers() argument
853 WorkList.push_back(StartPtr); in visitPointers()