Changeset 201896 in webkit
- Timestamp:
- Jun 9, 2016, 5:42:19 PM (9 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r201892 r201896 1 2016-06-09 Mark Lam <mark.lam@apple.com> 2 3 Make some methods const. 4 https://bugs.webkit.org/show_bug.cgi?id=158594 5 6 Reviewed by Benjamin Poulain. 7 8 * bytecode/CodeBlock.cpp: 9 (JSC::CodeBlock::columnNumberForBytecodeOffset): 10 (JSC::CodeBlock::expressionRangeForBytecodeOffset): 11 * bytecode/CodeBlock.h: 12 * bytecode/ExpressionRangeInfo.h: 13 (JSC::ExpressionRangeInfo::encodeFatColumnMode): 14 (JSC::ExpressionRangeInfo::decodeFatLineMode): 15 (JSC::ExpressionRangeInfo::decodeFatColumnMode): 16 * bytecode/UnlinkedCodeBlock.cpp: 17 (JSC::UnlinkedCodeBlock::lineNumberForBytecodeOffset): 18 (JSC::UnlinkedCodeBlock::getLineAndColumn): 19 (JSC::UnlinkedCodeBlock::expressionRangeForBytecodeOffset): 20 * bytecode/UnlinkedCodeBlock.h: 21 (JSC::UnlinkedCodeBlock::createRareDataIfNecessary): 22 * interpreter/Interpreter.cpp: 23 (JSC::Interpreter::isOpcode): 24 (JSC::StackFrame::computeLineAndColumn): 25 (JSC::StackFrame::toString): 26 * interpreter/Interpreter.h: 27 (JSC::StackFrame::isNative): 28 1 29 2016-06-09 Michael Saboff <msaboff@apple.com> 2 30 -
trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
r201866 r201896 3177 3177 } 3178 3178 3179 void CodeBlock::expressionRangeForBytecodeOffset(unsigned bytecodeOffset, int& divot, int& startOffset, int& endOffset, unsigned& line, unsigned& column) 3179 void CodeBlock::expressionRangeForBytecodeOffset(unsigned bytecodeOffset, int& divot, int& startOffset, int& endOffset, unsigned& line, unsigned& column) const 3180 3180 { 3181 3181 m_unlinkedCode->expressionRangeForBytecodeOffset(bytecodeOffset, divot, startOffset, endOffset, line, column); -
trunk/Source/JavaScriptCore/bytecode/CodeBlock.h
r201617 r201896 231 231 unsigned columnNumberForBytecodeOffset(unsigned bytecodeOffset); 232 232 void expressionRangeForBytecodeOffset(unsigned bytecodeOffset, int& divot, 233 int& startOffset, int& endOffset, unsigned& line, unsigned& column);233 int& startOffset, int& endOffset, unsigned& line, unsigned& column) const; 234 234 235 235 Optional<unsigned> bytecodeOffsetFromCallSiteIndex(CallSiteIndex); -
trunk/Source/JavaScriptCore/bytecode/ExpressionRangeInfo.h
r152494 r201896 1 1 /* 2 * Copyright (C) 2012 , 2013Apple Inc. All rights reserved.2 * Copyright (C) 2012-2013, 2016 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 87 87 } 88 88 89 void decodeFatLineMode(unsigned& line, unsigned& column) 89 void decodeFatLineMode(unsigned& line, unsigned& column) const 90 90 { 91 91 line = (position >> FatLineModeLineShift) & FatLineModeLineMask; … … 93 93 } 94 94 95 void decodeFatColumnMode(unsigned& line, unsigned& column) 95 void decodeFatColumnMode(unsigned& line, unsigned& column) const 96 96 { 97 97 line = (position >> FatColumnModeLineShift) & FatColumnModeLineMask; -
trunk/Source/JavaScriptCore/bytecode/UnlinkedCodeBlock.cpp
r201622 r201896 1 1 /* 2 * Copyright (C) 2012 , 2013, 2015Apple Inc. All Rights Reserved.2 * Copyright (C) 2012-2013, 2015-2016 Apple Inc. All Rights Reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 129 129 } 130 130 131 inline void UnlinkedCodeBlock::getLineAndColumn( ExpressionRangeInfo& info,132 unsigned& line, unsigned& column) 131 inline void UnlinkedCodeBlock::getLineAndColumn(const ExpressionRangeInfo& info, 132 unsigned& line, unsigned& column) const 133 133 { 134 134 switch (info.mode) { … … 186 186 187 187 void UnlinkedCodeBlock::expressionRangeForBytecodeOffset(unsigned bytecodeOffset, 188 int& divot, int& startOffset, int& endOffset, unsigned& line, unsigned& column) 188 int& divot, int& startOffset, int& endOffset, unsigned& line, unsigned& column) const 189 189 { 190 190 ASSERT(bytecodeOffset < instructions().count()); … … 199 199 } 200 200 201 Vector<ExpressionRangeInfo>& expressionInfo = m_expressionInfo;201 const Vector<ExpressionRangeInfo>& expressionInfo = m_expressionInfo; 202 202 203 203 int low = 0; … … 214 214 low = 1; 215 215 216 ExpressionRangeInfo& info = expressionInfo[low - 1];216 const ExpressionRangeInfo& info = expressionInfo[low - 1]; 217 217 startOffset = info.startOffset; 218 218 endOffset = info.endOffset; -
trunk/Source/JavaScriptCore/bytecode/UnlinkedCodeBlock.h
r201542 r201896 1 1 /* 2 * Copyright (C) 2012-201 5Apple Inc. All Rights Reserved.2 * Copyright (C) 2012-2016 Apple Inc. All Rights Reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 326 326 327 327 void expressionRangeForBytecodeOffset(unsigned bytecodeOffset, int& divot, 328 int& startOffset, int& endOffset, unsigned& line, unsigned& column) ;328 int& startOffset, int& endOffset, unsigned& line, unsigned& column) const; 329 329 330 330 bool typeProfilerExpressionInfoForBytecodeOffset(unsigned bytecodeOffset, unsigned& startDivot, unsigned& endDivot); … … 388 388 } 389 389 390 void getLineAndColumn( ExpressionRangeInfo&, unsigned& line, unsigned& column);390 void getLineAndColumn(const ExpressionRangeInfo&, unsigned& line, unsigned& column) const; 391 391 392 392 int m_numParameters; -
trunk/Source/JavaScriptCore/interpreter/Interpreter.cpp
r201830 r201896 445 445 } 446 446 447 void StackFrame::computeLineAndColumn(unsigned& line, unsigned& column) 447 void StackFrame::computeLineAndColumn(unsigned& line, unsigned& column) const 448 448 { 449 449 if (!codeBlock) { … … 463 463 } 464 464 465 String StackFrame::toString(VM& vm) 465 String StackFrame::toString(VM& vm) const 466 466 { 467 467 StringBuilder traceBuild; -
trunk/Source/JavaScriptCore/interpreter/Interpreter.h
r201830 r201896 91 91 bool isNative() const { return !codeBlock; } 92 92 93 void computeLineAndColumn(unsigned& line, unsigned& column) ;93 void computeLineAndColumn(unsigned& line, unsigned& column) const; 94 94 String functionName(VM&) const; 95 95 intptr_t sourceID() const; 96 96 String sourceURL() const; 97 String toString(VM&) ;97 String toString(VM&) const; 98 98 }; 99 99
Note:
See TracChangeset
for help on using the changeset viewer.