Searched refs:Root (Results 1 - 25 of 169) sorted by relevance

1234567

/openbsd-current/gnu/llvm/llvm/include/llvm/ADT/
H A DImmutableMap.h74 IntrusiveRefCntPtr<TreeTy> Root; member in class:llvm::ImmutableMap
81 explicit ImmutableMap(const TreeTy *R) : Root(const_cast<TreeTy *>(R)) {}
100 TreeTy *T = F.add(Old.Root.get(), std::pair<key_type, data_type>(K, D));
105 TreeTy *T = F.remove(Old.Root.get(), K);
115 return Root ? Root->contains(K) : false;
119 return Root && RHS.Root ? Root->isEqual(*RHS.Root
215 IntrusiveRefCntPtr<TreeTy> Root; member in class:llvm::ImmutableMapRef
[all...]
H A DImmutableSet.h657 ImutAVLTreeGenericIterator(const TreeTy *Root) { argument
658 if (Root) stack.push_back(reinterpret_cast<uintptr_t>(Root));
769 ImutAVLTreeInOrderIterator(const TreeTy* Root) : InternalItr(Root) { argument
770 if (Root)
964 IntrusiveRefCntPtr<TreeTy> Root; member in class:llvm::ImmutableSet
971 explicit ImmutableSet(TreeTy *R) : Root(R) {}
1000 TreeTy *NewT = F.add(Old.Root.get(), V);
1012 TreeTy *NewT = F.remove(Old.Root
1091 IntrusiveRefCntPtr<TreeTy> Root; member in class:llvm::ImmutableSetRef
[all...]
H A DIntervalTree.h126 // 0: Root Node.
131 // Root
287 IntervalNode *Root = nullptr; // Interval tree root. member in class:llvm::IntervalTree
390 IntervalNode *Root = local
403 Root->BucketIntervalsSize = ++NewBucketSize;
438 Root->Left = createTree(IntervalsSize, PointsBeginIndex, MiddleIndex - 1,
443 Root->Right = createTree(IntervalsSize, MiddleIndex + 1, PointsEndIndex,
447 return Root;
597 bool empty() const { return Root == nullptr; }
601 deleteTree(Root);
[all...]
/openbsd-current/gnu/llvm/llvm/tools/dsymutil/
H A DReproducer.cpp16 SmallString<128> Root; local
18 Root.assign(Path);
19 EC = sys::fs::create_directory(Root);
21 EC = sys::fs::createUniqueDirectory("dsymutil", Root);
23 sys::fs::make_absolute(Root);
24 return EC ? "" : std::string(Root);
32 : Root(createReproducerDir(EC)), GenerateOnExit(GenerateOnExit) {
35 if (!Root.empty())
36 FC = std::make_shared<FileCollector>(Root, Root);
65 ReproducerUse(StringRef Root, std::error_code &EC) argument
80 createReproducer(ReproducerMode Mode, StringRef Root, int Argc, char **Argv) argument
[all...]
H A DReproducer.h41 createReproducer(ReproducerMode Mode, StringRef Root, int Argc, char **Argv);
60 std::string Root; member in class:llvm::dsymutil::ReproducerGenerate
80 ReproducerUse(StringRef Root, std::error_code &EC);
85 std::string Root; member in class:llvm::dsymutil::ReproducerUse
/openbsd-current/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DAMDGPUInstructionSelector.h150 selectVOP3ModsImpl(MachineOperand &Root, bool AllowAbs = true,
154 MachineOperand Root, MachineInstr *InsertPt,
158 selectVCSRC(MachineOperand &Root) const;
161 selectVSRC0(MachineOperand &Root) const;
164 selectVOP3Mods0(MachineOperand &Root) const;
166 selectVOP3BMods0(MachineOperand &Root) const;
168 selectVOP3OMods(MachineOperand &Root) const;
170 selectVOP3Mods(MachineOperand &Root) const;
172 selectVOP3BMods(MachineOperand &Root) const;
174 ComplexRendererFns selectVOP3NoMods(MachineOperand &Root) cons
[all...]
/openbsd-current/gnu/llvm/clang/lib/AST/Interp/
H A DInterpBlock.cpp63 DeadBlock::DeadBlock(DeadBlock *&Root, Block *Blk) argument
64 : Root(Root), B(Blk->Desc, Blk->IsStatic, Blk->IsExtern, /*isDead=*/true) {
66 if (Root)
67 Root->Prev = this;
69 Next = Root;
71 Root = this;
84 if (Root == this)
85 Root = Next;
/openbsd-current/gnu/llvm/llvm/lib/Target/NVPTX/
H A DNVPTXPeephole.cpp75 static bool isCVTAToLocalCombinationCandidate(MachineInstr &Root) { argument
76 auto &MBB = *Root.getParent();
79 if (Root.getOpcode() != NVPTX::cvta_to_local_yes_64 &&
80 Root.getOpcode() != NVPTX::cvta_to_local_yes)
83 auto &Op = Root.getOperand(1);
109 static void CombineCVTAToLocal(MachineInstr &Root) { argument
110 auto &MBB = *Root.getParent();
114 auto &Prev = *MRI.getUniqueVRegDef(Root.getOperand(1).getReg());
120 BuildMI(MF, Root.getDebugLoc(), TII->get(Prev.getOpcode()),
121 Root
[all...]
/openbsd-current/gnu/usr.bin/gcc/contrib/
H A Dnewcvsroot4 # Replaces all CVS/Root and CVS/Repository files in a checked-out CVS
24 find $topdir \( -name Repository -o -name Root \) -print | while read f; do
27 */CVS/Root) echo $root > "$f" ;;
/openbsd-current/gnu/llvm/clang/include/clang/Rewrite/Core/
H A DDeltaTree.h26 void *Root; // "DeltaTreeNode *" member in class:clang::DeltaTree
/openbsd-current/gnu/llvm/clang/lib/IndexSerialization/
H A DSerializablePathCollection.cpp22 size_t PathPool::addFilePath(RootDirKind Root, argument
25 FilePaths.emplace_back(DirPath(Root, Dir), Paths.add(Filename));
55 Paths.addFilePath(Dir.Root, Dir.Path, sys::path::filename(FE.getName()));
72 PathPool::RootDirKind Root = PathPool::RootDirKind::Regular; local
75 Root = PathPool::RootDirKind::SysRoot;
79 Root = PathPool::RootDirKind::CurrentWorkDir;
83 if (Root != PathPool::RootDirKind::Regular) {
88 PathPool::DirPath Result(Root, Paths.addDirPath(Dir));
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Dcrash20.C11 Root enumerator in enum:GcspFlags::Enum
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/GlobalISel/
H A DInstructionSelector.cpp39 const MachineOperand &Root, const MachineRegisterInfo &MRI) const {
40 if (!Root.isReg())
43 MachineInstr *RootI = MRI.getVRegDef(Root.getReg());
38 isBaseWithConstantOffset( const MachineOperand &Root, const MachineRegisterInfo &MRI) const argument
/openbsd-current/gnu/llvm/clang/include/clang/IndexSerialization/
H A DSerializablePathCollection.h53 RootDirKind Root; member in struct:clang::index::PathPool::DirPath
56 DirPath(RootDirKind Root, const StringPool::StringOffsetSize &Path) argument
57 : Root(Root), Path(Path) {}
69 size_t addFilePath(RootDirKind Root, const StringPool::StringOffsetSize &Dir,
/openbsd-current/gnu/llvm/clang/utils/TableGen/
H A DClangASTNodesEmitter.cpp37 ASTNode Root; member in class:__anon1129::ClangASTNodesEmitter
52 assert(Root && "root node not yet derived!");
54 MacroHierarchyName = macroName(std::string(Root.getName()));
62 if (node == Root && !BaseSuffix.empty())
133 if (Base == Root)
145 assert(!Root && "already computed tree");
156 else if (Root)
161 Root = R;
164 if (!Root)
190 EmitNode(OS, Root);
[all...]
/openbsd-current/gnu/llvm/clang/lib/Rewrite/
H A DRewriteRope.cpp722 Root = new RopePieceBTreeLeaf();
727 Root = new RopePieceBTreeLeaf();
731 getRoot(Root)->Destroy();
735 return getRoot(Root)->size();
739 if (auto *Leaf = dyn_cast<RopePieceBTreeLeaf>(getRoot(Root)))
742 getRoot(Root)->Destroy();
743 Root = new RopePieceBTreeLeaf();
749 if (RopePieceBTreeNode *RHS = getRoot(Root)->split(Offset))
750 Root = new RopePieceBTreeInterior(getRoot(Root), RH
[all...]
H A DDeltaTree.cpp386 static DeltaTreeNode *getRoot(void *Root) { argument
387 return (DeltaTreeNode*)Root;
391 Root = new DeltaTreeNode();
396 assert(getRoot(RHS.Root)->getNumValuesUsed() == 0 &&
398 Root = new DeltaTreeNode();
402 getRoot(Root)->Destroy();
409 const DeltaTreeNode *Node = getRoot(Root);
457 DeltaTreeNode *MyRoot = getRoot(Root);
461 Root = new DeltaTreeInteriorNode(InsertRes);
463 MyRoot = Root;
[all...]
/openbsd-current/gnu/usr.bin/perl/dist/Safe/t/
H A Dsafe2.t23 $Root::foo = "visible";
27 $Root::foo .= "";
34 $cpt = new Safe "Root";
85 $Root::foo = "not ok 17";
88 @Root::bar = "ok";
89 push(@Root::bar, "18"); # Two steps to prevent "Identifier used only once..."
91 is($Root::foo, 'ok 17');
/openbsd-current/gnu/llvm/clang/include/clang/Tooling/
H A DFileMatchTrie.h81 FileMatchTrieNode *Root; member in class:clang::tooling::FileMatchTrie
/openbsd-current/gnu/llvm/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVReader.cpp29 bool checkIntegrityScopesTree(LVScope *Root) { argument
66 TraverseScope(Root);
87 std::string RootName(Root->getName());
89 dbgs() << format("Root: '%s'\nDuplicated elements: %d\n", RootName.c_str(),
236 if (options().getInternalIntegrity() && !checkIntegrityScopesTree(Root))
241 Root->processRangeInformation();
246 Root->resolveElements();
288 return Root->doPrint(OutputSplit, DoMatch, DoPrint, OS);
298 return Root->doPrintMatches(OutputSplit, OS, UseMatchedElements);
/openbsd-current/gnu/llvm/llvm/lib/LTO/
H A DSummaryBasedOptimizations.cpp31 auto Root = Index.calculateCallGraphRoot(); local
32 // Root is a fake node. All its successors are the actual roots of the
37 for (auto &C : Root.calls()) {
/openbsd-current/gnu/llvm/llvm/lib/Support/
H A DSuffixTree.cpp20 Root = insertInternalNode(nullptr, EmptyIdx, EmptyIdx, 0);
21 Active.Node = Root;
37 assert(Root && "Root node can't be nullptr!");
63 new (NodeAllocator.Allocate()) SuffixTreeNode(StartIdx, E, Root);
76 SuffixTreeNode *CurrNode = Root;
/openbsd-current/gnu/llvm/clang/lib/Tooling/
H A DFileMatchTrie.cpp183 : Root(new FileMatchTrieNode), Comparator(new DefaultPathComparator()) {}
186 : Root(new FileMatchTrieNode), Comparator(Comparator) {}
189 delete Root;
193 Root->insert(NewPath);
203 StringRef Result = Root->findEquivalent(*Comparator, FileName, IsAmbiguous);
/openbsd-current/gnu/llvm/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVReader.h78 LVScopeRoot *Root = nullptr; member in class:llvm::logicalview::LVReader
93 // Create the Scope Root.
95 Root = new LVScopeRoot();
96 Root->setName(getFilename());
98 Root->setFileFormatName(FileFormatName);
133 if (Root)
134 delete Root;
155 LVScopeRoot *getScopesRoot() const { return Root; }
/openbsd-current/gnu/llvm/llvm/lib/Analysis/
H A DTensorSpec.cpp78 json::Path::Root Root("tensor_spec");
79 json::ObjectMapper Mapper(Value, Root);

Completed in 419 milliseconds

1234567