Changeset 211542 in webkit for trunk/Source/JavaScriptCore/runtime/SamplingProfiler.h
- Timestamp:
- Feb 1, 2017, 5:23:37 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/SamplingProfiler.h
r211316 r211542 52 52 , callSiteIndex(callSiteIndex) 53 53 { } 54 55 UnprocessedStackFrame(void* pc) 56 : cCodePC(pc) 57 { } 58 54 59 UnprocessedStackFrame() 55 60 { 56 61 unverifiedCallee = JSValue::encode(JSValue()); 57 verifiedCodeBlock = nullptr;58 62 } 59 63 64 void* cCodePC { nullptr }; 60 65 EncodedJSValue unverifiedCallee; 61 CodeBlock* verifiedCodeBlock ;66 CodeBlock* verifiedCodeBlock { nullptr }; 62 67 CallSiteIndex callSiteIndex; 63 68 }; … … 66 71 Executable, 67 72 Host, 68 Unknown 73 C, 74 Unknown 69 75 }; 70 76 … … 79 85 80 86 FrameType frameType { FrameType::Unknown }; 87 void* cCodePC { nullptr }; 81 88 ExecutableBase* executable { nullptr }; 82 89 JSObject* callee { nullptr };
Note:
See TracChangeset
for help on using the changeset viewer.