Home
last modified time | relevance | path

Searched refs:Root (Results 1 – 25 of 431) sorted by relevance

12345678910>>...18

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DImmutableMap.h74 IntrusiveRefCntPtr<TreeTy> Root;
81 explicit ImmutableMap(const TreeTy *R) : Root(const_cast<TreeTy *>(R)) {} in ImmutableMap()
100 TreeTy *T = F.add(Old.Root.get(), std::pair<key_type, data_type>(K, D)); in add()
105 TreeTy *T = F.remove(Old.Root.get(), K); in remove()
115 return Root ? Root->contains(K) : false; in contains()
119 return Root && RHS.Root ? Root->isEqual(*RHS.Root.get()) : Root == RHS.Root;
123 return Root && RHS.Root ? Root->isNotEqual(*RHS.Root.get())
124 : Root != RHS.Root;
128 if (Root) { Root->retain(); } in getRoot()
129 return Root.get(); in getRoot()
[all …]
H A DImmutableSet.h657 ImutAVLTreeGenericIterator(const TreeTy *Root) {
658 if (Root) stack.push_back(reinterpret_cast<uintptr_t>(Root));
769 ImutAVLTreeInOrderIterator(const TreeTy* Root) : InternalItr(Root) {
770 if (Root)
964 IntrusiveRefCntPtr<TreeTy> Root;
971 explicit ImmutableSet(TreeTy *R) : Root(R) {}
1000 TreeTy *NewT = F.add(Old.Root.get(), V);
1012 TreeTy *NewT = F.remove(Old.Root.get(), V);
1027 return Root ? Root->contains(V) : false;
1031 return Root && RHS.Root ? Root->isEqual(*RHS.Root.get()) : Root == RHS.Root;
[all …]
H A DIntervalTree.h286 IntervalNode *Root = nullptr; // Interval tree root. variable
389 IntervalNode *Root = in createTree() local
402 Root->BucketIntervalsSize = ++NewBucketSize; in createTree()
437 Root->Left = createTree(IntervalsSize, PointsBeginIndex, MiddleIndex - 1, in createTree()
442 Root->Right = createTree(IntervalsSize, MiddleIndex + 1, PointsEndIndex, in createTree()
446 return Root; in createTree()
596 bool empty() const { return Root == nullptr; } in empty()
600 deleteTree(Root); in clear()
601 Root = nullptr; in clear()
642 printTree(OS, 0, Root, HexFormat);
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUInstructionSelector.h154 std::pair<Register, unsigned> selectVOP3ModsImpl(MachineOperand &Root,
160 MachineOperand Root, MachineInstr *InsertPt,
164 selectVCSRC(MachineOperand &Root) const;
167 selectVSRC0(MachineOperand &Root) const;
170 selectVOP3Mods0(MachineOperand &Root) const;
172 selectVOP3BMods0(MachineOperand &Root) const;
174 selectVOP3OMods(MachineOperand &Root) const;
176 selectVOP3Mods(MachineOperand &Root) const;
178 selectVOP3ModsNonCanonicalizing(MachineOperand &Root) const;
180 selectVOP3BMods(MachineOperand &Root) const;
[all …]
H A DAMDGPUInstructionSelector.cpp3650 AMDGPUInstructionSelector::selectVCSRC(MachineOperand &Root) const { in selectVCSRC()
3652 [=](MachineInstrBuilder &MIB) { MIB.add(Root); } in selectVCSRC()
3658 AMDGPUInstructionSelector::selectVOP3ModsImpl(MachineOperand &Root, in selectVOP3ModsImpl() argument
3661 Register Src = Root.getReg(); in selectVOP3ModsImpl()
3692 Register Src, unsigned Mods, MachineOperand Root, MachineInstr *InsertPt, in copyToVGPRIfSrcFolded() argument
3700 Register VGPRSrc = MRI->cloneVirtualRegister(Root.getReg()); in copyToVGPRIfSrcFolded()
3714 AMDGPUInstructionSelector::selectVSRC0(MachineOperand &Root) const { in selectVSRC0()
3716 [=](MachineInstrBuilder &MIB) { MIB.add(Root); } in selectVSRC0()
3721 AMDGPUInstructionSelector::selectVOP3Mods0(MachineOperand &Root) const { in selectVOP3Mods0()
3724 std::tie(Src, Mods) = selectVOP3ModsImpl(Root); in selectVOP3Mods0()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/ctx_profile/tests/
H A DCtxInstrProfilingTest.cpp8 void SetUp() override { memset(&Root, 0, sizeof(ContextRoot)); } in SetUp()
12 ContextRoot Root; member in ContextTest
43 auto *Ctx = __llvm_ctx_profile_start_context(&Root, 1, 10, 4); in TEST_F()
45 EXPECT_NE(Root.CurrentMem, nullptr); in TEST_F()
46 EXPECT_EQ(Root.FirstMemBlock, Root.CurrentMem); in TEST_F()
51 EXPECT_EQ(__llvm_ctx_profile_current_context_root, &Root); in TEST_F()
52 Root.Taken.CheckLocked(); in TEST_F()
53 EXPECT_FALSE(Root.Taken.TryLock()); in TEST_F()
54 __llvm_ctx_profile_release_context(&Root); in TEST_F()
56 EXPECT_TRUE(Root.Taken.TryLock()); in TEST_F()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/ctx_profile/
H A DCtxInstrProfiling.cpp61 bool validate(const ContextRoot *Root) { in validate() argument
66 for (const auto *Mem = Root->FirstMemBlock; Mem; Mem = Mem->next()) { in validate()
79 for (const auto *Mem = Root->FirstMemBlock; Mem; Mem = Mem->next()) { in validate()
240 void setupContext(ContextRoot *Root, GUID Guid, uint32_t NrCounters, in setupContext() argument
245 if (Root->FirstMemBlock) in setupContext()
249 Root->FirstMemBlock = M; in setupContext()
250 Root->CurrentMem = M; in setupContext()
251 Root->FirstNode = allocContextNode(M->tryBumpAllocate(Needed), Guid, in setupContext()
253 AllContextRoots.PushBack(Root); in setupContext()
257 ContextRoot *Root, GUID Guid, uint32_t Counters, in __llvm_ctx_profile_start_context() argument
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXPeephole.cpp75 static bool isCVTAToLocalCombinationCandidate(MachineInstr &Root) { in isCVTAToLocalCombinationCandidate() argument
76 auto &MBB = *Root.getParent(); in isCVTAToLocalCombinationCandidate()
79 if (Root.getOpcode() != NVPTX::cvta_to_local_64 && in isCVTAToLocalCombinationCandidate()
80 Root.getOpcode() != NVPTX::cvta_to_local) in isCVTAToLocalCombinationCandidate()
83 auto &Op = Root.getOperand(1); in isCVTAToLocalCombinationCandidate()
109 static void CombineCVTAToLocal(MachineInstr &Root) { in CombineCVTAToLocal() argument
110 auto &MBB = *Root.getParent(); in CombineCVTAToLocal()
114 auto &Prev = *MRI.getUniqueVRegDef(Root.getOperand(1).getReg()); in CombineCVTAToLocal()
120 BuildMI(MF, Root.getDebugLoc(), TII->get(Prev.getOpcode()), in CombineCVTAToLocal()
121 Root.getOperand(0).getReg()) in CombineCVTAToLocal()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DMatchContext.h25 SDNode *Root; variable
28 EmptyMatchContext(SelectionDAG &DAG, const TargetLowering &TLI, SDNode *Root) in EmptyMatchContext() argument
29 : DAG(DAG), TLI(TLI), Root(Root) {} in EmptyMatchContext()
31 unsigned getRootBaseOpcode() { return Root->getOpcode(); } in getRootBaseOpcode()
56 SDNode *Root; variable
61 Root = _Root; in VPMatchContext()
62 assert(Root->isVPOpcode()); in VPMatchContext()
63 if (auto RootMaskPos = ISD::getVPMaskIdx(Root->getOpcode())) in VPMatchContext()
64 RootMaskOp = Root->getOperand(*RootMaskPos); in VPMatchContext()
65 else if (Root->getOpcode() == ISD::VP_SELECT) in VPMatchContext()
[all …]
/freebsd/crypto/openssl/test/
H A Ddanetest.in38 # subject= CN = Root CA
222 issuer= /CN=Root CA
235 subject= /CN=Root CA
236 issuer= /CN=Root CA
269 issuer= /CN=Root CA
282 subject= /CN=Root CA
283 issuer= /CN=Root CA
316 issuer= /CN=Root CA
329 subject= /CN=Root CA
330 issuer= /CN=Root CA
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DInterpBlock.cpp94 DeadBlock::DeadBlock(DeadBlock *&Root, Block *Blk) in DeadBlock() argument
95 : Root(Root), in DeadBlock()
98 if (Root) in DeadBlock()
99 Root->Prev = this; in DeadBlock()
101 Next = Root; in DeadBlock()
103 Root = this; in DeadBlock()
120 if (Root == this) in free()
121 Root = Next; in free()
/freebsd/contrib/llvm-project/clang/lib/Rewrite/
H A DRewriteRope.cpp722 Root = new RopePieceBTreeLeaf(); in RopePieceBTree()
727 Root = new RopePieceBTreeLeaf(); in RopePieceBTree()
731 getRoot(Root)->Destroy(); in ~RopePieceBTree()
735 return getRoot(Root)->size(); in size()
739 if (auto *Leaf = dyn_cast<RopePieceBTreeLeaf>(getRoot(Root))) in clear()
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()
753 if (RopePieceBTreeNode *RHS = getRoot(Root)->insert(Offset, R)) in insert()
[all …]
H A DDeltaTree.cpp386 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/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64InstrInfo.cpp6077 static bool getMaddPatterns(MachineInstr &Root, in getMaddPatterns() argument
6079 unsigned Opc = Root.getOpcode(); in getMaddPatterns()
6080 MachineBasicBlock &MBB = *Root.getParent(); in getMaddPatterns()
6087 Root.findRegisterDefOperandIdx(AArch64::NZCV, /*TRI=*/nullptr, true); in getMaddPatterns()
6091 unsigned NewOpc = convertToNonFlagSettingOpc(Root); in getMaddPatterns()
6101 if (canCombineWithMUL(MBB, Root.getOperand(Operand), Opcode, ZeroReg)) { in getMaddPatterns()
6108 if (canCombine(MBB, Root.getOperand(Operand), Opcode)) { in getMaddPatterns()
6120 assert(Root.getOperand(1).isReg() && Root.getOperand(2).isReg() && in getMaddPatterns()
6219 static bool getFMAPatterns(MachineInstr &Root, in getFMAPatterns() argument
6222 if (!isCombineInstrCandidateFP(Root)) in getFMAPatterns()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_flags.inc29 "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/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineCombiner.cpp100 unsigned getLatency(MachineInstr *Root, MachineInstr *NewRoot,
102 bool improvesCriticalPathLen(MachineBasicBlock *MBB, MachineInstr *Root,
108 bool reduceRegisterPressure(MachineInstr &Root, MachineBasicBlock *MBB,
124 void verifyPatternOrder(MachineBasicBlock *MBB, MachineInstr &Root,
271 unsigned MachineCombiner::getLatency(MachineInstr *Root, MachineInstr *NewRoot, in getLatency() argument
287 if (UseMO && BlockTrace.isDepInTrace(*Root, *UseMO)) { in getLatency()
339 MachineInstr &Root, MachineBasicBlock *MBB, in reduceRegisterPressure() argument
355 MachineBasicBlock *MBB, MachineInstr *Root, in improvesCriticalPathLen() argument
364 unsigned RootDepth = BlockTrace.getInstrCycles(*Root).Depth; in improvesCriticalPathLen()
366 LLVM_DEBUG(dbgs() << " Dependence data for " << *Root << "\tNewRootDepth: " in improvesCriticalPathLen()
[all …]
/freebsd/contrib/libfido2/windows/
H A Dcygwin.ps122 $Root = "${Cygwin}\root" variable
39 New-Item -Type Directory "${Root}" -Force
64 -ArgumentList "-dnNOqW -s ${Mirror} -R ${Root} -P ${Packages}"
67 $Env:PATH = "${Root}\bin\;" + $Env:PATH
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonCommonGEP.cpp123 void getBlockTraversalOrder(BasicBlock *Root, ValueVect &Order);
179 Root = 0x01, enumerator
209 if (Flags & Root) in GepNode()
221 if (GN.Flags & GepNode::Root) { in operator <<()
247 if (GN.Flags & GepNode::Root) in operator <<()
324 void HexagonCommonGEP::getBlockTraversalOrder(BasicBlock *Root, in getBlockTraversalOrder() argument
330 Order.push_back(Root); in getBlockTraversalOrder()
331 for (auto *DTN : children<DomTreeNode*>(DT->getNode(Root))) in getBlockTraversalOrder()
354 N->Flags |= GepNode::Root | InBounds; in processGepInst()
434 if (N->Flags & GepNode::Root) { in invert_find_roots()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVReader.cpp29 bool checkIntegrityScopesTree(LVScope *Root) { in checkIntegrityScopesTree() argument
66 TraverseScope(Root); in checkIntegrityScopesTree()
87 std::string RootName(Root->getName()); in checkIntegrityScopesTree()
239 if (options().getInternalIntegrity() && !checkIntegrityScopesTree(Root)) in doLoad()
244 Root->processRangeInformation(); in doLoad()
249 Root->resolveElements(); in doLoad()
291 return Root->doPrint(OutputSplit, DoMatch, DoPrint, OS); in printScopes()
301 return Root->doPrintMatches(OutputSplit, OS, UseMatchedElements); in printMatchedElements()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMParallelDSP.cpp65 Instruction *Root; member
73 Root(I), LHS(lhs), RHS(rhs) { } in MulCandidate()
87 Instruction *Root = nullptr; member in __anon176cfc890111::Reduction
96 Reduction (Instruction *Add) : Root(Add) { } in Reduction()
147 << *Mul0->Root << "\n" in AddMulPair()
148 << *Mul1->Root << "\n"); in AddMulPair()
157 Instruction *getRoot() { return Root; } in getRoot()
159 bool is64Bit() const { return Root->getType()->isIntegerTy(64); } in is64Bit()
161 Type *getType() const { return Root->getType(); } in getType()
179 Root->replaceAllUsesWith(SMLAD); in UpdateRoot()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Tooling/
H A DFileMatchTrie.cpp183 : 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/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DProfiledCallGraph.h133 iterator begin() { return Root.Edges.begin(); }
134 iterator end() { return Root.Edges.end(); }
135 ProfiledCallGraphNode *getEntryNode() { return &Root; }
145 Root.Edges.emplace(&Root, ProfiledFunctions[Name], 0); in addProfiledFunction()
208 ProfiledCallGraphNode Root; variable
/freebsd/secure/caroot/untrusted/
H A DQuoVadis_Root_CA.pem2 ## QuoVadis Root CA
19 …Issuer: C = BM, O = QuoVadis Limited, OU = Root Certification Authority, CN = QuoVadis Root Certif…
23 …Subject: C = BM, O = QuoVadis Limited, OU = Root Certification Authority, CN = QuoVadis Root Certi…
55 …Explicit Text: Reliance on the QuoVadis Root Certificate by any party assumes acceptance of the th…
61 …DirName:/C=BM/O=QuoVadis Limited/OU=Root Certification Authority/CN=QuoVadis Root Certification Au…
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGenData/
H A DOutlinedHashTree.h80 const HashNode *getRoot() const { return &Root; } in getRoot()
81 HashNode *getRoot() { return &Root; } in getRoot()
94 HashNode Root;
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86PartialReduction.cpp435 static void collectLeaves(Value *Root, SmallVectorImpl<Instruction *> &Leaves) { in collectLeaves() argument
438 Worklist.push_back(Root); in collectLeaves()
448 if (!PN->hasNUses(PN == Root ? 2 : 1)) in collectLeaves()
460 if (BO->hasNUses(BO == Root ? 2 : 1)) { in collectLeaves()
467 if (BO->hasNUses(BO == Root ? 3 : 2)) { in collectLeaves()
491 if (!V->hasNUses(I == Root ? 2 : 1)) in collectLeaves()
523 Value *Root = matchAddReduction(*EE, ReduceInOneBB); in runOnFunction() local
524 if (!Root) in runOnFunction()
528 collectLeaves(Root, Leaves); in runOnFunction()
538 if (I != Root && trySADReplacement(I)) in runOnFunction()

12345678910>>...18