Changeset 106276 in webkit for trunk/Source/JavaScriptCore/tools/CodeProfile.cpp
- Timestamp:
- Jan 30, 2012, 12:38:32 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/tools/CodeProfile.cpp
r106197 r106276 93 93 while (framePointer) { 94 94 CodeType type; 95 96 #if ENABLE(JIT) 97 // Determine if this sample fell in JIT code, and if so, from which JIT & why. 95 98 void* ownerUID = CodeProfiling::getOwnerUIDForPC(pc); 96 99 97 // Determine if this sample fell in JIT code, and if so, from which JIT & why.98 100 if (!ownerUID) 99 101 type = EngineFrame; … … 113 115 type = BaselineProfile; 114 116 } 117 #else 118 type = EngineFrame; 119 #endif 115 120 116 121 // A sample in JIT code terminates the trace.
Note:
See TracChangeset
for help on using the changeset viewer.