Changeset 179477 in webkit for trunk/Source/JavaScriptCore/dfg/DFGNode.h
- Timestamp:
- Feb 2, 2015, 10:15:44 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGNode.h
r179392 r179477 1 1 /* 2 * Copyright (C) 2011 , 2012, 2013, 2014Apple Inc. All rights reserved.2 * Copyright (C) 2011-2015 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 539 539 } 540 540 541 void convert ToPhantomLocal()541 void convertPhantomToPhantomLocal() 542 542 { 543 543 ASSERT(m_op == Phantom && (child1()->op() == Phi || child1()->op() == SetLocal || child1()->op() == SetArgument)); … … 545 545 m_opInfo = child1()->m_opInfo; // Copy the variableAccessData. 546 546 children.setChild1(Edge()); 547 } 548 549 void convertFlushToPhantomLocal() 550 { 551 ASSERT(m_op == Flush); 552 m_op = PhantomLocal; 553 children = AdjacencyList(); 547 554 } 548 555
Note:
See TracChangeset
for help on using the changeset viewer.