Changeset 243898 in webkit
- Timestamp:
- Apr 4, 2019, 1:41:57 PM (7 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
interpreter/StackVisitor.cpp (modified) (2 diffs)
-
interpreter/StackVisitor.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r243886 r243898 1 2019-04-04 Yusuke Suzuki <ysuzuki@apple.com> 2 3 Unreviewed, build fix for CLoop and Windows after r243886 4 https://bugs.webkit.org/show_bug.cgi?id=196387 5 6 RegisterAtOffsetList does not exist if ENABLE(ASSEMBLER) is false. 7 8 * interpreter/StackVisitor.cpp: 9 (JSC::StackVisitor::Frame::calleeSaveRegistersForUnwinding): 10 * interpreter/StackVisitor.h: 11 1 12 2019-04-04 Saam barati <sbarati@apple.com> 2 13 -
trunk/Source/JavaScriptCore/interpreter/StackVisitor.cpp
r243886 r243898 254 254 } 255 255 256 #if !ENABLE(C_LOOP) && NUMBER_OF_CALLEE_SAVES_REGISTERS > 0 256 257 Optional<RegisterAtOffsetList> StackVisitor::Frame::calleeSaveRegistersForUnwinding() 257 258 { 258 259 if (isInlinedFrame()) 259 260 return WTF::nullopt; 260 261 #if !ENABLE(C_LOOP) && NUMBER_OF_CALLEE_SAVES_REGISTERS > 0262 261 263 262 #if ENABLE(WEBASSEMBLY) … … 280 279 return *codeBlock->calleeSaveRegisters(); 281 280 281 return WTF::nullopt; 282 } 282 283 #endif // !ENABLE(C_LOOP) && NUMBER_OF_CALLEE_SAVES_REGISTERS > 0 283 284 return WTF::nullopt;285 }286 284 287 285 String StackVisitor::Frame::functionName() const -
trunk/Source/JavaScriptCore/interpreter/StackVisitor.h
r243886 r243898 95 95 JS_EXPORT_PRIVATE void computeLineAndColumn(unsigned& line, unsigned& column) const; 96 96 97 #if !ENABLE(C_LOOP) && NUMBER_OF_CALLEE_SAVES_REGISTERS > 0 97 98 Optional<RegisterAtOffsetList> calleeSaveRegistersForUnwinding(); 99 #endif // !ENABLE(C_LOOP) && NUMBER_OF_CALLEE_SAVES_REGISTERS > 0 98 100 99 101 ClonedArguments* createArguments();
Note:
See TracChangeset
for help on using the changeset viewer.