| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | ImmutableMap.h | 114 return Root ? Root->contains(K) : false; in contains() 118 return Root && RHS.Root ? Root->isEqual(*RHS.Root.get()) : Root == RHS.Root; 122 return Root && RHS.Root ? Root->isNotEqual(*RHS.Root.get()) 127 if (Root) { Root->retain(); } in getRoot() 134 if (Root) Root->retain(); in manualRetain() 138 if (Root) Root->release(); in manualRelease() 271 if (Root) Root->retain(); in manualRetain() 275 if (Root) Root->release(); in manualRelease() 290 return Root ? Root->contains(K) : false; in contains() 298 return Root && RHS.Root ? Root->isEqual(*RHS.Root.get()) : Root == RHS.Root; [all …]
|
| H A D | ImmutableSet.h | 783 if (Root) 1040 return Root ? Root->contains(V) : false; 1044 return Root && RHS.Root ? Root->isEqual(*RHS.Root.get()) : Root == RHS.Root; 1048 return Root && RHS.Root ? Root->isNotEqual(*RHS.Root.get()) 1049 : Root != RHS.Root; 1053 if (Root) { Root->retain(); } 1067 void foreach(Callback& C) { if (Root) Root->foreach(C); } 1134 return Root ? Root->contains(V) : false; 1145 return Root && RHS.Root ? Root->isEqual(*RHS.Root.get()) : Root == RHS.Root; 1149 return Root && RHS.Root ? Root->isNotEqual(*RHS.Root.get()) [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUInstructionSelector.h | 159 selectVCSRC(MachineOperand &Root) const; 162 selectVSRC0(MachineOperand &Root) const; 165 selectVOP3Mods0(MachineOperand &Root) const; 169 selectVOP3OMods(MachineOperand &Root) const; 171 selectVOP3Mods(MachineOperand &Root) const; 173 selectVOP3BMods(MachineOperand &Root) const; 184 selectVOP3PMods(MachineOperand &Root) const; 190 selectSmrdImm(MachineOperand &Root) const; 192 selectSmrdImm32(MachineOperand &Root) const; 194 selectSmrdSgpr(MachineOperand &Root) const; [all …]
|
| H A D | AMDGPUInstructionSelector.cpp | 3236 Register Src = Root.getReg(); in selectVOP3ModsImpl() 3342 Register Reg = Root.getReg(); in selectVOP3NoMods() 3457 MachineInstr *MI = Root.getParent(); in selectSmrdSgpr() 3562 Register Addr = Root.getReg(); in selectGlobalSAddr() 3679 Register Addr = Root.getReg(); in selectScratchSAddr() 3778 Register VAddr = Root.getReg(); in selectMUBUFScratchOffen() 3849 MachineOperand &Root) const { in selectMUBUFScratchOffset() 3915 return selectDSReadWrite2(Root, 4); in selectDS64Bit4ByteAligned() 3920 return selectDSReadWrite2(Root, 8); in selectDS128Bit8ByteAligned() 3977 return {Root, 0}; in getPtrBaseWithConstantOffset() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXPeephole.cpp | 73 static bool isCVTAToLocalCombinationCandidate(MachineInstr &Root) { in isCVTAToLocalCombinationCandidate() argument 74 auto &MBB = *Root.getParent(); in isCVTAToLocalCombinationCandidate() 77 if (Root.getOpcode() != NVPTX::cvta_to_local_yes_64 && in isCVTAToLocalCombinationCandidate() 78 Root.getOpcode() != NVPTX::cvta_to_local_yes) in isCVTAToLocalCombinationCandidate() 81 auto &Op = Root.getOperand(1); in isCVTAToLocalCombinationCandidate() 104 static void CombineCVTAToLocal(MachineInstr &Root) { in CombineCVTAToLocal() argument 105 auto &MBB = *Root.getParent(); in CombineCVTAToLocal() 112 BuildMI(MF, Root.getDebugLoc(), TII->get(Prev.getOpcode()), in CombineCVTAToLocal() 113 Root.getOperand(0).getReg()) in CombineCVTAToLocal() 117 MBB.insert((MachineBasicBlock::iterator)&Root, MIB); in CombineCVTAToLocal() [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | InterpBlock.cpp | 63 DeadBlock::DeadBlock(DeadBlock *&Root, Block *Blk) in DeadBlock() argument 64 : Root(Root), B(Blk->Desc, Blk->IsStatic, Blk->IsExtern, /*isDead=*/true) { in DeadBlock() 66 if (Root) in DeadBlock() 67 Root->Prev = this; in DeadBlock() 69 Next = Root; in DeadBlock() 71 Root = this; in DeadBlock() 84 if (Root == this) in free() 85 Root = Next; in free()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/IndexSerialization/ |
| H A D | SerializablePathCollection.cpp | 22 size_t PathPool::addFilePath(RootDirKind Root, in addFilePath() argument 25 FilePaths.emplace_back(DirPath(Root, Dir), Paths.add(Filename)); in addFilePath() 55 Paths.addFilePath(Dir.Root, Dir.Path, sys::path::filename(FE.getName())); in tryStoreFilePath() 72 PathPool::RootDirKind Root = PathPool::RootDirKind::Regular; in tryStoreDirPath() local 75 Root = PathPool::RootDirKind::SysRoot; in tryStoreDirPath() 79 Root = PathPool::RootDirKind::CurrentWorkDir; in tryStoreDirPath() 83 if (Root != PathPool::RootDirKind::Regular) { in tryStoreDirPath() 88 PathPool::DirPath Result(Root, Paths.addDirPath(Dir)); in tryStoreDirPath()
|
| /freebsd-13.1/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | ClangASTNodesEmitter.cpp | 37 ASTNode Root; member in __anon955178b90111::ClangASTNodesEmitter 52 assert(Root && "root node not yet derived!"); in macroHierarchyName() 54 MacroHierarchyName = macroName(std::string(Root.getName())); in macroHierarchyName() 62 if (node == Root && !BaseSuffix.empty()) in baseName() 133 if (Base == Root) in EmitNode() 145 assert(!Root && "already computed tree"); in deriveChildTree() 156 else if (Root) in deriveChildTree() 161 Root = R; in deriveChildTree() 164 if (!Root) in deriveChildTree() 190 EmitNode(OS, Root); in run()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Rewrite/ |
| H A D | RewriteRope.cpp | 722 Root = new RopePieceBTreeLeaf(); in RopePieceBTree() 727 Root = new RopePieceBTreeLeaf(); in RopePieceBTree() 731 getRoot(Root)->Destroy(); in ~RopePieceBTree() 735 return getRoot(Root)->size(); in size() 742 getRoot(Root)->Destroy(); in clear() 743 Root = new RopePieceBTreeLeaf(); in clear() 749 if (RopePieceBTreeNode *RHS = getRoot(Root)->split(Offset)) in insert() 750 Root = new RopePieceBTreeInterior(getRoot(Root), RHS); in insert() 754 Root = new RopePieceBTreeInterior(getRoot(Root), RHS); in insert() 760 Root = new RopePieceBTreeInterior(getRoot(Root), RHS); in erase() [all …]
|
| H A D | DeltaTree.cpp | 386 static DeltaTreeNode *getRoot(void *Root) { in getRoot() argument 387 return (DeltaTreeNode*)Root; in getRoot() 391 Root = new DeltaTreeNode(); in DeltaTree() 396 assert(getRoot(RHS.Root)->getNumValuesUsed() == 0 && in DeltaTree() 398 Root = new DeltaTreeNode(); in DeltaTree() 402 getRoot(Root)->Destroy(); in ~DeltaTree() 409 const DeltaTreeNode *Node = getRoot(Root); in getDeltaAt() 457 DeltaTreeNode *MyRoot = getRoot(Root); in AddDelta() 461 Root = new DeltaTreeInteriorNode(InsertRes); in AddDelta() 463 MyRoot = Root; in AddDelta()
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/lsan/ |
| H A D | lsan_flags.inc | 29 "Root set: include global variables (.data and .bss)") 30 LSAN_FLAG(bool, use_stacks, true, "Root set: include thread stacks") 31 LSAN_FLAG(bool, use_registers, true, "Root set: include thread registers") 33 "Root set: include TLS and thread-specific storage") 35 "Root set: include regions added via __lsan_register_root_region().") 37 "Root set: mark as reachable all allocations made from dynamic "
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/IndexSerialization/ |
| H A D | SerializablePathCollection.h | 54 RootDirKind Root; member 57 DirPath(RootDirKind Root, const StringPool::StringOffsetSize &Path) in DirPath() 58 : Root(Root), Path(Path) {} in DirPath() 70 size_t addFilePath(RootDirKind Root, const StringPool::StringOffsetSize &Dir,
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64InstrInfo.cpp | 4636 unsigned Opc = Root.getOpcode(); in getMaddPatterns() 4676 assert(Root.getOperand(1).isReg() && Root.getOperand(2).isReg() && in getMaddPatterns() 4795 switch (Root.getOpcode()) { in getFMAPatterns() 4800 assert(Root.getOperand(1).isReg() && Root.getOperand(2).isReg() && in getFMAPatterns() 4807 assert(Root.getOperand(1).isReg() && Root.getOperand(2).isReg() && in getFMAPatterns() 5037 if (getFMAPatterns(Root, Patterns)) in getMachineCombinerPatterns() 5147 .add(Root.getOperand(2)); in genNeg() 5330 if (Root.getOperand(3).isImm()) { in genAlternativeCodeSequence() 5374 .add(Root.getOperand(2)); in genAlternativeCodeSequence() 5421 if (Root.getOperand(3).isImm()) { in genAlternativeCodeSequence() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | MachineCombiner.cpp | 99 unsigned getLatency(MachineInstr *Root, MachineInstr *NewRoot, 102 improvesCriticalPathLen(MachineBasicBlock *MBB, MachineInstr *Root, 124 void verifyPatternOrder(MachineBasicBlock *MBB, MachineInstr &Root, 251 if (UseMO && BlockTrace.isDepInTrace(*Root, *UseMO)) { in getLatency() 314 MachineInstr &Root, MachineBasicBlock *MBB, in reduceRegisterPressure() argument 331 MachineBasicBlock *MBB, MachineInstr *Root, in improvesCriticalPathLen() argument 342 unsigned RootDepth = BlockTrace.getInstrCycles(*Root).Depth; in improvesCriticalPathLen() 369 unsigned RootSlack = BlockTrace.getInstrSlack(*Root); in improvesCriticalPathLen() 510 MachineBasicBlock *MBB, MachineInstr &Root, in verifyPatternOrder() argument 518 TII->genAlternativeCodeSequence(Root, P, InsInstrs, DelInstrs, in verifyPatternOrder() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86PartialReduction.cpp | 378 static void collectLeaves(Value *Root, SmallVectorImpl<Instruction *> &Leaves) { in collectLeaves() argument 381 Worklist.push_back(Root); in collectLeaves() 391 if (!PN->hasNUses(PN == Root ? 2 : 1)) in collectLeaves() 403 if (BO->hasNUses(BO == Root ? 2 : 1)) { in collectLeaves() 410 if (BO->hasNUses(BO == Root ? 3 : 2)) { in collectLeaves() 412 for (auto *U : Root->users()) in collectLeaves() 434 if (!V->hasNUses(I == Root ? 2 : 1)) in collectLeaves() 465 Value *Root = matchAddReduction(*EE); in runOnFunction() local 466 if (!Root) in runOnFunction() 470 collectLeaves(Root, Leaves); in runOnFunction() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMParallelDSP.cpp | 63 Instruction *Root; member 72 Root(I), LHS(lhs), RHS(rhs) { } in MulCandidate() 86 Instruction *Root = nullptr; member in __anon6435b0bd0111::Reduction 95 Reduction (Instruction *Add) : Root(Add) { } in Reduction() 146 << *Mul0->Root << "\n" in AddMulPair() 147 << *Mul1->Root << "\n"); in AddMulPair() 160 Instruction *getRoot() { return Root; } in getRoot() 182 Root->replaceAllUsesWith(SMLAD); in UpdateRoot() 608 const Instruction *Mul0 = PMul0->Root; in CreateParallelPairs() 609 const Instruction *Mul1 = PMul1->Root; in CreateParallelPairs() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/AggressiveInstCombine/ |
| H A D | AggressiveInstCombine.cpp | 202 Value *Root; member 208 : Root(nullptr), Mask(APInt::getNullValue(BitWidth)), in MaskOps() 245 if (!MOps.Root) in matchAndOrChain() 246 MOps.Root = Candidate; in matchAndOrChain() 254 return MOps.Root == Candidate; in matchAndOrChain() 289 Value *And = Builder.CreateAnd(MOps.Root, Mask); in foldAnyOrAllBitsSet() 345 Value *Root, *SubOp1; in tryToRecognizePopCount() local 347 if (match(AndOp0, m_Sub(m_Value(Root), m_Value(SubOp1))) && in tryToRecognizePopCount() 348 match(SubOp1, m_And(m_LShr(m_Specific(Root), m_SpecificInt(1)), in tryToRecognizePopCount() 354 I.replaceAllUsesWith(Builder.CreateCall(Func, {Root})); in tryToRecognizePopCount()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | LoopNestAnalysis.cpp | 43 LoopNest::LoopNest(Loop &Root, ScalarEvolution &SE) in LoopNest() argument 44 : MaxPerfectDepth(getMaxPerfectDepth(Root, SE)) { in LoopNest() 45 append_range(Loops, breadth_first(&Root)); in LoopNest() 48 std::unique_ptr<LoopNest> LoopNest::getLoopNest(Loop &Root, in getLoopNest() argument 50 return std::make_unique<LoopNest>(Root, SE); in getLoopNest() 181 unsigned LoopNest::getMaxPerfectDepth(const Loop &Root, ScalarEvolution &SE) { in getMaxPerfectDepth() argument 183 << Root.getName() << "'\n"); in getMaxPerfectDepth() 185 const Loop *CurrentLoop = &Root; in getMaxPerfectDepth()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/ |
| H A D | ProfiledCallGraph.h | 82 iterator begin() { return Root.Callees.begin(); } in begin() 83 iterator end() { return Root.Callees.end(); } in end() 84 ProfiledCallGraphNode *getEntryNode() { return &Root; } in getEntryNode() 90 Root.Callees.insert(&ProfiledFunctions[Name]); in addProfiledFunction() 123 ProfiledCallGraphNode Root;
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Tooling/ |
| H A D | FileMatchTrie.cpp | 183 : Root(new FileMatchTrieNode), Comparator(new DefaultPathComparator()) {} in FileMatchTrie() 186 : Root(new FileMatchTrieNode), Comparator(Comparator) {} in FileMatchTrie() 189 delete Root; in ~FileMatchTrie() 193 Root->insert(NewPath); in insert() 203 StringRef Result = Root->findEquivalent(*Comparator, FileName, IsAmbiguous); in findEquivalent()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/ |
| H A D | SuffixTree.cpp | 20 Root = insertInternalNode(nullptr, EmptyIdx, EmptyIdx, 0); in SuffixTree() 21 Active.Node = Root; in SuffixTree() 37 assert(Root && "Root node can't be nullptr!"); in SuffixTree() 63 new (NodeAllocator.Allocate()) SuffixTreeNode(StartIdx, E, Root); in insertInternalNode() 76 SuffixTreeNode *CurrNode = Root; in setSuffixIndices()
|
| /freebsd-13.1/secure/caroot/blacklisted/ |
| H A D | QuoVadis_Root_CA.pem | 2 ## QuoVadis Root CA 20 …Issuer: C = BM, O = QuoVadis Limited, OU = Root Certification Authority, CN = QuoVadis Root Certif… 24 …Subject: C = BM, O = QuoVadis Limited, OU = Root Certification Authority, CN = QuoVadis Root Certi… 57 …Explicit Text: Reliance on the QuoVadis Root Certificate by any party assumes acceptance of the th… 64 …DirName:/C=BM/O=QuoVadis Limited/OU=Root Certification Authority/CN=QuoVadis Root Certification Au…
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | InstructionSelector.cpp | 46 const MachineOperand &Root, const MachineRegisterInfo &MRI) const { in isBaseWithConstantOffset() argument 47 if (!Root.isReg()) in isBaseWithConstantOffset() 50 MachineInstr *RootI = MRI.getVRegDef(Root.getReg()); in isBaseWithConstantOffset()
|
| /freebsd-13.1/sys/contrib/dev/acpica/components/disassembler/ |
| H A D | dmdeferred.c | 186 ACPI_PARSE_OBJECT *Root) in AcpiDmParseDeferredOps() argument 189 ACPI_PARSE_OBJECT *Op = Root; in AcpiDmParseDeferredOps() 203 Op = AcpiPsGetDepthNext (Root, Op); in AcpiDmParseDeferredOps() 245 Op = AcpiPsGetDepthNext (Root, Op); in AcpiDmParseDeferredOps()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/ |
| H A D | AArch64InstructionSelector.cpp | 649 if (Root.isImm()) in getImmedFromMO() 650 Immed = Root.getImm(); in getImmedFromMO() 651 else if (Root.isCImm()) in getImmedFromMO() 653 else if (Root.isReg()) { in getImmedFromMO() 5314 if (!Root.isReg()) in selectNegArithImmed() 5495 if (!Root.isReg()) in selectAddrModeShiftedExtendXReg() 5570 if (!Root.isReg()) in selectAddrModeXRO() 5713 if (!Root.isReg()) in selectAddrModeUnscaled() 5791 if (!Root.isReg()) in selectAddrModeIndexed() 5869 if (!Root.isReg()) in selectShiftedRegister() [all …]
|