| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/ |
| D | CaptureTracking.cpp | 206 void llvm::PointerMayBeCaptured(const Value *V, CaptureTracker *Tracker, in PointerMayBeCaptured() argument 222 Tracker->tooManyUses(); in PointerMayBeCaptured() 227 if (!Tracker->shouldExplore(&U)) in PointerMayBeCaptured() 267 if (Tracker->captured(U)) in PointerMayBeCaptured() 280 if (Tracker->captured(U)) in PointerMayBeCaptured() 288 if (Tracker->captured(U)) in PointerMayBeCaptured() 298 if (Tracker->captured(U)) in PointerMayBeCaptured() 309 if (Tracker->captured(U)) in PointerMayBeCaptured() 322 if (Tracker->captured(U)) in PointerMayBeCaptured() 350 if (Tracker->isDereferenceableOrNull(O, I->getModule()->getDataLayout())) in PointerMayBeCaptured() [all …]
|
| D | AliasSetTracker.cpp | 745 AliasSetTracker Tracker(AAWP.getAAResults()); in runOnFunction() local 748 Tracker.add(&I); in runOnFunction() 749 Tracker.print(errs()); in runOnFunction() 769 AliasSetTracker Tracker(AA); in run() local 772 Tracker.add(&I); in run() 773 Tracker.print(OS); in run()
|
| /freebsd-12-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/ |
| D | BugReporterVisitors.h | 154 class Tracker; variable 155 using TrackerRef = llvm::IntrusiveRefCntPtr<Tracker>; 165 class Tracker : public llvm::RefCountedBase<Tracker> { 176 Tracker(PathSensitiveBugReport &Report); 179 virtual ~Tracker() = default; 182 return new Tracker(Report); in create() 293 Tracker &ParentTracker; 296 ExpressionHandler(Tracker &ParentTracker) : ParentTracker(ParentTracker) {} in ExpressionHandler() 305 virtual Tracker::Result handle(const Expr *E, const ExplodedNode *Original, 310 Tracker &getParentTracker() { return ParentTracker; } in getParentTracker() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/ |
| D | MachineCopyPropagation.cpp | 299 CopyTracker Tracker; member in __anon0ce1fe200111::MachineCopyPropagation 319 if (MachineInstr *Copy = Tracker.findCopyForUnit(*RUI, *TRI)) { in ReadRegister() 359 MachineInstr *PrevCopy = Tracker.findAvailCopy(Copy, Def, *TRI); in eraseIfRedundant() 481 if (!Tracker.hasAnyCopies()) in forwardUses() 509 Tracker.findAvailCopy(MI, MOUse.getReg().asMCReg(), *TRI); in forwardUses() 636 Tracker.clobberRegister(Def, *TRI); in ForwardCopyPropagateBlock() 643 Tracker.clobberRegister(Reg, *TRI); in ForwardCopyPropagateBlock() 646 Tracker.trackCopy(MI, *TRI); in ForwardCopyPropagateBlock() 660 Tracker.clobberRegister(Reg, *TRI); in ForwardCopyPropagateBlock() 709 Tracker.clobberRegister(Reg, *TRI); in ForwardCopyPropagateBlock() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/ |
| D | SafepointIRVerifier.cpp | 475 static void verifyFunction(GCPtrTracker &&Tracker, 527 void verifyInstruction(const GCPtrTracker *Tracker, const Instruction &I, 577 void GCPtrTracker::verifyFunction(GCPtrTracker &&Tracker, in verifyFunction() argument 581 ReversePostOrderTraversal<const Function *> RPOT(&Tracker.F); in verifyFunction() 583 BasicBlockState *BBS = Tracker.getBasicBlockState(BB); in verifyFunction() 591 if (Tracker.instructionMayBeSkipped(&I)) in verifyFunction() 594 Verifier.verifyInstruction(&Tracker, I, AvailableSet); in verifyFunction() 792 const GCPtrTracker *Tracker, const Instruction &I, in verifyInstruction() argument 798 const BasicBlockState *InBBS = Tracker->getBasicBlockState(InBB); in verifyInstruction() 800 !Tracker->hasLiveIncomingEdge(PN, InBB)) in verifyInstruction() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/ |
| D | BottleneckAnalysis.cpp | 376 FOS << Tracker.resolveResourceName(Dep.ResourceOrRegID); in printCriticalSequence() 445 : InstructionView(sti, Printer, S), Tracker(sti.getSchedModel()), in BottleneckAnalysis() 491 Tracker.onInstructionDispatched(IID); in onEvent() 495 Tracker.onInstructionExecuted(IID); in onEvent() 506 unsigned Cycles = 2 * Tracker.getResourcePressureCycles(IID); in onEvent() 511 Tracker.getResourceUsers(Current, Users); in onEvent() 520 Cycles = RegDep.Cycles + 2 * Tracker.getRegisterPressureCycles(IID); in onEvent() 527 Cycles = MemDep.Cycles + 2 * Tracker.getMemoryPressureCycles(IID); in onEvent() 532 Tracker.handleInstructionIssuedEvent( in onEvent() 544 Tracker.handlePressureEvent(Event); in onEvent() [all …]
|
| D | BottleneckAnalysis.h | 289 PressureTracker Tracker; variable
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| D | BugReporterVisitors.cpp | 2014 Tracker::Result handle(const Expr *Inner, const ExplodedNode *InputNode, in handle() 2042 Tracker::Result handle(const Expr *Inner, const ExplodedNode *InputNode, in handle() 2060 Tracker::Result handle(const Expr *Inner, const ExplodedNode *InputNode, in handle() 2078 Tracker::Result handle(const Expr *Inner, const ExplodedNode *InputNode, in handle() 2084 Tracker::Result Result; in handle() 2160 Tracker::Result handle(const Expr *E, const ExplodedNode *InputNode, in handle() 2244 Tracker::Result handle(const Expr *Inner, const ExplodedNode *InputNode, in handle() 2250 Tracker::Result Result; in handle() 2307 Tracker::Result handle(const Expr *E, const ExplodedNode *InputNode, in handle() 2328 Tracker::Result CombinedResult; in handle() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| D | TailRecursionElimination.cpp | 199 AllocaDerivedValueTracker Tracker; in markTails() local 202 Tracker.walk(&Arg); in markTails() 207 Tracker.walk(AI); in markTails() 240 if (Tracker.EscapePoints.count(&I)) in markTails() 286 if (!IsNoTail && Escaped == UNESCAPED && !Tracker.AllocaUsers.count(CI)) in markTails()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| D | CaptureTracking.h | 97 void PointerMayBeCaptured(const Value *V, CaptureTracker *Tracker,
|
| /freebsd-12-stable/contrib/file/magic/Magdir/ |
| D | audio | 346 0 string IMPM Impulse Tracker module sound data - 358 # samples in Impulse Tracker's native format. 360 0 string IMPS Impulse Tracker Sample 365 0 string IMPI Impulse Tracker Instrument 378 # scream tracker: file(1) magic for Scream Tracker sample files 381 76 string SCRS Scream Tracker Sample 414 >3 byte <2 Hively Tracker Song 446 0 string Extreme Extreme Tracker AMS Module v1.3 455 44 string PTMF Poly Tracker PTM Module 458 0 string RAD\40by\40REALiTY!! RAD Adlib Tracker Module RAD [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
| D | VPlanValue.h | 125 void printAsOperand(raw_ostream &OS, VPSlotTracker &Tracker) const; 126 void print(raw_ostream &OS, VPSlotTracker &Tracker) const;
|
| D | VPlan.cpp | 1376 void VPValue::printAsOperand(raw_ostream &OS, VPSlotTracker &Tracker) const { in printAsOperand() 1384 unsigned Slot = Tracker.getSlot(this); in printAsOperand() 1388 OS << "vp<%" << Tracker.getSlot(this) << ">"; in printAsOperand()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| D | FunctionAttrs.cpp | 733 ArgumentUsesTracker Tracker(SCCNodes); in addArgumentAttrs() local 734 PointerMayBeCaptured(&*A, &Tracker); in addArgumentAttrs() 735 if (!Tracker.Captured) { in addArgumentAttrs() 736 if (Tracker.Uses.empty()) { in addArgumentAttrs() 746 for (Argument *Use : Tracker.Uses) { in addArgumentAttrs()
|
| D | AttributorAttributes.cpp | 4978 AACaptureUseTracker Tracker(A, *this, IsDeadAA, T, PotentialCopies, in updateImpl() local 4986 Tracker.valueMayBeCaptured(PotentialCopies[Idx++]); in updateImpl()
|
| /freebsd-12-stable/contrib/flex/ |
| D | README | 11 Bug reports should be submitted using the SourceForge Bug Tracker
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Parse/ |
| D | ParseExprCXX.cpp | 3825 BalancedDelimiterTracker &Tracker, in ParseCXXAmbiguousParenExpression() argument 3860 Tracker.consumeClose(); in ParseCXXAmbiguousParenExpression() 3916 Tracker.consumeClose(); in ParseCXXAmbiguousParenExpression() 3930 Tracker.getOpenLocation(), in ParseCXXAmbiguousParenExpression() 3931 Tracker.getCloseLocation()); in ParseCXXAmbiguousParenExpression() 3942 Result = Actions.ActOnCastExpr(getCurScope(), Tracker.getOpenLocation(), in ParseCXXAmbiguousParenExpression() 3944 Tracker.getCloseLocation(), Result.get()); in ParseCXXAmbiguousParenExpression() 3954 Result = Actions.ActOnParenExpr(Tracker.getOpenLocation(), in ParseCXXAmbiguousParenExpression() 3966 Tracker.consumeClose(); in ParseCXXAmbiguousParenExpression()
|
| D | ParseDecl.cpp | 3507 BalancedDelimiterTracker Tracker(*this, tok::l_paren); in ParseDeclarationSpecifiers() local 3508 if (Tracker.consumeOpen()) { in ParseDeclarationSpecifiers() 3514 Tracker.skipToEnd(); in ParseDeclarationSpecifiers() 3520 Tracker.consumeClose(); in ParseDeclarationSpecifiers() 3722 BalancedDelimiterTracker Tracker(*this, tok::l_paren); in ParseDeclarationSpecifiers() local 3723 Tracker.consumeOpen(); in ParseDeclarationSpecifiers() 3728 Tracker.consumeClose(); in ParseDeclarationSpecifiers() 3732 Tracker.skipToEnd(); in ParseDeclarationSpecifiers() 6504 BalancedDelimiterTracker &Tracker, in ParseFunctionDeclarator() argument 6538 LParenLoc = Tracker.getOpenLocation(); in ParseFunctionDeclarator() [all …]
|
| D | ParseDeclCXX.cpp | 240 BalancedDelimiterTracker &Tracker) { in ParseInnerNamespace() argument 251 Tracker.consumeClose(); in ParseInnerNamespace() 264 Tracker.getOpenLocation(), attrs, ImplicitUsingDirectiveDecl); in ParseInnerNamespace() 268 ParseInnerNamespace(InnerNSs, ++index, InlineLoc, attrs, Tracker); in ParseInnerNamespace() 271 Actions.ActOnFinishNamespaceDef(NamespcDecl, Tracker.getCloseLocation()); in ParseInnerNamespace()
|
| /freebsd-12-stable/contrib/file/ |
| D | README.md | 5 - Bug Tracker: <https://bugs.astron.com/>
|
| /freebsd-12-stable/contrib/llvm-project/clang/include/clang/Parse/ |
| D | Parser.h | 1841 BalancedDelimiterTracker &Tracker, ColonProtectionRAIIObject &ColonProt); 3006 BalancedDelimiterTracker &Tracker, 3060 BalancedDelimiterTracker &Tracker);
|
| /freebsd-12-stable/share/misc/ |
| D | usb_hid_usages | 146 0x05 Head Tracker 148 0x07 Hand Tracker
|