Lines Matching refs:unique
14 Unique<Object> unique = Unique<Object>::CreateImmovable(object);
15 return NewNode(common()->HeapConstant(unique));
96 Node* JSGraph::HeapConstant(Unique<Object> value) {
97 // TODO(turbofan): canonicalize heap constants using Unique<T>
106 // return HeapConstant(Unique<Object>::CreateUninitialized(value));
107 // TODO(turbofan): This is a work-around to make Unique::HashCode() work for
108 // value numbering. We need some sane way to compute a unique hash code for
110 Unique<Object> unique(reinterpret_cast<Address>(*value.location()), value);
111 return HeapConstant(unique);