Changeset 199863 in webkit for trunk/Source/JavaScriptCore/runtime/Executable.h
- Timestamp:
- Apr 21, 2016, 7:28:00 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/Executable.h
r198980 r199863 358 358 void setNeverInline(bool value) { m_neverInline = value; } 359 359 void setNeverOptimize(bool value) { m_neverOptimize = value; } 360 void setNeverFTLOptimize(bool value) { m_neverFTLOptimize = value; } 360 361 void setDidTryToEnterInLoop(bool value) { m_didTryToEnterInLoop = value; } 361 362 bool neverInline() const { return m_neverInline; } 362 363 bool neverOptimize() const { return m_neverOptimize; } 364 bool neverFTLOptimize() const { return m_neverFTLOptimize; } 363 365 bool didTryToEnterInLoop() const { return m_didTryToEnterInLoop; } 364 366 bool isInliningCandidate() const { return !neverInline(); } … … 420 422 bool m_neverInline : 1; 421 423 bool m_neverOptimize : 1; 424 bool m_neverFTLOptimize : 1; 422 425 bool m_isArrowFunctionContext : 1; 423 426 unsigned m_derivedContextType : 2; // DerivedContextType
Note:
See TracChangeset
for help on using the changeset viewer.