Home
last modified time | relevance | path

Searched refs:mCallDag (Results 1 – 4 of 4) sorted by relevance

/external/angle/src/compiler/translator/
DCompiler.cpp589 mFunctionMetadata.resize(mCallDag.size()); in checkAndSimplifyAST()
1202 mCallDag.clear(); in initCallDag()
1204 switch (mCallDag.init(root, &mDiagnostics)) in initCallDag()
1221 std::vector<int> depths(mCallDag.size()); in checkCallDepth()
1223 for (size_t i = 0; i < mCallDag.size(); i++) in checkCallDepth()
1226 const CallDAG::Record &record = mCallDag.getRecordFromIndex(i); in checkCallDepth()
1250 << mCallDag.getRecordFromIndex(currentFunction).node->getFunction()->name(); in checkCallDepth()
1253 for (const int &calleeIndex : mCallDag.getRecordFromIndex(currentFunction).callees) in checkCallDepth()
1278 for (size_t i = mCallDag.size(); i-- > 0;) in tagUsedFunctions()
1280 if (mCallDag.getRecordFromIndex(i).node->getFunction()->isMain()) in tagUsedFunctions()
[all …]
DCompiler.h259 CallDAG mCallDag; variable
DOutputHLSL.h223 CallDAG mCallDag; variable
DOutputHLSL.cpp421 CallDAG::InitResult success = mCallDag.init(treeRoot, nullptr); in output()
423 mASTMetadataList = CreateASTMetadataHLSL(treeRoot, mCallDag); in output()
2158 size_t index = mCallDag.findIndex(node->getFunction()->uniqueId()); in visitFunctionDefinition()
2314 size_t index = mCallDag.findIndex(node->getFunction()->uniqueId()); in visitFunctionPrototype()
2370 size_t index = mCallDag.findIndex(node->getFunction()->uniqueId()); in visitAggregate()