| /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Scalar/ |
| Float2Int.h | 46 SmallSetVector<Instruction *, 8> Roots;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| DominanceFrontier.h | 49 // Postdominators can have multiple roots. 50 SmallVector<BlockT *, IsPostDom ? 4 : 1> Roots; 59 const SmallVectorImpl<BlockT *> &getRoots() const { return Roots; } 62 assert(Roots.size() == 1 && "Should always have entry node!"); 63 return Roots[0]; 134 this->Roots = {DT.getRoot()}; 135 calculate(DT, DT[this->Roots[0]]);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/XRay/ |
| Profile.h | 90 Roots(std::move(O.Roots)), PathIDMap(std::move(O.PathIDMap)), 96 Roots = std::move(O.Roots); 109 swap(L.Roots, R.Roots); 130 // List of call stack roots. 131 SmallVector<TrieNode *, 4> Roots;
|
| /src/external/apache2/llvm/dist/clang/include/clang/Serialization/ |
| ModuleManager.h | 58 // The roots of the dependency DAG of AST files. This is used 60 SmallVector<ModuleFile *, 2> Roots;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| GCMetadata.h | 18 // - Stack offsets for GC roots, as specified by calls to llvm.gcroot 20 // As a refinement, liveness analysis calculates the set of live roots at each 22 // generator, so all roots are assumed live. 87 std::vector<GCRoot> Roots; 97 // The bit vector is the more compact representation where >3.2% of roots 114 Roots.push_back(GCRoot(Num, Metadata)); 119 return Roots.erase(position); 138 /// roots_begin/roots_end - Iterators for all roots in the function. 139 roots_iterator roots_begin() { return Roots.begin(); } 140 roots_iterator roots_end() { return Roots.end(); [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| GCRootLowering.cpp | 142 static bool InsertRootInitializers(Function &F, ArrayRef<AllocaInst *> Roots) { 159 for (AllocaInst *Root : Roots) 184 /// already done so...), and insert initializing stores to roots as a defensive 185 /// measure. Given we're going to report all roots live at all safepoints, we 191 SmallVector<AllocaInst *, 32> Roots; 224 Roots.push_back( 231 if (Roots.size()) 232 MadeChange |= InsertRootInitializers(F, Roots); 327 // Find the concrete stack offsets for all roots (stack slots)
|
| ShadowStackGCLowering.cpp | 55 /// roots. 62 /// Roots - GC roots in the current function. Each is a pair of the 64 std::vector<std::pair<CallInst *, AllocaInst *>> Roots; 113 for (unsigned I = 0; I != Roots.size(); ++I) { 114 Constant *C = cast<Constant>(Roots[I].first->getArgOperand(1)); 124 ConstantInt::get(Int32Ty, Roots.size(), false), 164 for (size_t I = 0; I != Roots.size(); I++) 165 EltTys.push_back(Roots[I].second->getAllocatedType()); 184 // int32_t NumRoots; // Number of roots in stack frame [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| DAGDeltaAlgorithm.cpp | 65 std::vector<change_ty> Roots; 194 // Compute the roots. 198 Roots.push_back(*it); 201 std::vector<change_ty> Worklist(Roots.begin(), Roots.end()); 248 llvm::errs() << "Roots: ["; 249 for (std::vector<change_ty>::const_iterator it = Roots.begin(), 250 ie = Roots.end(); 252 if (it != Roots.begin()) 310 // The current set of changes we are minimizing, starting at the roots [all...] |
| VirtualFileSystem.cpp | 1262 for (const auto &Root : Roots) 1268 for (const auto &Root : Roots) 1376 for (const auto &Root : FS->Roots) { 1401 FS->Roots.push_back(std::move(E)); 1402 ParentEntry = FS->Roots.back().get(); 1668 KeyStatusPair("roots", true), 1674 // Parse configuration and 'roots' 1684 if (Key == "roots") { 1685 auto *Roots = dyn_cast<yaml::SequenceNode>(I.getValue()); 1686 if (!Roots) { [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/xray/ |
| xray_function_call_trie.h | 324 RootArray Roots; 332 Roots(*A.RootAllocator), 343 Roots(std::move(O.Roots)), 350 Roots = std::move(O.Roots); 377 if (Roots.AppendEmplace(NewRoot) == nullptr) { 383 Roots.trim(1); 466 const RootArray &getRoots() const XRAY_NEVER_INSTRUMENT { return Roots; } 471 // roots, and while doing so recreating the traversal in the provide [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| AMDGPUPropagateAttributes.cpp | 116 // Option propagation roots. 117 SmallSet<Function *, 32> Roots; 138 // Propagate attributes from Roots. 216 Roots.insert(&F); 222 Roots.insert(&F); 231 if (Roots.empty()) 233 Module &M = *(*Roots.begin())->getParent(); 236 Roots.insert(NewRoots.begin(), NewRoots.end()); 257 if (!Roots.count(Caller) && !NewRoots.count(Caller)) 263 if (!Roots.count(&F) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| GenericDomTree.h | 249 SmallVector<NodeT *, IsPostDom ? 4 : 1> Roots; 266 : Roots(std::move(Arg.Roots)), 276 Roots = std::move(RHS.Roots); 289 /// Iteration over roots. 297 root_iterator root_begin() { return Roots.begin(); } 298 const_root_iterator root_begin() const { return Roots.begin(); } 299 root_iterator root_end() { return Roots.end(); } 300 const_root_iterator root_end() const { return Roots.end(); 304 iterator_range<root_iterator> roots() { function in class:llvm::DominatorTreeBase 307 iterator_range<const_root_iterator> roots() const { function in class:llvm::DominatorTreeBase [all...] |
| VirtualFileSystem.h | 534 /// 'roots': [ 761 std::vector<std::unique_ptr<Entry>> Roots; 814 /// Looks up \p Path in \c Roots and returns a LookupResult giving the
|
| GenericDomTreeConstruction.h | 59 using RootsT = decltype(DomTreeT::Roots); 334 // For postdominators, nodes with no forward successors are trivial roots that 335 // are always selected as tree roots. Roots with forward successors correspond 347 // Finds all roots without relaying on the set of roots already stored in the 349 // We define roots to be some non-redundant set of the CFG nodes 352 RootsT Roots; 356 Roots.push_back(GetEntryNode(DT)); 357 return Roots; [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/TableGen/ |
| GICombinerEmitter.cpp | 144 /// The roots of a match. These are the leaves of the DAG that are closest to 148 std::vector<RootInfo> Roots; 204 size_t getNumRoots() const { return Roots.size(); } 210 const_root_iterator roots_begin() const { return Roots.begin(); } 211 const_root_iterator roots_end() const { return Roots.end(); } 212 iterator_range<const_root_iterator> roots() const { function in class:__anon5800::CombineRule 213 return llvm::make_range(Roots.begin(), Roots.end()); 226 /// The matcher will begin from the roots and will perform the match by 231 SmallSet<const GIMatchDagInstr *, 5> Roots; [all...] |
| CodeGenRegisters.h | 493 const CodeGenRegister *Roots[2]; 498 // A register unit is artificial if at least one of its roots is 503 Roots[0] = Roots[1] = nullptr; 507 assert(!(Roots[1] && !Roots[0]) && "Invalid roots array"); 508 return makeArrayRef(Roots, !!Roots[0] + !!Roots[1]) [all...] |
| RegisterInfoEmitter.cpp | 1018 // Emit the table of register unit roots. Each regunit has one or two root 1022 ArrayRef<const CodeGenRegister*> Roots = RegBank.getRegUnit(i).getRoots(); 1023 assert(!Roots.empty() && "All regunits must have a root register."); 1024 assert(Roots.size() <= 2 && "More than two roots not supported yet."); 1027 for (const CodeGenRegister *R : Roots)
|
| /src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| VectorUtils.cpp | 492 SmallPtrSet<Value *, 4> Roots; 498 // Determine the roots. We work bottom-up, from truncs or icmps. 518 Roots.insert(&I); 615 if (Roots.count(M))
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| LoopRerollPass.cpp | 362 // ST[y1] +1 +2 <-- Roots 380 SmallInstructionVector Roots; 386 // The set of all DAG roots, and state tracking of all roots 399 /// Stage 1: Find all the DAG roots for the induction variable. 402 /// Stage 2: Validate if the found roots are valid. 417 std::map<int64_t,Instruction*> &Roots); 421 void collectInLoopUserSet(const SmallInstructionVector &Roots, 462 // The roots themselves. 731 const SmallInstructionVector &Roots, [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/ |
| HexagonCommonGEP.cpp | 424 NodeVect &Roots) { 430 Roots.push_back(N); 1050 NodeVect Roots; 1051 invert_find_roots(Nodes, NCM, Roots); 1055 for (NodeVect::iterator I = Roots.begin(), E = Roots.end(); I != E; ++I) 1061 for (NodeVect::iterator I = Roots.begin(), E = Roots.end(); I != E; ++I) 1068 for (NodeVect::iterator I = Roots.begin(), E = Roots.end(); I != E; ++I [all...] |