Changeset 146548 in webkit for trunk/Source/JavaScriptCore/profiler/ProfilerCompilation.cpp
- Timestamp:
- Mar 21, 2013, 6:17:09 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/profiler/ProfilerCompilation.cpp
r141050 r146548 1 1 /* 2 * Copyright (C) 2012 Apple Inc. All rights reserved.2 * Copyright (C) 2012, 2013 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 38 38 : m_bytecodes(bytecodes) 39 39 , m_kind(kind) 40 , m_numInlinedGetByIds(0) 41 , m_numInlinedPutByIds(0) 42 , m_numInlinedCalls(0) 40 43 { 41 44 } … … 125 128 result->putDirect(exec->globalData(), exec->propertyNames().osrExits, exits); 126 129 130 result->putDirect(exec->globalData(), exec->propertyNames().numInlinedGetByIds, jsNumber(m_numInlinedGetByIds)); 131 result->putDirect(exec->globalData(), exec->propertyNames().numInlinedPutByIds, jsNumber(m_numInlinedPutByIds)); 132 result->putDirect(exec->globalData(), exec->propertyNames().numInlinedCalls, jsNumber(m_numInlinedCalls)); 133 127 134 return result; 128 135 }
Note:
See TracChangeset
for help on using the changeset viewer.