Changeset 107308 in webkit
- Timestamp:
- Feb 9, 2012, 4:36:23 PM (15 years ago)
- Location:
- branches/safari-534.54-branch
- Files:
-
- 3 edited
- 3 copied
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/fast/js/dfg-inline-function-dot-caller-expected.txt (copied) (copied from trunk/LayoutTests/fast/js/dfg-inline-function-dot-caller-expected.txt )
-
LayoutTests/fast/js/dfg-inline-function-dot-caller.html (copied) (copied from trunk/LayoutTests/fast/js/dfg-inline-function-dot-caller.html )
-
LayoutTests/fast/js/script-tests/dfg-inline-function-dot-caller.js (copied) (copied from trunk/LayoutTests/fast/js/script-tests/dfg-inline-function-dot-caller.js )
-
Source/JavaScriptCore/ChangeLog (modified) (1 diff)
-
Source/JavaScriptCore/interpreter/Interpreter.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/safari-534.54-branch/LayoutTests/ChangeLog
r107007 r107308 1 2011-02-09 Lucas Forschler <lforschler@apple.com> 2 3 Merge 106596 4 5 2012-02-02 Filip Pizlo <fpizlo@apple.com> 6 7 retrieveCallerFromVMCode should call trueCallerFrame 8 https://bugs.webkit.org/show_bug.cgi?id=77684 9 10 Rubber stamped by Oliver Hunt. 11 12 * fast/js/dfg-inline-function-dot-caller-expected.txt: Added. 13 * fast/js/dfg-inline-function-dot-caller.html: Added. 14 * fast/js/script-tests/dfg-inline-function-dot-caller.js: Added. 15 (resultArray): 16 (object.nonInlineable.nonInlineable.if): 17 (object.nonInlineable): 18 (object.inlineable): 19 (makeInlinableCall): 20 (g): 21 1 22 2011-02-07 Lucas Forschler <lforschler@apple.com> 2 23 -
branches/safari-534.54-branch/Source/JavaScriptCore/ChangeLog
r107003 r107308 1 2011-02-09 Lucas Forschler <lforschler@apple.com> 2 3 Merge 106596 4 5 2012-02-02 Filip Pizlo <fpizlo@apple.com> 6 7 retrieveCallerFromVMCode should call trueCallerFrame 8 https://bugs.webkit.org/show_bug.cgi?id=77684 9 10 Reviewed by Oliver Hunt. 11 12 * interpreter/Interpreter.cpp: 13 (JSC::Interpreter::retrieveCallerFromVMCode): 14 1 15 2012-02-07 Gavin Barraclough <barraclough@apple.com> 2 16 -
branches/safari-534.54-branch/Source/JavaScriptCore/interpreter/Interpreter.cpp
r106137 r107308 5103 5103 if (!functionCallFrame) 5104 5104 return jsNull(); 5105 5106 CallFrame* callerFrame = functionCallFrame->callerFrame(); 5107 if (callerFrame->hasHostCallFrameFlag()) 5105 5106 if (functionCallFrame->callerFrame()->hasHostCallFrameFlag()) 5108 5107 return jsNull(); 5108 5109 CallFrame* callerFrame = functionCallFrame->trueCallerFrame(); 5109 5110 5110 5111 JSValue caller = callerFrame->callee();
Note:
See TracChangeset
for help on using the changeset viewer.