Searched refs:BlockValueStack (Results 1 – 3 of 3) sorted by relevance
/external/llvm-project/llvm/lib/Analysis/ |
D | LazyValueInfo.cpp | 374 SmallVector<std::pair<BasicBlock*, Value*>, 8> BlockValueStack; member in __anondc48f1430411::LazyValueInfoImpl 387 BlockValueStack.push_back(BV); in pushBlockValue() 485 BlockValueStack.begin(), BlockValueStack.end()); in solve() 488 while (!BlockValueStack.empty()) { in solve() 509 BlockValueStack.clear(); in solve() 512 std::pair<BasicBlock *, Value *> e = BlockValueStack.back(); in solve() 517 assert(BlockValueStack.back() == e && "Nothing should have been pushed!"); in solve() 527 BlockValueStack.pop_back(); in solve() 531 assert(BlockValueStack.back() != e && "Stack should have been pushed!"); in solve() 1457 assert(BlockValueStack.empty() && BlockValueSet.empty()); in getValueInBlock()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | LazyValueInfo.cpp | 388 SmallVector<std::pair<BasicBlock*, Value*>, 8> BlockValueStack; member in __anon241b53b70411::LazyValueInfoImpl 401 BlockValueStack.push_back(BV); in pushBlockValue() 515 BlockValueStack.begin(), BlockValueStack.end()); in solve() 518 while (!BlockValueStack.empty()) { in solve() 539 BlockValueStack.clear(); in solve() 542 std::pair<BasicBlock *, Value *> e = BlockValueStack.back(); in solve() 547 assert(BlockValueStack.back() == e && "Nothing should have been pushed!"); in solve() 555 BlockValueStack.pop_back(); in solve() 559 assert(BlockValueStack.back() != e && "Stack should have been pushed!"); in solve() 1560 assert(BlockValueStack.empty() && BlockValueSet.empty()); in getValueInBlock()
|
/external/llvm/lib/Analysis/ |
D | LazyValueInfo.cpp | 410 std::stack<std::pair<BasicBlock*, Value*> > BlockValueStack; member in __anonb20e53550311::LazyValueInfoCache 423 BlockValueStack.push(BV); in pushBlockValue() 568 while (!BlockValueStack.empty()) { in solve() 569 std::pair<BasicBlock*, Value*> &e = BlockValueStack.top(); in solve() 574 assert(BlockValueStack.top() == e && "Nothing should have been pushed!"); in solve() 581 BlockValueStack.pop(); in solve() 585 assert(BlockValueStack.top() != e && "Stack should have been pushed!"); in solve() 1321 assert(BlockValueStack.empty() && BlockValueSet.empty()); in getValueInBlock()
|