| 92 | } |
| 93 | |
| 94 | void push(llvm::Value &Target, std::vector<unsigned> Indices = {}) { |
| 95 | if (Visit.find(&Target) != Visit.end()) |
| 96 | return; |
| 97 | |
| 98 | Visit.insert(&Target); |
| 99 | Stack.push(std::make_shared<Node>(Target, Indices)); |
| 100 | } |
| 101 | |
| 102 | std::shared_ptr<Node> pop() { |
| 103 |