Home
last modified time | relevance | path

Searched refs:Pointers (Results 1 – 25 of 29) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/
H A DInterpBlock.cpp22 assert(!Pointers); in addPointer()
29 if (Pointers) in addPointer()
30 Pointers->Prev = P; in addPointer()
31 P->Next = Pointers; in addPointer()
33 Pointers = P; in addPointer()
39 assert(!Pointers); in removePointer()
47 if (Pointers == P) in removePointer()
48 Pointers = P->Next; in removePointer()
57 if (Pointers == nullptr && IsDead) in cleanup()
65 assert(!Pointers); in replacePointer()
[all …]
H A DInterpBlock.h63 bool hasPointers() const { return Pointers; } in hasPointers()
141 Pointer *Pointers = nullptr; variable
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DAliasAnalysisEvaluator.cpp106 SetVector<std::pair<const Value *, Type *>> Pointers; in runInternal() local
113 Pointers.insert({LI->getPointerOperand(), LI->getType()}); in runInternal()
116 Pointers.insert({SI->getPointerOperand(), in runInternal()
125 errs() << "Function: " << F.getName() << ": " << Pointers.size() in runInternal()
129 for (auto I1 = Pointers.begin(), E = Pointers.end(); I1 != E; ++I1) { in runInternal()
131 for (auto I2 = Pointers.begin(); I2 != I1; ++I2) { in runInternal()
213 for (const auto &Pointer : Pointers) { in runInternal()
H A DLoopAccessAnalysis.cpp184 : High(RtCheck.Pointers[Index].End), Low(RtCheck.Pointers[Index].Start), in RuntimeCheckingPtrGroup()
185 AddressSpace(RtCheck.Pointers[Index] in RuntimeCheckingPtrGroup()
265 PointerInfo *Src = &Pointers[CGI.Members[0]]; in tryToCreateDiffCheck()
266 PointerInfo *Sink = &Pointers[CGJ.Members[0]]; in tryToCreateDiffCheck()
420 Index, RtCheck.Pointers[Index].Start, RtCheck.Pointers[Index].End, in addPointer()
590 const PointerInfo &PointerI = Pointers[I]; in needsChecking()
591 const PointerInfo &PointerJ = Pointers[J]; in needsChecking()
1246 if (RtCheck.Pointers[i].DependencySetId == in canCheckPtrAtRT()
1247 RtCheck.Pointers[j].DependencySetId) in canCheckPtrAtRT()
1250 if (RtCheck.Pointers[i].AliasSetId != RtCheck.Pointers[j].AliasSetId) in canCheckPtrAtRT()
[all …]
H A DAliasSetTracker.cpp204 SmallSetVector<const Value *, 8> Pointers; in getPointers() local
206 Pointers.insert(MemLoc.Ptr); in getPointers()
207 return Pointers.takeVector(); in getPointers()
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DDataLayout.cpp573 Pointers == Other.Pointers; in operator ==()
633 auto I = lower_bound(Pointers, AddressSpace, in getPointerAlignElem()
637 if (I != Pointers.end() && I->AddressSpace == AddressSpace) in getPointerAlignElem()
641 assert(Pointers[0].AddressSpace == 0); in getPointerAlignElem()
642 return Pointers[0]; in getPointerAlignElem()
655 auto I = lower_bound(Pointers, AddrSpace, in setPointerAlignmentInBits()
659 if (I == Pointers.end() || I->AddressSpace != AddrSpace) { in setPointerAlignmentInBits()
660 Pointers.insert(I, in setPointerAlignmentInBits()
711 Pointers.clear(); in clear()
756 for (auto &P : Pointers) in getMaxIndexSize()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DLoopAccessAnalysis.h438 Pointers.clear(); in reset()
452 bool empty() const { return Pointers.empty(); } in empty()
497 SmallVector<PointerInfo, 2> Pointers; variable
516 return Pointers[PtrIdx]; in getPointerInfo()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DDataLayout.h156 PointersTy Pointers; variable
220 Pointers = DL.Pointers;
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopDistribute.cpp502 unsigned N = RtPtrCheck->Pointers.size(); in computePartitionSetForPointers()
505 Value *Ptr = RtPtrCheck->Pointers[I].PointerValue; in computePartitionSetForPointers()
507 LAI.getInstructionsForAccess(Ptr, RtPtrCheck->Pointers[I].IsWritePtr); in computePartitionSetForPointers()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCGenRegisterBankInfo.def32 // Pointers to the entries in this array are returned by getValueMapping() and
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMPIRBuilder.h1697 MapValuesArrayTy Pointers; member
1708 Pointers.append(CurInfo.Pointers.begin(), CurInfo.Pointers.end()); in append()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A Dllvm-pdbutil.cpp180 static cl::opt<bool> Pointers("pointers", cl::desc("Dump enum types"), variable
248 cl::opt<bool> Pointers("pointers", cl::desc("Display pointer types"), variable
1048 if (opts::diadump::Pointers) in dumpDia()
1227 opts::pretty::Funcsigs || opts::pretty::Pointers || in dumpPretty()
1599 opts::pretty::Pointers = true; in main()
H A DPrettyTypeDumper.cpp209 if (opts::pretty::Pointers) in start()
H A Dllvm-pdbutil.h88 extern llvm::cl::opt<bool> Pointers;
/freebsd-14.2/contrib/googletest/googlemock/test/
H A Dgmock-matchers-arithmetic_test.cc141 using Pointers = std::tuple<std::unique_ptr<int>, std::unique_ptr<int>>; in TEST() typedef
142 Matcher<Pointers> matcher = Eq(); in TEST()
143 Pointers pointers; in TEST()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMips.td63 "Pointers are 64-bit wide">;
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp7335 CombinedInfo.Pointers.push_back(LB.getPointer()); in generateInfoForComponentList()
7867 UseDeviceDataCombinedInfo.Pointers.push_back(Ptr); in generateAllInfoForClauses()
8110 CurInfo.Pointers.push_back(Ptr); in generateAllInfoForClauses()
8236 CombinedInfo.Pointers.push_back(LB); in emitCombinedEntry()
8411 if (Pointers[Idx] != BasePtr) in adjustMemberOfForLambdaCaptures()
8452 CombinedInfo.Pointers.push_back(Arg); in generateInfoForCapture()
8696 CombinedInfo.Pointers.push_back(CV); in generateDefaultMapInfo()
8710 CombinedInfo.Pointers.push_back(CV); in generateDefaultMapInfo()
8749 CombinedInfo.Pointers.push_back(CV); in generateDefaultMapInfo()
9464 CurInfo.Pointers.push_back(*CV); in emitTargetCallKernelLaunch()
[all …]
/freebsd-14.2/share/misc/
H A Dscsi_modes449 {C2 Pointers are supported} t1
/freebsd-14.2/crypto/openssl/doc/man7/
H A DEVP_RAND.pod111 Pointers to these DRBG instances can be obtained using
/freebsd-14.2/lib/libc/db/mpool/
H A Dmpool.libtp218 /* Update Hash Pointers */
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86CallingConv.td382 // Pointers are always returned in full 64-bit registers.
560 // Pointers are always passed in full 64-bit registers.
/freebsd-14.2/contrib/tcp_wrappers/
H A DREADME492 section. Pointers to IDENT daemon software are described in the section
/freebsd-14.2/sys/dev/aic7xxx/
H A Daic79xx.reg3102 * Data FIFO Pointers
H A Daic7xxx.seq1724 * Copying RAM values back to SCB, for Save Data Pointers message, but
/freebsd-14.2/contrib/llvm-project/libcxx/include/
H A Ddeque1102 // Pointers to first and after last elements

12