Changeset 155075 in webkit
- Timestamp:
- Sep 4, 2013, 3:33:57 PM (12 years ago)
- Location:
- trunk/Source
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/API/JSContextRef.cpp
r155013 r155075 275 275 ASSERT(maxStackSize); 276 276 BacktraceFunctor functor(builder, maxStackSize); 277 StackIterator iter = frame->begin(); 278 iter.iterate(functor); 277 frame->iterate(functor); 279 278 280 279 return OpaqueJSString::create(builder.toString()).leakRef(); -
trunk/Source/JavaScriptCore/ChangeLog
r155064 r155075 1 2013-09-04 Mark Lam <mark.lam@apple.com> 2 3 Refining the StackIterator callback interface. 4 https://bugs.webkit.org/show_bug.cgi?id=120695. 5 6 Reviewed by Geoffrey Garen. 7 8 Introduce CallFrame::iterate() which instantiates a StackIterator and 9 invoke its iterate() method with the passed in functor. The only place 10 where the client code gets access to the StackIterator now is as an 11 argument to the client's functor. 12 13 * API/JSContextRef.cpp: 14 (JSContextCreateBacktrace): 15 * interpreter/CallFrame.cpp: 16 * interpreter/CallFrame.h: 17 (JSC::ExecState::iterate): 18 * interpreter/Interpreter.cpp: 19 (JSC::Interpreter::dumpRegisters): 20 (JSC::Interpreter::getStackTrace): 21 (JSC::Interpreter::unwind): 22 * interpreter/StackIterator.cpp: 23 (JSC::StackIterator::StackIterator): 24 (DebugPrintFrameFunctor::DebugPrintFrameFunctor): 25 (DebugPrintFrameFunctor::operator()): 26 (debugPrintCallFrame): 27 (debugPrintStack): 28 * interpreter/StackIterator.h: 29 (JSC::StackIterator::iterate): 30 * jsc.cpp: 31 (functionJSCStack): 32 * profiler/ProfileGenerator.cpp: 33 (JSC::ProfileGenerator::addParentForConsoleStart): 34 * runtime/JSFunction.cpp: 35 (JSC::retrieveArguments): 36 (JSC::RetrieveCallerFunctionFunctor::operator()): 37 (JSC::retrieveCallerFunction): 38 * runtime/JSGlobalObjectFunctions.cpp: 39 (JSC::globalFuncProtoGetter): 40 (JSC::globalFuncProtoSetter): 41 * runtime/ObjectConstructor.cpp: 42 (JSC::objectConstructorGetPrototypeOf): 43 1 44 2013-09-04 Benjamin Poulain <benjamin@webkit.org> 2 45 -
trunk/Source/JavaScriptCore/interpreter/CallFrame.cpp
r155013 r155075 98 98 } 99 99 100 StackIterator CallFrame::begin(StackIterator::FrameFilter filter)101 {102 ASSERT(this);103 return StackIterator(this, filter);104 }105 106 100 } // namespace JSC -
trunk/Source/JavaScriptCore/interpreter/CallFrame.h
r155013 r155075 284 284 CallFrame* callerFrameNoFlags() { return callerFrame()->removeHostCallFrameFlag(); } 285 285 286 JS_EXPORT_PRIVATE StackIterator begin(StackIterator::FrameFilter = 0); 286 // CallFrame::iterate() expects a Functor that implements the following method: 287 // StackIterator::Status operator()(StackIterator&); 288 289 template <typename Functor> void iterate(Functor& functor) 290 { 291 StackIterator iter(this); 292 iter.iterate<Functor>(functor); 293 } 287 294 288 295 private: -
trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp
r155013 r155075 340 340 341 341 DumpRegisterFunctor functor(it); 342 StackIterator iter = callFrame->begin(); 343 iter.iterate(functor); 342 callFrame->iterate(functor); 344 343 345 344 dataLogF("[CodeBlock] | %10p | %p \n", it, callFrame->codeBlock()); … … 553 552 554 553 GetStackTraceFunctor functor(vm, results, maxStackSize); 555 StackIterator iter = callFrame->begin(); 556 iter.iterate(functor); 554 callFrame->iterate(functor); 557 555 } 558 556 … … 641 639 ASSERT(callFrame == vm.topCallFrame); 642 640 UnwindFunctor functor(callFrame, exceptionValue, isTermination, codeBlock, handler); 643 StackIterator iter = callFrame->begin(); 644 iter.iterate(functor); 641 callFrame->iterate(functor); 645 642 if (!handler) 646 643 return 0; -
trunk/Source/JavaScriptCore/interpreter/StackIterator.cpp
r155013 r155075 36 36 namespace JSC { 37 37 38 StackIterator::StackIterator(CallFrame* startFrame , StackIterator::FrameFilter filter)38 StackIterator::StackIterator(CallFrame* startFrame) 39 39 : m_startFrame(startFrame) 40 , m_filter(filter)41 40 { 42 41 resetIterator(); 43 }44 45 size_t StackIterator::numberOfFrames()46 {47 int savedFrameIndex = m_frame.index();48 resetIterator();49 while (m_frame.callFrame())50 gotoNextFrameWithFilter();51 size_t numberOfFrames = m_frame.index();52 53 resetIterator();54 gotoFrameAtIndex(savedFrameIndex);55 56 return numberOfFrames;57 }58 59 void StackIterator::gotoFrameAtIndex(size_t index)60 {61 while (m_frame.callFrame() && (m_frame.index() != index))62 gotoNextFrameWithFilter();63 42 } 64 43 … … 74 53 #endif // ENABLE(DFG_JIT) 75 54 readFrame(m_frame.callerFrame()); 76 }77 78 void StackIterator::gotoNextFrameWithFilter()79 {80 ASSERT(m_frame.callFrame());81 while (m_frame.callFrame()) {82 gotoNextFrame();83 if (!m_frame.callFrame() || !m_filter || !m_filter(&m_frame))84 break;85 }86 m_frame.m_index++;87 55 } 88 56 … … 456 424 void debugPrintStack(JSC::CallFrame* topCallFrame); 457 425 458 void debugPrintCallFrame(JSC::CallFrame* callFrame) 459 { 460 if (!callFrame) 461 return; 462 StackIterator iter = callFrame->begin(); 463 iter->print(2); 464 } 465 466 class DebugPrintStackFunctor { 426 class DebugPrintFrameFunctor { 467 427 public: 428 enum Action { 429 PrintOne, 430 PrintAll 431 }; 432 433 DebugPrintFrameFunctor(Action action) 434 : m_action(action) 435 { 436 } 437 468 438 StackIterator::Status operator()(StackIterator& iter) 469 439 { 470 440 iter->print(2); 471 return StackIterator::Continue; 472 } 441 return m_action == PrintAll ? StackIterator::Continue : StackIterator::Done; 442 } 443 444 private: 445 Action m_action; 473 446 }; 474 447 448 void debugPrintCallFrame(JSC::CallFrame* callFrame) 449 { 450 if (!callFrame) 451 return; 452 DebugPrintFrameFunctor functor(DebugPrintFrameFunctor::PrintOne); 453 callFrame->iterate(functor); 454 } 455 475 456 void debugPrintStack(JSC::CallFrame* topCallFrame) 476 457 { 477 458 if (!topCallFrame) 478 459 return; 479 DebugPrint StackFunctor functor;480 StackIterator iter = topCallFrame->begin();481 iter.iterate(functor); 482 } 460 DebugPrintFrameFunctor functor(DebugPrintFrameFunctor::PrintAll); 461 topCallFrame->iterate(functor); 462 } 463 483 464 #endif // !NDEBUG -
trunk/Source/JavaScriptCore/interpreter/StackIterator.h
r155013 r155075 101 101 InlineCallFrame* m_inlineCallFrame; 102 102 #endif 103 104 103 CallFrame* m_callFrame; 105 104 106 105 friend class StackIterator; 107 106 }; 108 109 typedef bool (*FrameFilter)(Frame*);110 107 111 108 enum Status { … … 123 120 if (status != Continue) 124 121 break; 125 gotoNextFrame WithFilter();122 gotoNextFrame(); 126 123 } 127 124 } 128 129 JS_EXPORT_PRIVATE size_t numberOfFrames();130 125 131 126 Frame& operator*() { return m_frame; } … … 133 128 134 129 private: 135 JS_EXPORT_PRIVATE StackIterator(CallFrame* startFrame , FrameFilter = 0);130 JS_EXPORT_PRIVATE StackIterator(CallFrame* startFrame); 136 131 137 void gotoFrameAtIndex(size_t frameIndex); 138 void gotoNextFrame(); 139 JS_EXPORT_PRIVATE void gotoNextFrameWithFilter(); 132 JS_EXPORT_PRIVATE void gotoNextFrame(); 140 133 void resetIterator(); 141 134 … … 147 140 148 141 CallFrame* m_startFrame; 149 FrameFilter m_filter;150 142 Frame m_frame; 151 143 -
trunk/Source/JavaScriptCore/jsc.cpp
r155013 r155075 350 350 351 351 FunctionJSCStackFunctor functor(trace); 352 StackIterator iter = exec->begin(); 353 iter.iterate(functor); 352 exec->iterate(functor); 354 353 fprintf(stderr, "%s", trace.toString().utf8().data()); 355 354 return JSValue::encode(jsUndefined()); -
trunk/Source/JavaScriptCore/profiler/ProfileGenerator.cpp
r155013 r155075 99 99 { 100 100 AddParentForConsoleStartFunctor functor(exec, m_head, m_currentNode); 101 StackIterator iter = exec->begin(); 102 iter.iterate(functor); 101 exec->iterate(functor); 103 102 104 103 if (!functor.foundParent()) { -
trunk/Source/JavaScriptCore/runtime/JSFunction.cpp
r155013 r155075 211 211 { 212 212 RetrieveArgumentsFunctor functor(functionObj); 213 StackIterator iter = exec->begin(); 214 iter.iterate(functor); 213 exec->iterate(functor); 215 214 return functor.result(); 216 215 } … … 222 221 223 222 return retrieveArguments(exec, thisObj); 224 }225 226 static bool skipOverBoundFunctions(StackIterator::Frame* frame)227 {228 JSObject* callee = frame->callee();229 bool shouldSkip = callee ? callee->inherits(JSBoundFunction::info()) : false;230 return shouldSkip;231 223 } 232 224 … … 246 238 { 247 239 JSObject* callee = iter->callee(); 240 241 if (callee && callee->inherits(JSBoundFunction::info())) 242 return StackIterator::Continue; 243 248 244 if (!m_hasFoundFrame && (callee != m_targetCallee)) 249 245 return StackIterator::Continue; … … 270 266 { 271 267 RetrieveCallerFunctionFunctor functor(functionObj); 272 StackIterator iter = exec->begin(skipOverBoundFunctions); 273 iter.iterate(functor); 268 exec->iterate(functor); 274 269 return functor.result(); 275 270 } -
trunk/Source/JavaScriptCore/runtime/JSGlobalObjectFunctions.cpp
r155013 r155075 745 745 746 746 GlobalFuncProtoGetterFunctor functor(thisObject); 747 StackIterator iter = exec->begin(); 748 iter.iterate(functor); 747 exec->iterate(functor); 749 748 return functor.result(); 750 749 } … … 789 788 790 789 GlobalFuncProtoSetterFunctor functor(thisObject); 791 StackIterator iter = exec->begin(); 792 iter.iterate(functor); 790 exec->iterate(functor); 793 791 if (!functor.allowsAccess()) 794 792 return JSValue::encode(jsUndefined()); -
trunk/Source/JavaScriptCore/runtime/ObjectConstructor.cpp
r155013 r155075 167 167 JSObject* object = asObject(exec->argument(0)); 168 168 ObjectConstructorGetPrototypeOfFunctor functor(object); 169 StackIterator iter = exec->begin(); 170 iter.iterate(functor); 169 exec->iterate(functor); 171 170 return functor.result(); 172 171 } -
trunk/Source/WebCore/ChangeLog
r155074 r155075 1 2013-09-04 Mark Lam <mark.lam@apple.com> 2 3 Refining the StackIterator callback interface. 4 https://bugs.webkit.org/show_bug.cgi?id=120695. 5 6 Reviewed by Geoffrey Garen. 7 8 No new tests. 9 10 * bindings/js/JSXMLHttpRequestCustom.cpp: 11 (WebCore::SendFunctor::SendFunctor): 12 (WebCore::SendFunctor::line): 13 (WebCore::SendFunctor::url): 14 (WebCore::SendFunctor::operator()): 15 (WebCore::JSXMLHttpRequest::send): 16 * bindings/js/ScriptCallStackFactory.cpp: 17 (WebCore::createScriptCallStack): 18 1 19 2013-09-04 Andreas Kling <akling@apple.com> 2 20 -
trunk/Source/WebCore/bindings/js/JSXMLHttpRequestCustom.cpp
r155013 r155075 117 117 SendFunctor() 118 118 : m_hasSkippedFirstFrame(false) 119 , m_ hasViableFrame(false)119 , m_line(0) 120 120 { 121 121 } 122 122 123 bool hasViableFrame() const { return m_hasViableFrame; } 124 125 StackIterator::Status operator()(StackIterator&) 123 unsigned line() const { return m_line; } 124 String url() const { return m_url; } 125 126 StackIterator::Status operator()(StackIterator& iter) 126 127 { 127 128 if (!m_hasSkippedFirstFrame) { … … 130 131 } 131 132 132 m_hasViableFrame = true; 133 unsigned line = 0; 134 unsigned unusedColumn = 0; 135 iter->computeLineAndColumn(line, unusedColumn); 136 m_line = line; 137 m_url = iter->sourceURL(); 133 138 return StackIterator::Done; 134 139 } … … 136 141 private: 137 142 bool m_hasSkippedFirstFrame; 138 bool m_hasViableFrame; 143 unsigned m_line; 144 String m_url; 139 145 }; 140 146 … … 166 172 167 173 SendFunctor functor; 168 StackIterator iter = exec->begin(); 169 iter.iterate(functor); 170 if (functor.hasViableFrame()) { 171 unsigned line = 0; 172 unsigned unusuedColumn = 0; 173 iter->computeLineAndColumn(line, unusuedColumn); 174 impl()->setLastSendLineNumber(line); 175 impl()->setLastSendURL(iter->sourceURL()); 176 } else { 177 impl()->setLastSendLineNumber(0); 178 impl()->setLastSendURL(String()); 179 } 174 exec->iterate(functor); 175 impl()->setLastSendLineNumber(functor.line()); 176 impl()->setLastSendURL(functor.url()); 180 177 setDOMException(exec, ec); 181 178 return jsUndefined(); -
trunk/Source/WebCore/bindings/js/ScriptCallStackFactory.cpp
r155013 r155075 88 88 CallFrame* frame = exec->vm().topCallFrame; 89 89 CreateScriptCallStackFunctor functor(frames, maxStackSize); 90 StackIterator iter = frame->begin(); 91 iter.iterate(functor); 90 frame->iterate(functor); 92 91 } 93 92 if (frames.isEmpty() && !emptyIsAllowed) { … … 145 144 ASSERT(exec); 146 145 CallFrame* frame = exec->vm().topCallFrame; 147 StackIterator iter = frame->begin(); 148 size_t numberOfFrames = iter.numberOfFrames(); 149 CreateScriptCallStackForConsoleFunctor functor(numberOfFrames > 1, maxStackSize, frames); 150 iter.iterate(functor); 146 CreateScriptCallStackForConsoleFunctor functor(true, maxStackSize, frames); 147 frame->iterate(functor); 148 if (frames.isEmpty()) { 149 CreateScriptCallStackForConsoleFunctor functor(false, maxStackSize, frames); 150 frame->iterate(functor); 151 } 151 152 return ScriptCallStack::create(frames); 152 153 }
Note:
See TracChangeset
for help on using the changeset viewer.