Changeset 164459 in webkit for trunk/Source/JavaScriptCore/dfg/DFGBasicBlock.h
- Timestamp:
- Feb 20, 2014, 5:20:48 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGBasicBlock.h
r163802 r164459 1 1 /* 2 * Copyright (C) 2011, 2013 Apple Inc. All rights reserved.2 * Copyright (C) 2011, 2013, 2014 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 49 49 50 50 struct BasicBlock : RefCounted<BasicBlock> { 51 BasicBlock(unsigned bytecodeBegin, unsigned numArguments, unsigned numLocals); 51 BasicBlock( 52 unsigned bytecodeBegin, unsigned numArguments, unsigned numLocals, 53 float executionCount); 52 54 ~BasicBlock(); 53 55 … … 135 137 Operands<AbstractValue> valuesAtTail; 136 138 139 float executionCount; 140 137 141 // These fields are reserved for NaturalLoops. 138 142 static const unsigned numberOfInnerMostLoopIndices = 2;
Note:
See TracChangeset
for help on using the changeset viewer.