Changeset 242674 in webkit
- Timestamp:
- Mar 9, 2019, 9:29:35 AM (7 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
profiler/ProfilerCompilation.cpp (modified) (1 diff)
-
profiler/ProfilerCompilation.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r242673 r242674 1 2019-03-09 Robin Morisset <rmorisset@apple.com> 2 3 Compilation can be shrunk by 8 bytes 4 https://bugs.webkit.org/show_bug.cgi?id=195500 5 6 Reviewed by Mark Lam. 7 8 * profiler/ProfilerCompilation.cpp: 9 (JSC::Profiler::Compilation::Compilation): 10 * profiler/ProfilerCompilation.h: 11 1 12 2019-03-09 Robin Morisset <rmorisset@apple.com> 2 13 -
trunk/Source/JavaScriptCore/profiler/ProfilerCompilation.cpp
r230748 r242674 37 37 38 38 Compilation::Compilation(Bytecodes* bytecodes, CompilationKind kind) 39 : m_bytecodes(bytecodes) 40 , m_kind(kind) 41 , m_jettisonReason(NotJettisoned) 39 : m_kind(kind) 40 , m_bytecodes(bytecodes) 42 41 , m_numInlinedGetByIds(0) 43 42 , m_numInlinedPutByIds(0) 44 43 , m_numInlinedCalls(0) 44 , m_jettisonReason(NotJettisoned) 45 45 , m_uid(UID::create()) 46 46 { -
trunk/Source/JavaScriptCore/profiler/ProfilerCompilation.h
r230748 r242674 82 82 83 83 private: 84 CompilationKind m_kind; 84 85 Bytecodes* m_bytecodes; 85 CompilationKind m_kind;86 JettisonReason m_jettisonReason;87 CString m_additionalJettisonReason;88 86 Vector<ProfiledBytecodes> m_profiledBytecodes; 89 87 Vector<CompiledBytecode> m_descriptions; … … 94 92 unsigned m_numInlinedPutByIds; 95 93 unsigned m_numInlinedCalls; 94 JettisonReason m_jettisonReason; 95 CString m_additionalJettisonReason; 96 96 UID m_uid; 97 97 };
Note:
See TracChangeset
for help on using the changeset viewer.