Changeset 208367 in webkit for trunk/Source/JavaScriptCore/dfg/DFGBasicBlock.h
- Timestamp:
- Nov 3, 2016, 9:38:58 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGBasicBlock.h
r208364 r208367 1 1 /* 2 * Copyright (C) 2011, 2013-201 6Apple Inc. All rights reserved.2 * Copyright (C) 2011, 2013-2015 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 34 34 #include "DFGFlushedAt.h" 35 35 #include "DFGNode.h" 36 #include "DFGNodeAbstractValuePair.h"37 36 #include "DFGNodeOrigin.h" 38 37 #include "DFGStructureClobberState.h" … … 250 249 AvailabilityMap availabilityAtTail; 251 250 252 Vector<NodeFlowProjection> liveAtHead; 253 Vector<NodeFlowProjection> liveAtTail; 251 Vector<Node*> liveAtHead; 252 Vector<Node*> liveAtTail; 253 struct NodeAbstractValuePair { 254 Node* node; 255 AbstractValue value; 256 }; 254 257 Vector<NodeAbstractValuePair> valuesAtHead; 255 258 Vector<NodeAbstractValuePair> valuesAtTail;
Note:
See TracChangeset
for help on using the changeset viewer.