| /freebsd-9-stable/contrib/llvm/tools/clang/lib/Rewrite/Core/ |
| D | RewriteRope.cpp | 711 static RopePieceBTreeNode *getRoot(void *P) { in getRoot() function 723 getRoot(Root)->Destroy(); in ~RopePieceBTree() 727 return getRoot(Root)->size(); in size() 731 if (RopePieceBTreeLeaf *Leaf = dyn_cast<RopePieceBTreeLeaf>(getRoot(Root))) in clear() 734 getRoot(Root)->Destroy(); in clear() 741 if (RopePieceBTreeNode *RHS = getRoot(Root)->split(Offset)) in insert() 742 Root = new RopePieceBTreeInterior(getRoot(Root), RHS); in insert() 745 if (RopePieceBTreeNode *RHS = getRoot(Root)->insert(Offset, R)) in insert() 746 Root = new RopePieceBTreeInterior(getRoot(Root), RHS); in insert() 751 if (RopePieceBTreeNode *RHS = getRoot(Root)->split(Offset)) in erase() [all …]
|
| D | DeltaTree.cpp | 383 static DeltaTreeNode *getRoot(void *Root) { in getRoot() function 392 assert(getRoot(RHS.Root)->getNumValuesUsed() == 0 && in DeltaTree() 398 getRoot(Root)->Destroy(); in ~DeltaTree() 405 const DeltaTreeNode *Node = getRoot(Root); in getDeltaAt() 453 DeltaTreeNode *MyRoot = getRoot(Root); in AddDelta()
|
| /freebsd-9-stable/contrib/llvm/lib/CodeGen/SelectionDAG/ |
| D | SelectionDAGPrinter.cpp | 129 if (G->getRoot().getNode()) in addCustomGraphFeatures() 130 GW.emitEdge(0, -1, G->getRoot().getNode(), G->getRoot().getResNo(), in addCustomGraphFeatures() 294 const SDNode *N = DAG->getRoot().getNode(); in getCustomGraphFeatures()
|
| D | SelectionDAGBuilder.cpp | 912 SDValue SelectionDAGBuilder::getRoot() { in getRoot() function in SelectionDAGBuilder 914 return DAG.getRoot(); in getRoot() 936 SDValue Root = DAG.getRoot(); in getControlRoot() 3374 SDValue Ops[] = { getRoot(), AllocSize, DAG.getIntPtrConstant(Align) }; in visitAlloca() 3411 Root = getRoot(); in visitLoad() 3419 Root = DAG.getRoot(); in visitLoad() 3487 SDValue Root = getRoot(); in visitStore() 3548 SDValue InChain = getRoot(); in visitAtomicCmpXchg() 3596 SDValue InChain = getRoot(); in visitAtomicRMW() 3627 Ops[0] = getRoot(); in visitFence() [all …]
|
| D | SelectionDAGDumper.cpp | 541 if (!N->hasOneUse() && N != getRoot().getNode()) in dump() 545 if (getRoot().getNode()) DumpNodes(getRoot().getNode(), 2, this); in dump()
|
| D | SelectionDAGISel.cpp | 592 Worklist.push_back(CurDAG->getRoot().getNode()); in ComputeLiveOutVRegInfo() 826 HandleSDNode Dummy(CurDAG->getRoot()); in DoInstructionSelection() 827 SelectionDAG::allnodes_iterator ISelPosition (CurDAG->getRoot().getNode()); in DoInstructionSelection() 1336 CurDAG->setRoot(SDB->getRoot()); in FinishBasicBlock() 1346 CurDAG->setRoot(SDB->getRoot()); in FinishBasicBlock() 1367 CurDAG->setRoot(SDB->getRoot()); in FinishBasicBlock() 1398 CurDAG->setRoot(SDB->getRoot()); in FinishBasicBlock() 1440 CurDAG->setRoot(SDB->getRoot()); in FinishBasicBlock() 1450 CurDAG->setRoot(SDB->getRoot()); in FinishBasicBlock() 1497 CurDAG->setRoot(SDB->getRoot()); in FinishBasicBlock()
|
| D | ScheduleDAGFast.cpp | 534 SUnit *RootSU = &SUnits[DAG->getRoot().getNode()->getNodeId()]; in ListScheduleBottomUp() 761 ScheduleNode(DAG->getRoot().getNode()); in Schedule()
|
| D | ScheduleDAGSDNodes.cpp | 332 Worklist.push_back(DAG->getRoot().getNode()); in BuildSchedUnits() 333 Visited.insert(DAG->getRoot().getNode()); in BuildSchedUnits()
|
| /freebsd-9-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ |
| D | BlockCounter.cpp | 80 BC.getNumVisited(CallSite, BlockID)+1).getRoot()); in IncrementCount() 85 return BlockCounter(GetFactory(F).getEmptyMap().getRoot()); in GetEmptyCounter()
|
| /freebsd-9-stable/contrib/llvm/tools/clang/include/clang/Analysis/ |
| D | CallGraph.h | 81 CallGraphNode *getRoot() const { return Root; } in getRoot() function 203 return CGN->getRoot(); // Start at the external node! 228 return CGN->getRoot();
|
| /freebsd-9-stable/contrib/llvm/include/llvm/CodeGen/ |
| D | MachineDominators.h | 61 inline MachineBasicBlock *getRoot() const { in getRoot() function 62 return DT->getRoot(); in getRoot()
|
| /freebsd-9-stable/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ |
| D | Dominators.h | 49 inline CFGBlock *getRoot() const { in getRoot() function 50 return DT->getRoot(); in getRoot()
|
| /freebsd-9-stable/contrib/llvm/tools/clang/lib/CodeGen/ |
| D | CodeGenTBAA.cpp | 42 llvm::MDNode *CodeGenTBAA::getRoot() { in getRoot() function in CodeGenTBAA 66 Char = createTBAAScalarType("omnipotent char", getRoot()); in getChar() 167 return createTBAAScalarType("vtable pointer", getRoot()); in getTBAAInfoForVTablePtr()
|
| D | CodeGenTBAA.h | 76 llvm::MDNode *getRoot();
|
| /freebsd-9-stable/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| D | ProgramStateTrait.h | 70 return B.getRoot(); 119 return B.getRoot();
|
| /freebsd-9-stable/contrib/llvm/include/llvm/Analysis/ |
| D | CallGraph.h | 139 CallGraphNode *getRoot() { return Root; } in getRoot() function 140 const CallGraphNode *getRoot() const { return Root; } in getRoot() function
|
| D | DominanceFrontier.h | 165 BasicBlock *getRoot() const { in getRoot() function
|
| D | Dominators.h | 430 NodeT *getRoot() const { in getRoot() function 764 inline BasicBlock *getRoot() const { in getRoot() function 765 return DT->getRoot(); in getRoot()
|
| /freebsd-9-stable/contrib/llvm/tools/opt/ |
| D | PrintSCC.cpp | 95 CallGraphNode* rootNode = getAnalysis<CallGraph>().getRoot(); in runOnModule()
|
| /freebsd-9-stable/contrib/llvm/lib/IR/ |
| D | Dominators.cpp | 79 Function &F = *getRoot()->getParent(); in verifyAnalysis()
|
| /freebsd-9-stable/contrib/llvm/tools/clang/lib/Analysis/ |
| D | CallGraph.cpp | 227 if (CG->getRoot() == Node) { in getNodeLabel()
|
| /freebsd-9-stable/contrib/llvm/tools/clang/lib/Tooling/ |
| D | JSONCompilationDatabase.cpp | 237 llvm::yaml::Node *Root = I->getRoot(); in parse()
|
| /freebsd-9-stable/contrib/llvm/include/llvm/ADT/ |
| D | ImmutableIntervalMap.h | 232 TreeTy *T = F.Find(M.getRoot(), K); in lookup()
|
| /freebsd-9-stable/contrib/llvm/lib/Transforms/Utils/ |
| D | PromoteMemoryToRegister.cpp | 285 DIB(*DT.getRoot()->getParent()->getParent()), AST(AST) {} in PromoteMem2Reg() 523 Function &F = *DT.getRoot()->getParent(); in run()
|
| /freebsd-9-stable/contrib/llvm/include/llvm/Support/ |
| D | YAMLParser.h | 485 Node *getRoot() { in getRoot() function
|