Searched defs:StoreLoop (Results 1 – 1 of 1) sorted by relevance
230 struct StoreLoop { struct231 Node* base;232 Node* val;233 Node* phi;234 Node* store;236 explicit StoreLoop(While& w) in StoreLoop() function241 StoreLoop(While& w, Node* b, Node* v) : base(b), val(v) { Build(w); } in StoreLoop() function243 void Build(While& w) { in Build()