Lines Matching refs:from
900 // If the tags match we extract the values from the exception object and
1314 void Forward(FullDecoder* decoder, const Value& from, Value* to) {
1315 to->node = from.node;
1566 // Start a new merge from the instance cache.
1600 // Create a complete copy of {from}.
1601 SsaEnv* Split(Zone* zone, SsaEnv* from) {
1602 DCHECK_NOT_NULL(from);
1603 if (from == ssa_env_) {
1607 SsaEnv* result = zone->New<SsaEnv>(*from);
1612 // Create a copy of {from} that steals its state and leaves {from}
1614 SsaEnv* Steal(Zone* zone, SsaEnv* from) {
1615 DCHECK_NOT_NULL(from);
1616 if (from == ssa_env_) {
1620 SsaEnv* result = zone->New<SsaEnv>(std::move(*from));
1621 // Restore the length of {from->locals} after applying move-constructor.
1622 from->locals.resize(result->locals.size());
1832 // We are only interested in exits from the innermost loop.