Changeset 106596 in webkit
- Timestamp:
- Feb 2, 2012, 3:18:13 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 3 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/fast/js/dfg-inline-function-dot-caller-expected.txt (added)
-
LayoutTests/fast/js/dfg-inline-function-dot-caller.html (added)
-
LayoutTests/fast/js/script-tests/dfg-inline-function-dot-caller.js (added)
-
Source/JavaScriptCore/ChangeLog (modified) (1 diff)
-
Source/JavaScriptCore/interpreter/Interpreter.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r106593 r106596 1 2012-02-02 Filip Pizlo <fpizlo@apple.com> 2 3 retrieveCallerFromVMCode should call trueCallerFrame 4 https://bugs.webkit.org/show_bug.cgi?id=77684 5 6 Rubber stamped by Oliver Hunt. 7 8 * fast/js/dfg-inline-function-dot-caller-expected.txt: Added. 9 * fast/js/dfg-inline-function-dot-caller.html: Added. 10 * fast/js/script-tests/dfg-inline-function-dot-caller.js: Added. 11 (resultArray): 12 (object.nonInlineable.nonInlineable.if): 13 (object.nonInlineable): 14 (object.inlineable): 15 (makeInlinableCall): 16 (g): 17 1 18 2012-02-02 Chris Marrin <cmarrin@apple.com> 2 19 -
trunk/Source/JavaScriptCore/ChangeLog
r106595 r106596 1 2012-02-02 Filip Pizlo <fpizlo@apple.com> 2 3 retrieveCallerFromVMCode should call trueCallerFrame 4 https://bugs.webkit.org/show_bug.cgi?id=77684 5 6 Reviewed by Oliver Hunt. 7 8 * interpreter/Interpreter.cpp: 9 (JSC::Interpreter::retrieveCallerFromVMCode): 10 1 11 2012-02-02 Kalev Lember <kalevlember@gmail.com> 2 12 -
trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp
r106512 r106596 5127 5127 if (!functionCallFrame) 5128 5128 return jsNull(); 5129 5130 CallFrame* callerFrame = functionCallFrame->callerFrame(); 5131 if (callerFrame->hasHostCallFrameFlag()) 5129 5130 if (functionCallFrame->callerFrame()->hasHostCallFrameFlag()) 5132 5131 return jsNull(); 5132 5133 CallFrame* callerFrame = functionCallFrame->trueCallerFrame(); 5133 5134 5134 5135 JSValue caller = callerFrame->callee();
Note:
See TracChangeset
for help on using the changeset viewer.