- 23 Jan, 2014 1 commit
-
-
mark.lam@apple.com authored
<https://webkit.org/b/122836> Reviewed by Geoffrey Garen. Previously we gained back some performance (run at baseline JIT speeds) when the WebInspector is opened provided no breakpoints are set. This was achieved by simply skipping all op_debug callbacks to the debugger if no breakpoints are set. If any breakpoints are set, the debugger will set a m_needsOpDebugCallbacks flag which causes the callbacks to be called, and we don't get the baseline JIT speeds anymore. With this patch, we will now track the number of breakpoints set in the CodeBlock that they are set in. The LLINT and baseline JIT code will check CodeBlock::m_numBreakpoints to determine if the op_debug callbacks need to be called. With this, we will only enable op_debug callbacks for CodeBlocks that need it i.e. those with breakpoints set in them. Debugger::m_needsOpDebugCallbacks is now obsoleted. The LLINT and baseline JIT code still needs to check Debugger::m_shouldPause to determine if the debugger is in stepping mode and hence, needs op_debug callbacks enabled for everything until the debugger "continues" the run and exit stepping mode. Also in this patch, I fixed a regression in DOM breakpoints which relies Debugger::breakProgram() to pause the debugger. * bytecode/CodeBlock.cpp: (JSC::CodeBlock::dumpBytecode): - Missed accounting for op_debug's new hasBreakpointFlag operand here when it was added. (JSC::CodeBlock::CodeBlock): (JSC::CodeBlock::hasOpDebugForLineAndColumn): - This is needed in Debugger::toggleBreakpoint() to determine if a breakpoint falls within a CodeBlock or not. Simply checking the bounds of the CodeBlock is insufficient. For example, let's say we have the following JS code: // begin global scope function f1() { function f2() { ... // set breakpoint here. } } // end global scope Using the CodeBlock bounds alone, the breakpoint above will to appear to be in the global program CodeBlock, and the CodeBlocks for function f1() and f2(). With CodeBlock::hasOpDebugForLineAndColumn() we can rule out the global program CodeBlock and f1(), and only apply the breakpoint to f2(0 where it belongs. CodeBlock::hasOpDebugForLineAndColumn() works by iterating over all the opcodes in the CodeBlock to look for op_debug's. For each op_debug, it calls CodeBlock::expressionRangeForBytecodeOffset() to do a binary seach to get the line and column info for that op_debug. This is a N * log(N) algorithm. However, a quick hands on test using the WebInspector (with this patch applied) to exercise setting, breaking on, and clearing breakpoints, as well as stepping through some code shows no noticeable degradation of the user experience compared to the baseline without this patch. * bytecode/CodeBlock.h: (JSC::CodeBlock::numBreakpoints): (JSC::CodeBlock::numBreakpointsOffset): (JSC::CodeBlock::addBreakpoint): (JSC::CodeBlock::removeBreakpoint): (JSC::CodeBlock::clearAllBreakpoints): * debugger/Breakpoint.h: - defined Breakpoint::unspecifiedColumn so that we can explicitly indicate when the WebInspector was setting a line breakpoint and did not provide a column value. CodeBlock::hasOpDebugForLineAndColumn() needs this information in order to loosen its matching criteria for op_debug bytecodes for the specified breakpoint line and column values provided by the debugger. Previously, we just hijack a 0 value column as an unspecified column. However, the WebInspector operates on 0-based ints for column values. Hence, 0 should be a valid column value and should not be hijacked to mean an unspecified column. * debugger/Debugger.cpp: (JSC::Debugger::Debugger): - added tracking of the VM that the debugger is used with. This is needed by Debugger::breakProgram(). The VM pointer is attained from the first JSGlobalObject that the debugger attaches to. When the debugger detaches from the last JSGlobalObject, it will nullify its VM pointer to allow a new one to be set on the next attach. We were always only using each debugger instance with one VM. This change makes it explicit with an assert to ensure that all globalObjects that the debugger attaches to beongs to the same VM. (JSC::Debugger::attach): (JSC::Debugger::detach): (JSC::Debugger::setShouldPause): (JSC::Debugger::registerCodeBlock): (JSC::Debugger::unregisterCodeBlock): - registerCodeBlock() is responsible for applying pre-existing breakpoints to new CodeBlocks being installed. Similarly, unregisterCodeBlock() clears the breakpoints. (JSC::Debugger::toggleBreakpoint): - This is the workhorse function that checks if a breakpoint falls within a CodeBlock or not. If it does, then it can either enable or disable said breakpoint in the CodeBlock. In the current implementation, enabling/disabling the breakpoint simply means incrementing/decrementing the CodeBlock's m_numBreakpoints. (JSC::Debugger::applyBreakpoints): (JSC::Debugger::ToggleBreakpointFunctor::ToggleBreakpointFunctor): (JSC::Debugger::ToggleBreakpointFunctor::operator()): (JSC::Debugger::toggleBreakpoint): - Iterates all relevant CodeBlocks and apply the specified breakpoint if appropriate. This is called when a new breakpoint is being defined by the WebInspector and needs to be applied to an already installed CodeBlock. (JSC::Debugger::setBreakpoint): (JSC::Debugger::removeBreakpoint): (JSC::Debugger::hasBreakpoint): (JSC::Debugger::ClearBreakpointsFunctor::ClearBreakpointsFunctor): (JSC::Debugger::ClearBreakpointsFunctor::operator()): (JSC::Debugger::clearBreakpoints): (JSC::Debugger::breakProgram): - Fixed a regression that broke DOM breakpoints. The issue is that with the skipping of op_debug callbacks, we don't always have an updated m_currentCallFrame. Normally, m_currentCallFrame is provided as arg in the op_debug callback. In this case, we can get the CallFrame* from m_vm->topCallFrame. (JSC::Debugger::updateCallFrameAndPauseIfNeeded): (JSC::Debugger::pauseIfNeeded): (JSC::Debugger::willExecuteProgram): * debugger/Debugger.h: (JSC::Debugger::Debugger): (JSC::Debugger::shouldPause): * heap/CodeBlockSet.h: (JSC::CodeBlockSet::iterate): * heap/Heap.h: (JSC::Heap::forEachCodeBlock): - Added utility to iterate all CodeBlocks in the heap / VM. * interpreter/Interpreter.cpp: (JSC::Interpreter::debug): * jit/JITOpcodes.cpp: (JSC::JIT::emit_op_debug): * jit/JITOpcodes32_64.cpp: (JSC::JIT::emit_op_debug): * llint/LowLevelInterpreter.asm: - These now checks CodeBlock::m_numBreakpoints and Debugger::m_shouldPause instead of Debugger::m_needsOpDebugCallbacks. * runtime/Executable.cpp: (JSC::ScriptExecutable::installCode): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162598 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
- 22 Jan, 2014 3 commits
-
-
lforschler@apple.com authored
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162592 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
mmaxfield@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=127333 Source/JavaScriptCore: This is required for unprefixing the text-decoration-* CSS properties. Reviewed by Simon Fraser. * Configurations/FeatureDefines.xcconfig: Source/WebCore: Reviewed by Simon Fraser. This is required for unprefixing the text-decoration-* CSS properties. No new tests are necessary becase the flag was already on by default. * Configurations/FeatureDefines.xcconfig: * css/CSSComputedStyleDeclaration.cpp: (WebCore::renderTextDecorationSkipFlagsToCSSValue): (WebCore::ComputedStyleExtractor::propertyValue): * css/CSSParser.cpp: (WebCore::isColorPropertyID): (WebCore::CSSParser::parseValue): (WebCore::CSSParser::addTextDecorationProperty): (WebCore::CSSParser::parseTextUnderlinePosition): * css/CSSParser.h: * css/CSSPrimitiveValueMappings.h: (WebCore::CSSPrimitiveValue::operator TextUnderlinePosition): * css/CSSPropertyNames.in: * css/CSSValueKeywords.in: * css/DeprecatedStyleBuilder.cpp: (WebCore::DeprecatedStyleBuilder::DeprecatedStyleBuilder): * css/StylePropertyShorthand.cpp: (WebCore::webkitTextDecorationShorthand): (WebCore::shorthandForProperty): (WebCore::matchingShorthandsForLonghand): * css/StylePropertyShorthand.h: * css/StyleResolver.cpp: (WebCore::shouldApplyPropertyInParseOrder): (WebCore::isValidVisitedLinkProperty): (WebCore::StyleResolver::applyProperty): * platform/graphics/GraphicsContext.h: * platform/graphics/cairo/GraphicsContextCairo.cpp: (WebCore::GraphicsContext::setPlatformStrokeStyle): * platform/graphics/cg/GraphicsContextCG.cpp: (WebCore::GraphicsContext::platformInit): * platform/graphics/wince/GraphicsContextWinCE.cpp: (WebCore::createPen): * rendering/InlineFlowBox.cpp: (WebCore::InlineFlowBox::computeMaxLogicalTop): * rendering/InlineFlowBox.h: * rendering/InlineTextBox.cpp: (WebCore::textDecorationStyleToStrokeStyle): (WebCore::boundingBoxForAllActiveDecorations): (WebCore::InlineTextBox::paintDecoration): * rendering/RenderObject.cpp: (WebCore::decorationColor): * rendering/RootInlineBox.cpp: (WebCore::RootInlineBox::maxLogicalTop): * rendering/RootInlineBox.h: * rendering/style/RenderStyle.cpp: (WebCore::RenderStyle::changeRequiresRepaintIfTextOrBorderOrOutline): (WebCore::RenderStyle::colorIncludingFallback): (WebCore::RenderStyle::visitedDependentColor): * rendering/style/RenderStyle.h: * rendering/style/RenderStyleConstants.h: * rendering/style/StyleRareInheritedData.cpp: (WebCore::StyleRareInheritedData::StyleRareInheritedData): (WebCore::StyleRareInheritedData::operator==): * rendering/style/StyleRareInheritedData.h: * rendering/style/StyleRareNonInheritedData.cpp: (WebCore::StyleRareNonInheritedData::StyleRareNonInheritedData): (WebCore::StyleRareNonInheritedData::operator==): * rendering/style/StyleRareNonInheritedData.h: Source/WebKit/mac: Reviewed by Simon Fraser. This is required for unprefixing the text-decoration-* CSS properties. * Configurations/FeatureDefines.xcconfig: Source/WebKit2: Reviewed by Simon Fraser. This is required for unprefixing the text-decoration-* CSS properties. * Configurations/FeatureDefines.xcconfig: Source/WTF: Reviewed by Simon Fraser. This is required for unprefixing the text-decoration-* CSS properties. * wtf/Platform.h: Tools: This is required for unprefixing the text-decoration-* CSS properties. Reviewed by Simon Fraser. * Configurations/FeatureDefines.xcconfig: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162579 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ap@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=127450 <rdar://15863457> Reviewed by Oliver Hunt. Covered by existing tests when running against a Unicode back-end that supports Unicode 6.3 or higher. * runtime/JSGlobalObjectFunctions.cpp: (JSC::isStrWhiteSpace): Explicitly allow U+180E MONGOLIAN VOWEL SEPARATOR, because we need to keep recognizing all characters that used to be whitespace. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162575 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
- 21 Jan, 2014 2 commits
-
-
mhahnenberg@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=127357 Reviewed by Filip Pizlo. Some platforms use t0 and t1 for their first two arguments, so using those to load the cell for the write barrier is a bad idea because it will get clobbered. * llint/LowLevelInterpreter32_64.asm: * llint/LowLevelInterpreter64.asm: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162460 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
mrowe@apple.com authored
Move the shell script build phase to copy jsc into JavaScriptCore.framework out of the jsc target and in to the All target so that it's not run during production builds. Xcode appears to the parent directories of paths referenced in the Output Files of the build phase, which leads to problems when the SYMROOT for the JavaScriptCore framework and the jsc executables are later merged. I've also fixed the path to the Resources folder in the script while I'm here. On iOS the framework bundle is shallow so the correct destination is Resources/ rather than Versions/A/Resources. This is handled by tweaking the JAVASCRIPTCORE_RESOURCES_DIR configuration setting to be relative rather than a complete path so we can reuse it in the script. The references in JSC.xcconfig and ToolExecutable.xcconfig are updated to prepend JAVASCRIPTCORE_FRAMEWORKS_DIR to preserve their former values. * Configurations/Base.xcconfig: * Configurations/JSC.xcconfig: * Configurations/ToolExecutable.xcconfig: * JavaScriptCore.xcodeproj/project.pbxproj: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162434 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
- 20 Jan, 2014 7 commits
-
-
akling@apple.com authored
<https://webkit.org/b/127253> The "divot" and "end" source locations are always identical for BindingNodes, so store only "start" and "end" instead. 1.19 MB progression on Membuster3. Reviewed by Geoff Garen. * bytecompiler/NodesCodegen.cpp: (JSC::BindingNode::bindValue): * parser/ASTBuilder.h: (JSC::ASTBuilder::createBindingLocation): * parser/NodeConstructors.h: (JSC::BindingNode::create): (JSC::BindingNode::BindingNode): * parser/Nodes.h: (JSC::BindingNode::divotStart): (JSC::BindingNode::divotEnd): * parser/Parser.cpp: (JSC::Parser<LexerType>::createBindingPattern): * parser/SyntaxChecker.h: (JSC::SyntaxChecker::operatorStackPop): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162393 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
fpizlo@apple.com authored
op_captured_mov and op_new_captured_func in UnlinkedCodeBlocks should use the IdentifierMap instead of the strings directly https://bugs.webkit.org/show_bug.cgi?id=127311 <rdar://problem/15853958> Reviewed by Andreas Kling. This makes UnlinkedCodeBlocks use 32-bit instruction streams again. * bytecode/CodeBlock.cpp: (JSC::CodeBlock::CodeBlock): * bytecode/UnlinkedCodeBlock.h: (JSC::UnlinkedInstruction::UnlinkedInstruction): * bytecompiler/BytecodeGenerator.cpp: (JSC::BytecodeGenerator::addVar): (JSC::BytecodeGenerator::emitInitLazyRegister): (JSC::BytecodeGenerator::createArgumentsIfNecessary): * bytecompiler/BytecodeGenerator.h: (JSC::BytecodeGenerator::watchableVariable): (JSC::BytecodeGenerator::hasWatchableVariable): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162390 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
mark.lam@apple.com authored
<https://webkit.org/b/127321> Reviewed by Geoffrey Garen. We're changing plans and will be going with CodeBlock level breakpoints instead of bytecode level breakpoints. As a result, we no longer need the services of CodeBlock::opDebugBytecodeOffsetForLineAndColumn() (and friends). This patch will remove that unused code. * GNUmakefile.list.am: * JavaScriptCore.vcxproj/JavaScriptCore.vcxproj: * JavaScriptCore.vcxproj/JavaScriptCore.vcxproj.filters: * JavaScriptCore.xcodeproj/project.pbxproj: * bytecode/CodeBlock.cpp: * bytecode/CodeBlock.h: * bytecode/LineColumnInfo.h: Removed. * bytecode/UnlinkedCodeBlock.cpp: (JSC::UnlinkedCodeBlock::dumpExpressionRangeInfo): * bytecode/UnlinkedCodeBlock.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162389 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
mhahnenberg@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=127301 Reviewed by Oliver Hunt. We used to just call CodeBlock::visitAggregate, but now we call visitChildren on the ownerExecutable, which is unnecessary. * heap/CodeBlockSet.cpp: (JSC::CodeBlockSet::traceMarked): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162377 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
andersca@apple.com authored
* heap/BlockAllocator.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162367 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
andersca@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=126313 Reviewed by Sam Weinig. * heap/BlockAllocator.cpp: (JSC::BlockAllocator::~BlockAllocator): (JSC::BlockAllocator::waitForDuration): (JSC::BlockAllocator::blockFreeingThreadMain): * heap/BlockAllocator.h: (JSC::BlockAllocator::deallocate): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162362 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
andersca@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=127256 Reviewed by Andreas Kling. * heap/GCThread.cpp: (JSC::GCThread::waitForNextPhase): (JSC::GCThread::gcThreadMain): * heap/GCThreadSharedData.cpp: (JSC::GCThreadSharedData::GCThreadSharedData): (JSC::GCThreadSharedData::~GCThreadSharedData): (JSC::GCThreadSharedData::startNextPhase): (JSC::GCThreadSharedData::endCurrentPhase): (JSC::GCThreadSharedData::didStartMarking): (JSC::GCThreadSharedData::didFinishMarking): * heap/GCThreadSharedData.h: * heap/SlotVisitor.cpp: (JSC::SlotVisitor::donateKnownParallel): (JSC::SlotVisitor::drainFromShared): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162352 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
- 18 Jan, 2014 10 commits
-
-
akling@apple.com authored
<https://webkit.org/b/127239> Reviewed by Anders Carlsson. * bytecode/CodeBlock.h: (JSC::CodeBlock::setNumberOfByValInfos): (JSC::CodeBlock::setNumberOfCallLinkInfos): Use resizeToFit() instead of grow() for these vectors, since we know the final size here. * bytecode/CodeBlock.cpp: (JSC::CodeBlock::shrinkToFit): No need to shrink here anymore. We were not even shrinking m_byValInfo before! git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162284 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
akling@apple.com authored
<https://webkit.org/b/127238> Reviewed by Anders Carlsson. * bytecode/CodeBlock.cpp: (JSC::CodeBlock::CodeBlock): Use resizeToFit() instead of grow() for m_functionExprs and m_functionDecls since we know they will never change size. (JSC::CodeBlock::shrinkToFit): No need to shrink them here anymore. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162281 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
akling@apple.com authored
<https://webkit.org/b/127237> Reviewed by Anders Carlsson. * bytecode/CodeBlock.h: * bytecode/CodeBlock.cpp: (JSC::CodeBlock::CodeBlock): (JSC::CodeBlock::shrinkToFit): Remove m_additionalIdentifiers, nothing uses it. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162279 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
akling@apple.com authored
<https://webkit.org/b/127235> Kill copyPostParseDataFrom() and copyPostParseDataFromAlternative() since they are not used. Reviewed by Anders Carlsson. * bytecode/CodeBlock.cpp: * bytecode/CodeBlock.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162278 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
akling@apple.com authored
<https://webkit.org/b/127234> Avoid allocation churn for CodeBlock::m_exceptionHandlers. Reviewed by Anders Carlsson. * bytecode/CodeBlock.h: Removed unused CodeBlock::allocateHandlers() function. * bytecode/CodeBlock.cpp: (JSC::CodeBlock::CodeBlock): Use resizeToFit() instead of grow() for m_exceptionHandlers since we know it's never going to change size. (JSC::CodeBlock::shrinkToFit): No need to shrink m_exceptionHandlers here since it's already the perfect size. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162277 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
mark.lam@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=127230. Reviewed by Geoffrey Garen. This is in anticipation of upcoming changes to support bytecode level breakpoints. This patch adds the flag to the op_debug bytecode and initializes it, but does not use it yet. * bytecode/Opcode.h: (JSC::padOpcodeName): * bytecompiler/BytecodeGenerator.cpp: (JSC::BytecodeGenerator::emitDebugHook): * llint/LowLevelInterpreter.asm: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162270 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
berto@igalia.com authored
https://bugs.webkit.org/show_bug.cgi?id=99683 Reviewed by Anders Carlsson. * jit/ThunkGenerators.cpp: * tools/CodeProfile.cpp: (JSC::symbolName): (JSC::CodeProfile::sample): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162266 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
andersca@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=127225 Reviewed by Andreas Kling. This concludes the removal of over 8.8 million lines of threaded parser code. .: * Source/autotools/SetupWebKitFeatures.m4: * Source/cmake/WebKitFeatures.cmake: * Source/cmakeconfig.h.cmake: Source/JavaScriptCore: * Configurations/FeatureDefines.xcconfig: Source/WebCore: * Configurations/FeatureDefines.xcconfig: Source/WebKit/mac: * Configurations/FeatureDefines.xcconfig: Source/WebKit2: * Configurations/FeatureDefines.xcconfig: Source/WTF: * wtf/FeatureDefines.h: Tools: * Scripts/webkitperl/FeatureList.pm: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162260 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
mark.lam@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=127127. Reviewed by Geoffrey Garen. In order to implement bytecode level breakpoints, we need a mechanism for computing the best fit op_debug bytecode offset for any valid given line and column value in the source. The "best fit" op_debug bytecode in this case is defined below in the comment for UnlinkedCodeBlock::opDebugBytecodeOffsetForLineAndColumn(). * GNUmakefile.list.am: * JavaScriptCore.vcxproj/JavaScriptCore.vcxproj: * JavaScriptCore.vcxproj/JavaScriptCore.vcxproj.filters: * JavaScriptCore.xcodeproj/project.pbxproj: * bytecode/CodeBlock.cpp: (JSC::CodeBlock::opDebugBytecodeOffsetForLineAndColumn): - Convert the line and column to unlinked line and column values and pass them to UnlinkedCodeBlock::opDebugBytecodeOffsetForLineAndColumn() to do the real work. * bytecode/CodeBlock.h: * bytecode/LineColumnInfo.h: Added. (JSC::LineColumnInfo::operator <): (JSC::LineColumnInfo::LineColumnPair::LineColumnPair): (JSC::LineColumnInfo::operator ==): (JSC::LineColumnInfo::operator !=): (JSC::LineColumnInfo::operator <=): (JSC::LineColumnInfo::operator >): (JSC::LineColumnInfo::operator >=): * bytecode/LineInfo.h: Removed. * bytecode/UnlinkedCodeBlock.cpp: (JSC::UnlinkedCodeBlock::decodeExpressionRangeLineAndColumn): - Factored this out of expressionRangeForBytecodeOffset() so that it can be called from multiple places. (JSC::dumpLineColumnEntry): (JSC::UnlinkedCodeBlock::dumpExpressionRangeInfo): (JSC::UnlinkedCodeBlock::dumpOpDebugLineColumnInfoList): - Some dumpers for debugging use only. (JSC::UnlinkedCodeBlock::expressionRangeForBytecodeOffset): (JSC::UnlinkedCodeBlock::opDebugBytecodeOffsetForLineAndColumn): - Finds the earliest op_debug bytecode whose line and column matches the specified line and column values. If an exact match is not found, then finds the nearest op_debug bytecode that precedes the specified line and column values. If there are more than one op_debug at that preceding line and column value, then the earliest of those op_debug bytecodes will be be selected. The offset of the selected bytecode will be returned. We want the earliest one because when we have multiple op_debug bytecodes that map to a given line and column, a debugger user would expect to break on the first one and step through the rest thereafter if needed. (JSC::compareLineColumnInfo): (JSC::UnlinkedCodeBlock::opDebugLineColumnInfoList): - Creates the sorted opDebugLineColumnInfoList on demand. This list is stored in the UnlinkedCodeBlock's rareData. * bytecode/UnlinkedCodeBlock.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162256 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
zandobersek@gmail.com authored
https://bugs.webkit.org/show_bug.cgi?id=127128 Reviewed by Benjamin Poulain. * inspector/scripts/generate-combined-inspector-json.py: Turn print statements into print function calls. * inspector/scripts/jsmin.py: Try importing the StringIO class from the StringIO module (which will work for Python v2) or, on import error, import the class from the io module (which will work for Python v3). git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162250 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
- 17 Jan, 2014 7 commits
-
-
andersca@apple.com authored
* API/OpaqueJSString.h: (OpaqueJSString::OpaqueJSString): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162209 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
andersca@apple.com authored
* API/OpaqueJSString.cpp: (OpaqueJSString::~OpaqueJSString): (OpaqueJSString::characters): * API/OpaqueJSString.h: (OpaqueJSString::OpaqueJSString): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162206 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
andersca@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=127161 Reviewed by Sam Weinig. Handle OpaqueJSString::m_string being either 8-bit or 16-bit and add extra code paths for the 8-bit cases. Unfortunately, JSStringGetCharactersPtr is still expected to return a 16-bit character pointer. Handle this by storing a separate 16-bit string and initializing it on demand when JSStringGetCharactersPtr is called and the backing string is 8-bit. This has the nice side effect of making JSStringGetCharactersPtr thread-safe when it wasn't before. (In theory, someone could have a JSStringRef backed by an 8-bit string and call JSStringGetCharactersPtr on it causing an unsafe upconversion to a 16-bit string). * API/JSStringRef.cpp: (JSStringGetCharactersPtr): Call OpaqueJSString::characters. (JSStringGetUTF8CString): Add a code path that handles 8-bit strings. (JSStringIsEqual): Call OpaqueJSString::equal. * API/JSStringRefCF.cpp: (JSStringCreateWithCFString): Reformat the code to use an early return instead of putting most of the code inside the body of an if statement. (JSStringCopyCFString): Create an 8-bit CFStringRef if possible. * API/OpaqueJSString.cpp: (OpaqueJSString::create): Use nullptr. (OpaqueJSString::~OpaqueJSString): Free m_characters. (OpaqueJSString::characters): Do the up-conversion and store the result in m_characters. (OpaqueJSString::equal): New helper function. * API/OpaqueJSString.h: (OpaqueJSString::is8Bit): New function that returns whether a string is 8-bit or not. (OpaqueJSString::characters8): (OpaqueJSString::characters16): Add getters. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162205 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=127166 Patch by Peter Molnar <pmolnar.u-szeged@partner.samsung.com> on 2014-01-17 Reviewed by Andreas Kling. Source/JavaScriptCore: * inspector/InspectorAgentRegistry.h: Source/WebCore: * bindings/js/JSLazyEventListener.h: * dom/ContainerNode.h: * dom/Document.h: * dom/Element.h: * rendering/InlineFlowBox.h: * rendering/InlineTextBox.h: * rendering/RenderButton.h: * rendering/RenderCombineText.h: * rendering/RenderElement.h: * rendering/RenderFieldset.h: * rendering/RenderFileUploadControl.h: * rendering/RenderFrame.h: * rendering/RenderFrameBase.h: * rendering/RenderFrameSet.h: * rendering/RenderHTMLCanvas.h: * rendering/RenderIFrame.h: * rendering/RenderLineBreak.h: * rendering/RenderListBox.h: * rendering/RenderListMarker.h: * rendering/RenderMedia.h: * rendering/RenderMenuList.h: * rendering/RenderSnapshottedPlugIn.h: * rendering/RenderTableCell.h: * rendering/RenderTableRow.h: * rendering/RenderTableSection.h: * rendering/RenderText.h: * rendering/RenderTextControl.h: * rendering/RenderTextControlMultiLine.h: * rendering/RenderTextControlSingleLine.h: * rendering/RenderVideo.h: * rendering/RenderWidget.h: * rendering/svg/RenderSVGBlock.h: * rendering/svg/RenderSVGForeignObject.h: * rendering/svg/RenderSVGImage.h: * rendering/svg/RenderSVGInline.h: * rendering/svg/RenderSVGRect.h: * rendering/svg/RenderSVGResourceClipper.h: * rendering/svg/RenderSVGResourceFilter.h: * rendering/svg/RenderSVGResourceFilterPrimitive.h: * rendering/svg/RenderSVGResourceGradient.h: * rendering/svg/RenderSVGResourceLinearGradient.h: * rendering/svg/RenderSVGResourceMarker.h: * rendering/svg/RenderSVGResourceMasker.h: * rendering/svg/RenderSVGResourcePattern.h: * rendering/svg/RenderSVGResourceRadialGradient.h: * rendering/svg/RenderSVGRoot.h: * rendering/svg/RenderSVGShape.h: * rendering/svg/RenderSVGTSpan.h: * rendering/svg/RenderSVGText.h: * rendering/svg/RenderSVGTextPath.h: * rendering/svg/RenderSVGTransformableContainer.h: * rendering/svg/RenderSVGViewportContainer.h: * xml/XPathValue.h: Source/WTF: * wtf/Compiler.h: * wtf/Noncopyable.h: * wtf/PassRefPtr.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162198 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
http://trac.webkit.org/changeset/162185 http://trac.webkit.org/changeset/162186 http://trac.webkit.org/changeset/162187 https://bugs.webkit.org/show_bug.cgi?id=127164 Broke JSStringCreateWithCharactersNoCopy, as evidenced by a JSC API test (Requested by ap on #webkit). * API/JSStringRef.cpp: (JSStringGetCharactersPtr): (JSStringGetUTF8CString): (JSStringIsEqual): * API/JSStringRefCF.cpp: (JSStringCreateWithCFString): (JSStringCopyCFString): * API/OpaqueJSString.cpp: (OpaqueJSString::create): (OpaqueJSString::identifier): * API/OpaqueJSString.h: (OpaqueJSString::create): (OpaqueJSString::characters): (OpaqueJSString::deprecatedCharacters): (OpaqueJSString::OpaqueJSString): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162192 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
andersca@apple.com authored
* API/OpaqueJSString.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162187 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
andersca@apple.com authored
* API/OpaqueJSString.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162186 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
- 16 Jan, 2014 4 commits
-
-
andersca@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=127161 Reviewed by Sam Weinig. Handle OpaqueJSString::m_string being either 8-bit or 16-bit and add extra code paths for the 8-bit cases. Unfortunately, JSStringGetCharactersPtr is still expected to return a 16-bit character pointer. Handle this by storing a separate 16-bit string and initializing it on demand when JSStringGetCharactersPtr is called. This has the nice side effect of making JSStringGetCharactersPtr thread-safe when it wasn't before. (In theory, someone could have a JSStringRef backed by an 8-bit string and call JSStringGetCharactersPtr on it causing an unsafe upconversion to a 16-bit string). * API/JSStringRef.cpp: (JSStringGetCharactersPtr): Call OpaqueJSString::characters. (JSStringGetUTF8CString): Add a code path that handles 8-bit strings. (JSStringIsEqual): Call OpaqueJSString::equal. * API/JSStringRefCF.cpp: (JSStringCreateWithCFString): Reformat the code to use an early return instead of putting most of the code inside the body of an if statement. (JSStringCopyCFString): Create an 8-bit CFStringRef if possible. * API/OpaqueJSString.cpp: (OpaqueJSString::create): Use nullptr. (OpaqueJSString::~OpaqueJSString): Free m_characters. (OpaqueJSString::characters): Do the up-conversion and store the result in m_characters. (OpaqueJSString::equal): New helper function. * API/OpaqueJSString.h: (OpaqueJSString::is8Bit): New function that returns whether a string is 8-bit or not. (OpaqueJSString::characters8): (OpaqueJSString::characters16): Add getters. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162185 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
andersca@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=127142 Reviewed by Benjamin Poulain. Source/JavaScriptCore: * inspector/JSGlobalObjectInspectorController.h: * inspector/agents/InspectorAgent.h: * inspector/remote/RemoteInspector.h: * inspector/remote/RemoteInspectorDebuggableConnection.h: * inspector/scripts/CodeGeneratorInspector.py: (Generator.go): * runtime/JSGlobalObjectDebuggable.h: * runtime/JSPromiseReaction.cpp: Source/WebCore: * Modules/encryptedmedia/MediaKeySession.h: * Modules/indexeddb/IDBCursorBackendOperations.h: * Modules/indexeddb/IDBDatabase.h: * Modules/indexeddb/IDBDatabaseCallbacksImpl.h: * Modules/indexeddb/IDBRequest.h: * Modules/indexeddb/IDBTransaction.h: * Modules/indexeddb/IDBTransactionBackendOperations.h: * Modules/indexeddb/leveldb/IDBBackingStoreLevelDB.cpp: * Modules/indexeddb/leveldb/IDBFactoryBackendLevelDB.h: * Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.h: * Modules/mediasource/MediaSource.h: * Modules/mediasource/MediaSourceRegistry.h: * Modules/mediasource/SourceBuffer.h: * Modules/mediasource/SourceBufferList.h: * Modules/mediastream/AudioStreamTrack.h: * Modules/mediastream/MediaStream.h: * Modules/mediastream/MediaStreamRegistry.h: * Modules/mediastream/MediaStreamTrack.h: * Modules/mediastream/RTCDTMFSender.h: * Modules/mediastream/RTCDataChannel.h: * Modules/mediastream/RTCPeerConnection.h: * Modules/mediastream/UserMediaRequest.h: * Modules/mediastream/VideoStreamTrack.h: * Modules/notifications/Notification.h: * Modules/speech/SpeechSynthesisUtterance.h: * Modules/webaudio/AudioContext.h: * Modules/webaudio/AudioNode.h: * Modules/websockets/WebSocket.h: * accessibility/AccessibilityList.h: * accessibility/AccessibilityListBoxOption.h: * accessibility/AccessibilityNodeObject.h: * accessibility/AccessibilitySearchFieldButtons.h: * accessibility/AccessibilitySlider.h: * bindings/js/JSCryptoAlgorithmBuilder.h: * bindings/js/JSCryptoKeySerializationJWK.h: * bindings/js/JSDOMGlobalObjectTask.cpp: * bindings/js/JSDOMGlobalObjectTask.h: * bindings/js/JSLazyEventListener.h: * bindings/js/ScriptDebugServer.h: * bindings/js/WorkerScriptDebugServer.h: * crypto/algorithms/CryptoAlgorithmAES_CBC.h: * crypto/algorithms/CryptoAlgorithmAES_KW.h: * crypto/algorithms/CryptoAlgorithmHMAC.h: * crypto/algorithms/CryptoAlgorithmRSAES_PKCS1_v1_5.h: * crypto/algorithms/CryptoAlgorithmRSASSA_PKCS1_v1_5.h: * crypto/algorithms/CryptoAlgorithmRSA_OAEP.h: * crypto/algorithms/CryptoAlgorithmSHA1.h: * crypto/algorithms/CryptoAlgorithmSHA224.h: * crypto/algorithms/CryptoAlgorithmSHA256.h: * crypto/algorithms/CryptoAlgorithmSHA384.h: * crypto/algorithms/CryptoAlgorithmSHA512.h: * crypto/keys/CryptoKeyAES.h: * crypto/keys/CryptoKeyDataOctetSequence.h: * crypto/keys/CryptoKeyDataRSAComponents.h: * crypto/keys/CryptoKeyHMAC.h: * crypto/keys/CryptoKeyRSA.h: * crypto/keys/CryptoKeySerializationRaw.h: * crypto/parameters/CryptoAlgorithmAesCbcParams.h: * crypto/parameters/CryptoAlgorithmAesKeyGenParams.h: * crypto/parameters/CryptoAlgorithmHmacKeyParams.h: * crypto/parameters/CryptoAlgorithmHmacParams.h: * crypto/parameters/CryptoAlgorithmRsaKeyGenParams.h: * crypto/parameters/CryptoAlgorithmRsaKeyParamsWithHash.h: * crypto/parameters/CryptoAlgorithmRsaOaepParams.h: * crypto/parameters/CryptoAlgorithmRsaSsaParams.h: * css/CSSCanvasValue.h: * css/CSSFontSelector.h: * css/CSSStyleSheet.h: * dom/Attr.h: * dom/BeforeUnloadEvent.h: * dom/CDATASection.h: * dom/CharacterData.h: * dom/ChildNodeList.h: * dom/Clipboard.cpp: * dom/Comment.h: * dom/DatasetDOMStringMap.h: * dom/Document.h: * dom/DocumentEventQueue.cpp: * dom/DocumentEventQueue.h: * dom/DocumentType.h: * dom/Element.h: * dom/EntityReference.h: * dom/EventContext.h: * dom/EventTarget.h: * dom/FocusEvent.h: * dom/LiveNodeList.h: * dom/MessagePort.h: * dom/MouseEvent.h: * dom/Node.h: * dom/Notation.h: * dom/ProcessingInstruction.h: * dom/PseudoElement.h: * dom/ShadowRoot.h: * dom/StaticNodeList.h: * dom/StyledElement.h: * dom/TemplateContentDocumentFragment.h: * dom/Text.h: * dom/WebKitNamedFlow.h: * editing/ios/EditorIOS.mm: * editing/mac/EditorMac.mm: * editing/markup.cpp: * fileapi/Blob.cpp: * fileapi/FileReader.h: * html/ClassList.h: * html/DOMSettableTokenList.h: * html/FTPDirectoryDocument.cpp: * html/FormAssociatedElement.cpp: * html/FormAssociatedElement.h: * html/HTMLAllCollection.h: * html/HTMLAnchorElement.h: * html/HTMLAppletElement.h: * html/HTMLAreaElement.h: * html/HTMLAudioElement.h: * html/HTMLBDIElement.h: * html/HTMLBRElement.h: * html/HTMLBaseElement.h: * html/HTMLBaseFontElement.h: * html/HTMLBodyElement.h: * html/HTMLButtonElement.h: * html/HTMLCanvasElement.h: * html/HTMLDListElement.h: * html/HTMLDataListElement.h: * html/HTMLDetailsElement.h: * html/HTMLDirectoryElement.h: * html/HTMLDocument.h: * html/HTMLElement.h: * html/HTMLEmbedElement.h: * html/HTMLFieldSetElement.h: * html/HTMLFontElement.h: * html/HTMLFormControlElement.h: * html/HTMLFormElement.h: * html/HTMLFrameElement.h: * html/HTMLFrameSetElement.h: * html/HTMLHRElement.h: * html/HTMLHeadElement.h: * html/HTMLHeadingElement.h: * html/HTMLHtmlElement.h: * html/HTMLIFrameElement.h: * html/HTMLImageElement.h: * html/HTMLInputElement.h: * html/HTMLKeygenElement.cpp: * html/HTMLKeygenElement.h: * html/HTMLLIElement.h: * html/HTMLLabelElement.h: * html/HTMLLegendElement.h: * html/HTMLLinkElement.h: * html/HTMLMapElement.h: * html/HTMLMarqueeElement.h: * html/HTMLMenuElement.h: * html/HTMLMetaElement.h: * html/HTMLMeterElement.h: * html/HTMLModElement.h: * html/HTMLNameCollection.h: * html/HTMLOListElement.h: * html/HTMLObjectElement.h: * html/HTMLOptGroupElement.h: * html/HTMLOptionElement.h: * html/HTMLOptionsCollection.h: * html/HTMLOutputElement.h: * html/HTMLParagraphElement.h: * html/HTMLParamElement.h: * html/HTMLPlugInElement.h: * html/HTMLPreElement.h: * html/HTMLProgressElement.h: * html/HTMLQuoteElement.h: * html/HTMLScriptElement.h: * html/HTMLSelectElement.h: * html/HTMLSourceElement.h: * html/HTMLStyleElement.h: * html/HTMLSummaryElement.h: * html/HTMLTableCaptionElement.h: * html/HTMLTableCellElement.h: * html/HTMLTableColElement.h: * html/HTMLTableElement.h: * html/HTMLTableRowElement.h: * html/HTMLTableRowsCollection.h: * html/HTMLTableSectionElement.h: * html/HTMLTemplateElement.h: * html/HTMLTextAreaElement.h: * html/HTMLTextFormControlElement.h: * html/HTMLTitleElement.h: * html/HTMLTrackElement.h: * html/HTMLUListElement.h: * html/HTMLUnknownElement.h: * html/HTMLVideoElement.h: * html/HTMLViewSourceDocument.h: * html/ImageDocument.cpp: * html/ImageDocument.h: * html/LabelableElement.h: * html/LabelsNodeList.h: * html/MediaController.h: * html/MediaDocument.cpp: * html/MediaDocument.h: * html/MediaFragmentURIParser.h: * html/PluginDocument.cpp: * html/PluginDocument.h: * html/RangeInputType.h: * html/TextDocument.h: * html/parser/TextDocumentParser.h: * html/parser/TextViewSourceParser.h: * html/shadow/DetailsMarkerControl.h: * html/shadow/MediaControlElementTypes.h: * html/shadow/MediaControlElements.h: * html/shadow/MeterShadowElement.h: * html/shadow/ProgressShadowElement.h: * html/shadow/SliderThumbElement.h: * html/shadow/SpinButtonElement.h: * html/shadow/TextControlInnerElements.h: * html/shadow/YouTubeEmbedShadowElement.h: * html/track/TextTrack.h: * html/track/TextTrackCue.h: * html/track/TextTrackCueGeneric.cpp: * html/track/TextTrackCueGeneric.h: * html/track/TrackListBase.h: * html/track/WebVTTElement.h: * inspector/CommandLineAPIModule.h: * inspector/InjectedScriptCanvasModule.h: * inspector/InspectorConsoleAgent.cpp: * inspector/InspectorController.h: * inspector/InspectorDebuggerAgent.h: * inspector/PageConsoleAgent.cpp: * inspector/PageInjectedScriptHost.h: * inspector/PageInjectedScriptManager.h: * inspector/WorkerInspectorController.h: * loader/SinkDocument.cpp: * loader/SinkDocument.h: * loader/appcache/DOMApplicationCache.h: * loader/cache/CachedCSSStyleSheet.h: * loader/cache/CachedFont.h: * loader/cache/CachedRawResource.h: * loader/cache/CachedSVGDocument.h: * loader/cache/CachedScript.h: * loader/cache/CachedShader.h: * loader/cache/CachedTextTrack.h: * loader/cache/CachedXSLStyleSheet.h: * loader/icon/IconLoader.h: * mathml/MathMLSelectElement.h: * page/DOMTimer.h: * page/DOMWindow.h: * page/EventSource.h: * page/Frame.h: * page/FrameView.h: * page/MainFrame.h: * page/PageDebuggable.h: * page/PageSerializer.cpp: * page/Performance.h: * page/SuspendableTimer.h: * page/animation/KeyframeAnimation.h: * page/scrolling/ScrollingStateFixedNode.h: * page/scrolling/ScrollingStateScrollingNode.h: * page/scrolling/ScrollingStateStickyNode.h: * platform/ClockGeneric.h: * platform/efl/ScrollbarThemeEfl.h: * platform/graphics/BitmapImage.h: * platform/graphics/CrossfadeGeneratedImage.h: * platform/graphics/GradientImage.h: * platform/graphics/SimpleFontData.h: * platform/graphics/avfoundation/objc/AudioTrackPrivateMediaSourceAVFObjC.h: * platform/graphics/avfoundation/objc/MediaSourcePrivateAVFObjC.h: * platform/graphics/avfoundation/objc/SourceBufferPrivateAVFObjC.h: * platform/graphics/avfoundation/objc/SourceBufferPrivateAVFObjC.mm: * platform/graphics/avfoundation/objc/VideoTrackPrivateAVFObjC.h: * platform/graphics/avfoundation/objc/VideoTrackPrivateMediaSourceAVFObjC.h: * platform/graphics/ca/mac/PlatformCALayerMac.h: * platform/graphics/ca/win/PlatformCALayerWin.h: * platform/graphics/cg/PDFDocumentImage.h: * platform/graphics/gstreamer/AudioTrackPrivateGStreamer.h: * platform/graphics/gstreamer/MediaSourceGStreamer.h: * platform/graphics/gstreamer/SourceBufferPrivateGStreamer.h: * platform/graphics/gstreamer/VideoTrackPrivateGStreamer.h: * platform/ios/WebSafeGCActivityCallbackIOS.h: * platform/ios/WebSafeIncrementalSweeperIOS.h: * platform/mac/PlatformClockCA.h: * platform/mac/PlatformClockCM.h: * platform/mac/ScrollAnimatorMac.h: * platform/mediastream/MediaStreamTrackPrivate.h: * platform/mediastream/mac/MediaStreamCenterMac.h: * platform/mock/MockMediaStreamCenter.h: * platform/mock/RTCDataChannelHandlerMock.h: * platform/mock/RTCPeerConnectionHandlerMock.h: * platform/mock/mediasource/MockBox.h: * platform/mock/mediasource/MockMediaSourcePrivate.h: * platform/mock/mediasource/MockSourceBufferPrivate.cpp: * platform/network/cf/ResourceHandleCFURLConnectionDelegateWithOperationQueue.h: * platform/network/cf/SynchronousResourceHandleCFURLConnectionDelegate.h: * platform/text/LocaleNone.cpp: * platform/text/PlatformLocale.cpp: * rendering/EllipsisBox.h: * rendering/FilterEffectRenderer.h: * rendering/InlineElementBox.h: * rendering/InlineFlowBox.h: * rendering/InlineTextBox.h: * rendering/RenderBlock.h: * rendering/RenderBlockFlow.h: * rendering/RenderBox.cpp: (WebCore::RenderBox::computePositionedLogicalWidthReplaced): (WebCore::RenderBox::computePositionedLogicalHeightReplaced): * rendering/RenderBox.h: * rendering/RenderButton.h: * rendering/RenderCombineText.h: * rendering/RenderCounter.h: * rendering/RenderDeprecatedFlexibleBox.h: * rendering/RenderDetailsMarker.h: * rendering/RenderElement.h: * rendering/RenderEmbeddedObject.h: * rendering/RenderFieldset.h: * rendering/RenderFileUploadControl.h: * rendering/RenderFlexibleBox.h: * rendering/RenderFlowThread.h: * rendering/RenderFrame.h: * rendering/RenderFrameSet.h: * rendering/RenderFullScreen.cpp: * rendering/RenderFullScreen.h: * rendering/RenderGrid.h: * rendering/RenderHTMLCanvas.h: * rendering/RenderIFrame.h: * rendering/RenderImage.h: * rendering/RenderInline.h: * rendering/RenderLayer.h: * rendering/RenderLayerFilterInfo.h: * rendering/RenderLineBreak.h: * rendering/RenderListBox.h: * rendering/RenderListItem.h: * rendering/RenderListMarker.h: * rendering/RenderMedia.h: * rendering/RenderMediaControlElements.h: * rendering/RenderMenuList.h: * rendering/RenderMeter.h: * rendering/RenderMultiColumnBlock.h: * rendering/RenderMultiColumnFlowThread.h: * rendering/RenderMultiColumnSet.h: * rendering/RenderNamedFlowFragment.h: * rendering/RenderNamedFlowThread.h: * rendering/RenderProgress.h: * rendering/RenderQuote.h: * rendering/RenderRegion.h: * rendering/RenderRegionSet.h: * rendering/RenderReplaced.h: * rendering/RenderReplica.h: * rendering/RenderRuby.h: * rendering/RenderRubyBase.h: * rendering/RenderRubyRun.h: * rendering/RenderRubyText.h: * rendering/RenderScrollbar.h: * rendering/RenderScrollbarPart.h: * rendering/RenderSearchField.h: * rendering/RenderSlider.h: * rendering/RenderSnapshottedPlugIn.h: * rendering/RenderTable.h: * rendering/RenderTableCaption.h: * rendering/RenderTableCell.h: * rendering/RenderTableCol.h: * rendering/RenderTableRow.h: * rendering/RenderTableSection.h: * rendering/RenderText.h: * rendering/RenderTextControl.h: * rendering/RenderTextControlMultiLine.h: * rendering/RenderTextControlSingleLine.h: * rendering/RenderTextFragment.h: * rendering/RenderTextTrackCue.h: * rendering/RenderVideo.h: * rendering/RenderView.h: * rendering/RenderWidget.h: * rendering/RootInlineBox.h: * rendering/TrailingFloatsRootInlineBox.h: * rendering/mathml/RenderMathMLBlock.h: * rendering/mathml/RenderMathMLFenced.h: * rendering/mathml/RenderMathMLFraction.h: * rendering/mathml/RenderMathMLMath.h: * rendering/mathml/RenderMathMLOperator.h: * rendering/mathml/RenderMathMLRoot.h: * rendering/mathml/RenderMathMLRow.h: * rendering/mathml/RenderMathMLScripts.h: * rendering/mathml/RenderMathMLSpace.h: * rendering/mathml/RenderMathMLSquareRoot.h: * rendering/shapes/ShapeInsideInfo.h: * rendering/shapes/ShapeOutsideInfo.h: * rendering/style/ContentData.h: * rendering/style/StyleCachedImage.h: * rendering/style/StyleCachedImageSet.h: * rendering/style/StyleGeneratedImage.h: * rendering/svg/RenderSVGBlock.h: * rendering/svg/RenderSVGContainer.h: * rendering/svg/RenderSVGEllipse.h: * rendering/svg/RenderSVGForeignObject.h: * rendering/svg/RenderSVGGradientStop.h: * rendering/svg/RenderSVGHiddenContainer.h: * rendering/svg/RenderSVGImage.h: * rendering/svg/RenderSVGInline.h: * rendering/svg/RenderSVGInlineText.h: * rendering/svg/RenderSVGModelObject.h: * rendering/svg/RenderSVGPath.h: * rendering/svg/RenderSVGRect.h: * rendering/svg/RenderSVGResourceClipper.h: * rendering/svg/RenderSVGResourceContainer.h: * rendering/svg/RenderSVGResourceFilter.h: * rendering/svg/RenderSVGResourceFilterPrimitive.h: * rendering/svg/RenderSVGResourceGradient.h: * rendering/svg/RenderSVGResourceLinearGradient.h: * rendering/svg/RenderSVGResourceMarker.h: * rendering/svg/RenderSVGResourceMasker.h: * rendering/svg/RenderSVGResourcePattern.h: * rendering/svg/RenderSVGResourceRadialGradient.h: * rendering/svg/RenderSVGRoot.h: * rendering/svg/RenderSVGShape.cpp: * rendering/svg/RenderSVGShape.h: * rendering/svg/RenderSVGTSpan.h: * rendering/svg/RenderSVGText.h: * rendering/svg/RenderSVGTextPath.h: * rendering/svg/RenderSVGTransformableContainer.h: * rendering/svg/RenderSVGViewportContainer.h: * rendering/svg/SVGInlineFlowBox.h: * rendering/svg/SVGInlineTextBox.h: * rendering/svg/SVGRootInlineBox.h: * rendering/svg/SVGTextRunRenderingContext.h: * svg/SVGAElement.h: * svg/SVGAltGlyphDefElement.h: * svg/SVGAltGlyphElement.h: * svg/SVGAltGlyphItemElement.h: * svg/SVGAnimateColorElement.h: * svg/SVGAnimateMotionElement.h: * svg/SVGAnimateTransformElement.h: * svg/SVGAnimatedAngle.h: * svg/SVGAnimatedBoolean.h: * svg/SVGAnimatedColor.h: * svg/SVGAnimatedEnumeration.h: * svg/SVGAnimatedInteger.h: * svg/SVGAnimatedIntegerOptionalInteger.h: * svg/SVGAnimatedLength.h: * svg/SVGAnimatedLengthList.h: * svg/SVGAnimatedNumber.h: * svg/SVGAnimatedNumberList.h: * svg/SVGAnimatedNumberOptionalNumber.h: * svg/SVGAnimatedPath.h: * svg/SVGAnimatedPointList.h: * svg/SVGAnimatedPreserveAspectRatio.h: * svg/SVGAnimatedRect.h: * svg/SVGAnimatedString.h: * svg/SVGAnimatedTransformList.h: * svg/SVGCircleElement.h: * svg/SVGClipPathElement.h: * svg/SVGCursorElement.h: * svg/SVGDefsElement.h: * svg/SVGDescElement.h: * svg/SVGDocument.h: * svg/SVGElement.h: * svg/SVGEllipseElement.h: * svg/SVGFEBlendElement.h: * svg/SVGFEColorMatrixElement.h: * svg/SVGFEComponentTransferElement.h: * svg/SVGFECompositeElement.h: * svg/SVGFEConvolveMatrixElement.h: * svg/SVGFEDiffuseLightingElement.h: * svg/SVGFEDisplacementMapElement.h: * svg/SVGFEDistantLightElement.h: * svg/SVGFEDropShadowElement.h: * svg/SVGFEFloodElement.h: * svg/SVGFEFuncAElement.h: * svg/SVGFEFuncBElement.h: * svg/SVGFEFuncGElement.h: * svg/SVGFEFuncRElement.h: * svg/SVGFEGaussianBlurElement.h: * svg/SVGFEImageElement.h: * svg/SVGFEMergeElement.h: * svg/SVGFEMergeNodeElement.h: * svg/SVGFEMorphologyElement.h: * svg/SVGFEOffsetElement.h: * svg/SVGFEPointLightElement.h: * svg/SVGFESpecularLightingElement.h: * svg/SVGFESpotLightElement.h: * svg/SVGFETileElement.h: * svg/SVGFETurbulenceElement.h: * svg/SVGFilterElement.h: * svg/SVGFontElement.h: * svg/SVGFontFaceElement.h: * svg/SVGFontFaceFormatElement.h: * svg/SVGFontFaceNameElement.h: * svg/SVGFontFaceSrcElement.h: * svg/SVGFontFaceUriElement.h: * svg/SVGForeignObjectElement.h: * svg/SVGGElement.h: * svg/SVGGlyphElement.h: * svg/SVGGlyphRefElement.h: * svg/SVGHKernElement.h: * svg/SVGImageElement.h: * svg/SVGLineElement.h: * svg/SVGLinearGradientElement.h: * svg/SVGMPathElement.h: * svg/SVGMarkerElement.h: * svg/SVGMaskElement.h: * svg/SVGMetadataElement.h: * svg/SVGMissingGlyphElement.h: * svg/SVGPathElement.h: * svg/SVGPathStringBuilder.h: * svg/SVGPatternElement.h: * svg/SVGPolygonElement.h: * svg/SVGPolylineElement.h: * svg/SVGRadialGradientElement.h: * svg/SVGRectElement.h: * svg/SVGSVGElement.h: * svg/SVGScriptElement.h: * svg/SVGSetElement.h: * svg/SVGStopElement.h: * svg/SVGStyleElement.h: * svg/SVGSwitchElement.h: * svg/SVGSymbolElement.h: * svg/SVGTRefElement.h: * svg/SVGTSpanElement.h: * svg/SVGTextContentElement.h: * svg/SVGTextElement.h: * svg/SVGTextPathElement.h: * svg/SVGTitleElement.h: * svg/SVGUnknownElement.h: * svg/SVGUseElement.h: * svg/SVGVKernElement.h: * svg/SVGViewElement.h: * svg/animation/SVGSMILElement.h: * svg/graphics/SVGImage.h: * svg/graphics/SVGImageForContainer.h: * svg/graphics/filters/SVGFilter.h: * workers/AbstractWorker.h: * workers/SharedWorker.h: * workers/Worker.h: * workers/WorkerEventQueue.cpp: * workers/WorkerEventQueue.h: * workers/WorkerGlobalScope.h: * xml/XMLHttpRequest.h: * xml/XMLHttpRequestUpload.h: * xml/XPathFunctions.cpp: * xml/XPathPath.h: * xml/XPathPredicate.h: * xml/XSLStyleSheet.h: Source/WebKit/ios: * WebCoreSupport/WebDiskImageCacheClientIOS.h: Source/WebKit/mac: * WebCoreSupport/WebUserMediaClient.h: * WebView/WebScriptDebugger.h: Source/WebKit2: * DatabaseProcess/IndexedDB/sqlite/UniqueIDBDatabaseBackingStoreSQLite.h: * NetworkProcess/RemoteNetworkingContext.h: * Shared/API/Cocoa/RemoteObjectRegistry.h: * Shared/APIArray.h: * Shared/APIString.h: * Shared/AsyncRequest.h: * Shared/AsyncTask.h: * Shared/cf/KeyedEncoder.h: * UIProcess/API/gtk/PageClientImpl.h: * UIProcess/API/mac/PageClientImpl.h: * UIProcess/efl/WebViewEfl.h: * WebProcess/Databases/IndexedDB/WebIDBFactoryBackend.h: * WebProcess/Databases/IndexedDB/WebIDBServerConnection.h: * WebProcess/Plugins/PDF/PDFPlugin.h: * WebProcess/Storage/StorageAreaImpl.h: * WebProcess/WebPage/mac/GraphicsLayerCARemote.h: * WebProcess/WebPage/mac/PlatformCALayerRemoteCustom.h: * WebProcess/WebPage/mac/PlatformCALayerRemoteTiledBacking.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162158 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
oliver@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=127146 Reviewed by Alexey Proskuryakov. This is simply a bogus assertion as we can't guarantee a bindings object won't intercept assignment to .stack * interpreter/Interpreter.cpp: (JSC::Interpreter::unwind): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162156 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=127111 Patch by Peter Molnar <pmolnar.u-szeged@partner.samsung.com> on 2014-01-16 Reviewed by Anders Carlsson. Now all compilers support explicit override control, this workaround can be removed. Source/JavaScriptCore: * API/JSAPIWrapperObject.mm: * API/JSCallbackObject.h: * API/JSManagedValue.mm: * API/JSScriptRef.cpp: * bytecode/CodeBlock.h: * bytecode/CodeBlockJettisoningWatchpoint.h: * bytecode/ProfiledCodeBlockJettisoningWatchpoint.h: * bytecode/StructureStubClearingWatchpoint.h: * dfg/DFGArrayifySlowPathGenerator.h: * dfg/DFGCallArrayAllocatorSlowPathGenerator.h: * dfg/DFGFailedFinalizer.h: * dfg/DFGJITCode.h: * dfg/DFGJITFinalizer.h: * dfg/DFGSaneStringGetByValSlowPathGenerator.h: * dfg/DFGSlowPathGenerator.h: * dfg/DFGSpeculativeJIT64.cpp: * heap/Heap.h: * heap/IncrementalSweeper.h: * heap/SuperRegion.h: * inspector/InspectorValues.h: * inspector/JSGlobalObjectInspectorController.h: * inspector/agents/InspectorAgent.h: * inspector/remote/RemoteInspector.h: * inspector/remote/RemoteInspectorDebuggableConnection.h: * inspector/scripts/CodeGeneratorInspector.py: (Generator.go): * jit/ClosureCallStubRoutine.h: * jit/ExecutableAllocatorFixedVMPool.cpp: * jit/GCAwareJITStubRoutine.h: * jit/JITCode.h: * jit/JITToDFGDeferredCompilationCallback.h: * parser/Nodes.h: * parser/SourceProvider.h: * runtime/DataView.h: * runtime/GCActivityCallback.h: * runtime/GenericTypedArrayView.h: * runtime/JSGlobalObjectDebuggable.h: * runtime/JSPromiseReaction.cpp: * runtime/RegExpCache.h: * runtime/SimpleTypedArrayController.h: * runtime/SymbolTable.h: * runtime/WeakMapData.h: Source/WebCore: * Modules/airplay/WebKitPlaybackTargetAvailabilityEvent.h: * Modules/encryptedmedia/CDMPrivateAVFoundation.h: * Modules/encryptedmedia/CDMPrivateAVFoundation.mm: * Modules/encryptedmedia/MediaKeyMessageEvent.h: * Modules/encryptedmedia/MediaKeyNeededEvent.h: * Modules/encryptedmedia/MediaKeySession.h: * Modules/encryptedmedia/MediaKeys.h: * Modules/geolocation/Geolocation.h: * Modules/indexeddb/DOMWindowIndexedDatabase.h: * Modules/indexeddb/IDBCursorBackendOperations.h: * Modules/indexeddb/IDBCursorWithValue.h: * Modules/indexeddb/IDBDatabase.h: * Modules/indexeddb/IDBDatabaseCallbacksImpl.h: * Modules/indexeddb/IDBOpenDBRequest.h: * Modules/indexeddb/IDBRequest.h: * Modules/indexeddb/IDBTransaction.h: * Modules/indexeddb/IDBTransactionBackendOperations.h: * Modules/indexeddb/leveldb/IDBBackingStoreLevelDB.cpp: * Modules/indexeddb/leveldb/IDBFactoryBackendLevelDB.h: * Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.h: * Modules/indieui/UIRequestEvent.h: * Modules/mediasource/MediaSource.h: * Modules/mediasource/MediaSourceRegistry.h: * Modules/mediasource/SourceBuffer.h: * Modules/mediasource/SourceBufferList.h: * Modules/mediastream/AudioStreamTrack.h: * Modules/mediastream/MediaConstraintsImpl.h: * Modules/mediastream/MediaStream.h: * Modules/mediastream/MediaStreamRegistry.h: * Modules/mediastream/MediaStreamTrack.h: * Modules/mediastream/MediaStreamTrackEvent.h: * Modules/mediastream/MediaStreamTrackSourcesRequest.h: * Modules/mediastream/RTCDTMFSender.h: * Modules/mediastream/RTCDataChannel.h: * Modules/mediastream/RTCPeerConnection.h: * Modules/mediastream/RTCSessionDescriptionRequestImpl.h: * Modules/mediastream/RTCStatsRequestImpl.h: * Modules/mediastream/RTCStatsResponse.h: * Modules/mediastream/RTCVoidRequestImpl.h: * Modules/mediastream/UserMediaRequest.h: * Modules/mediastream/VideoStreamTrack.h: * Modules/networkinfo/NetworkInfoConnection.h: * Modules/notifications/DOMWindowNotifications.h: * Modules/notifications/Notification.h: * Modules/notifications/NotificationCenter.h: * Modules/plugins/QuickTimePluginReplacement.h: * Modules/speech/SpeechRecognition.h: * Modules/speech/SpeechRecognitionError.h: * Modules/speech/SpeechRecognitionEvent.h: * Modules/speech/SpeechSynthesis.h: * Modules/speech/SpeechSynthesisUtterance.h: * Modules/webaudio/AnalyserNode.h: * Modules/webaudio/AudioBasicInspectorNode.h: * Modules/webaudio/AudioBasicProcessorNode.h: * Modules/webaudio/AudioBufferSourceNode.h: * Modules/webaudio/AudioContext.h: * Modules/webaudio/AudioDestinationNode.h: * Modules/webaudio/AudioNode.h: * Modules/webaudio/AudioNodeInput.h: * Modules/webaudio/AudioParam.h: * Modules/webaudio/AudioProcessingEvent.h: * Modules/webaudio/BiquadDSPKernel.h: * Modules/webaudio/BiquadProcessor.h: * Modules/webaudio/ChannelMergerNode.h: * Modules/webaudio/ChannelSplitterNode.h: * Modules/webaudio/ConvolverNode.h: * Modules/webaudio/DefaultAudioDestinationNode.h: * Modules/webaudio/DelayDSPKernel.h: * Modules/webaudio/DelayProcessor.h: * Modules/webaudio/DynamicsCompressorNode.h: * Modules/webaudio/GainNode.h: * Modules/webaudio/MediaElementAudioSourceNode.h: * Modules/webaudio/MediaStreamAudioDestinationNode.h: * Modules/webaudio/MediaStreamAudioSourceNode.h: * Modules/webaudio/OfflineAudioCompletionEvent.h: * Modules/webaudio/OfflineAudioDestinationNode.h: * Modules/webaudio/OscillatorNode.h: * Modules/webaudio/PannerNode.h: * Modules/webaudio/ScriptProcessorNode.h: * Modules/webaudio/WaveShaperDSPKernel.h: * Modules/webaudio/WaveShaperProcessor.h: * Modules/webdatabase/DatabaseTask.h: * Modules/webdatabase/SQLTransaction.h: * Modules/webdatabase/SQLTransactionBackend.h: * Modules/websockets/CloseEvent.h: * Modules/websockets/WebSocket.h: * Modules/websockets/WebSocketChannel.h: * Modules/websockets/WebSocketDeflateFramer.cpp: * Modules/websockets/WorkerThreadableWebSocketChannel.cpp: * Modules/websockets/WorkerThreadableWebSocketChannel.h: * accessibility/AccessibilityARIAGrid.h: * accessibility/AccessibilityARIAGridCell.h: * accessibility/AccessibilityARIAGridRow.h: * accessibility/AccessibilityImageMapLink.h: * accessibility/AccessibilityList.h: * accessibility/AccessibilityListBox.h: * accessibility/AccessibilityListBoxOption.h: * accessibility/AccessibilityMediaControls.h: * accessibility/AccessibilityMenuList.h: * accessibility/AccessibilityMenuListOption.h: * accessibility/AccessibilityMenuListPopup.h: * accessibility/AccessibilityMockObject.h: * accessibility/AccessibilityNodeObject.h: * accessibility/AccessibilityProgressIndicator.h: * accessibility/AccessibilityRenderObject.h: * accessibility/AccessibilitySVGRoot.h: * accessibility/AccessibilityScrollView.h: * accessibility/AccessibilityScrollbar.h: * accessibility/AccessibilitySearchFieldButtons.h: * accessibility/AccessibilitySlider.h: * accessibility/AccessibilitySpinButton.h: * accessibility/AccessibilityTable.h: * accessibility/AccessibilityTableCell.h: * accessibility/AccessibilityTableColumn.h: * accessibility/AccessibilityTableHeaderContainer.h: * accessibility/AccessibilityTableRow.h: * bindings/js/JSCryptoAlgorithmBuilder.h: * bindings/js/JSCryptoKeySerializationJWK.h: * bindings/js/JSDOMGlobalObjectTask.h: * bindings/js/JSEventListener.h: * bindings/js/JSLazyEventListener.h: * bindings/js/JSMutationCallback.h: * bindings/js/PageScriptDebugServer.h: * bindings/js/ScriptDebugServer.h: * bindings/js/WebCoreTypedArrayController.h: * bindings/js/WorkerScriptDebugServer.h: * bridge/c/c_class.h: * bridge/c/c_instance.h: * bridge/c/c_runtime.h: * bridge/runtime_root.h: * crypto/algorithms/CryptoAlgorithmAES_CBC.h: * crypto/algorithms/CryptoAlgorithmAES_KW.h: * crypto/algorithms/CryptoAlgorithmHMAC.h: * crypto/algorithms/CryptoAlgorithmRSAES_PKCS1_v1_5.h: * crypto/algorithms/CryptoAlgorithmRSASSA_PKCS1_v1_5.h: * crypto/algorithms/CryptoAlgorithmRSA_OAEP.h: * crypto/algorithms/CryptoAlgorithmSHA1.h: * crypto/algorithms/CryptoAlgorithmSHA224.h: * crypto/algorithms/CryptoAlgorithmSHA256.h: * crypto/algorithms/CryptoAlgorithmSHA384.h: * crypto/algorithms/CryptoAlgorithmSHA512.h: * crypto/keys/CryptoKeyAES.h: * crypto/keys/CryptoKeyHMAC.h: * crypto/keys/CryptoKeyRSA.h: * crypto/keys/CryptoKeySerializationRaw.h: * crypto/parameters/CryptoAlgorithmAesCbcParams.h: * crypto/parameters/CryptoAlgorithmAesKeyGenParams.h: * crypto/parameters/CryptoAlgorithmHmacKeyParams.h: * crypto/parameters/CryptoAlgorithmHmacParams.h: * crypto/parameters/CryptoAlgorithmRsaKeyGenParams.h: * crypto/parameters/CryptoAlgorithmRsaKeyParamsWithHash.h: * crypto/parameters/CryptoAlgorithmRsaOaepParams.h: * crypto/parameters/CryptoAlgorithmRsaSsaParams.h: * css/CSSBasicShapes.h: * css/CSSCanvasValue.h: * css/CSSCharsetRule.h: * css/CSSComputedStyleDeclaration.h: * css/CSSCrossfadeValue.h: * css/CSSFilterImageValue.h: * css/CSSFontFaceRule.h: * css/CSSFontSelector.h: * css/CSSGroupingRule.h: * css/CSSHostRule.h: * css/CSSImportRule.h: * css/CSSMediaRule.h: * css/CSSPageRule.h: * css/CSSStyleRule.h: * css/CSSStyleSheet.h: * css/CSSSupportsRule.h: * css/CSSUnknownRule.h: * css/FontLoader.cpp: * css/FontLoader.h: * css/PropertySetCSSStyleDeclaration.h: * css/WebKitCSSFilterRule.h: * css/WebKitCSSKeyframeRule.h: * css/WebKitCSSKeyframesRule.h: * css/WebKitCSSRegionRule.h: * css/WebKitCSSViewportRule.h: * dom/Attr.h: * dom/BeforeTextInsertedEvent.h: * dom/BeforeUnloadEvent.h: * dom/CDATASection.h: * dom/CharacterData.h: * dom/ChildNodeList.h: * dom/Clipboard.cpp: * dom/ClipboardEvent.h: * dom/ContainerNode.h: * dom/DOMImplementation.cpp: * dom/DatasetDOMStringMap.h: * dom/DeviceMotionController.h: * dom/DeviceOrientationController.h: * dom/Document.h: * dom/DocumentEventQueue.cpp: * dom/DocumentEventQueue.h: * dom/DocumentFragment.h: * dom/Element.h: * dom/ErrorEvent.h: * dom/EventContext.h: * dom/EventTarget.h: * dom/FocusEvent.h: * dom/KeyboardEvent.h: * dom/LiveNodeList.h: * dom/MessagePort.h: * dom/MouseEvent.h: * dom/MutationRecord.cpp: * dom/Node.h: * dom/PageTransitionEvent.h: * dom/ProcessingInstruction.h: * dom/ProgressEvent.h: * dom/PseudoElement.h: * dom/ScriptExecutionContext.h: * dom/ShadowRoot.h: * dom/StaticNodeList.h: * dom/StyledElement.h: * dom/TagNodeList.h: * dom/TemplateContentDocumentFragment.h: * dom/Text.h: * dom/TextEvent.h: * dom/TouchEvent.h: * dom/TransitionEvent.h: * dom/UIEvent.h: * dom/WebKitAnimationEvent.h: * dom/WebKitNamedFlow.h: * dom/WebKitTransitionEvent.h: * editing/AppendNodeCommand.h: * editing/ApplyBlockElementCommand.h: * editing/ApplyStyleCommand.h: * editing/BreakBlockquoteCommand.h: * editing/CompositeEditCommand.h: * editing/DeleteButton.h: * editing/DeleteFromTextNodeCommand.h: * editing/EditCommand.h: * editing/InsertIntoTextNodeCommand.h: * editing/InsertNodeBeforeCommand.h: * editing/InsertTextCommand.h: * editing/MergeIdenticalElementsCommand.h: * editing/RemoveCSSPropertyCommand.h: * editing/RemoveNodeCommand.h: * editing/ReplaceNodeWithSpanCommand.h: * editing/SetNodeAttributeCommand.h: * editing/SetSelectionCommand.h: * editing/SpellChecker.h: * editing/SpellingCorrectionCommand.cpp: * editing/SpellingCorrectionCommand.h: * editing/SplitElementCommand.h: * editing/SplitTextNodeCommand.h: * editing/WrapContentsInDummySpanCommand.h: * editing/ios/EditorIOS.mm: * editing/markup.cpp: * fileapi/Blob.cpp: * fileapi/Blob.h: * fileapi/File.h: * fileapi/FileReader.h: * fileapi/FileThreadTask.h: * history/BackForwardList.h: * html/BaseButtonInputType.h: * html/BaseCheckableInputType.h: * html/BaseChooserOnlyDateAndTimeInputType.h: * html/BaseClickableWithKeyInputType.h: * html/BaseDateAndTimeInputType.h: * html/BaseTextInputType.h: * html/ButtonInputType.h: * html/CheckboxInputType.h: * html/ClassList.h: * html/ColorInputType.h: * html/DOMSettableTokenList.h: * html/DateInputType.h: * html/DateTimeInputType.h: * html/DateTimeLocalInputType.h: * html/EmailInputType.h: * html/FTPDirectoryDocument.cpp: * html/FileInputType.h: * html/FormAssociatedElement.cpp: * html/FormAssociatedElement.h: * html/HTMLAnchorElement.h: * html/HTMLAppletElement.h: * html/HTMLAreaElement.h: * html/HTMLBRElement.h: * html/HTMLBaseElement.h: * html/HTMLBodyElement.h: * html/HTMLButtonElement.h: * html/HTMLCanvasElement.h: * html/HTMLDetailsElement.cpp: * html/HTMLDetailsElement.h: * html/HTMLDivElement.h: * html/HTMLDocument.h: * html/HTMLElement.h: * html/HTMLEmbedElement.h: * html/HTMLFieldSetElement.h: * html/HTMLFontElement.h: * html/HTMLFormControlElement.h: * html/HTMLFormControlElementWithState.h: * html/HTMLFormControlsCollection.h: * html/HTMLFormElement.h: * html/HTMLFrameElement.h: * html/HTMLFrameElementBase.h: * html/HTMLFrameOwnerElement.h: * html/HTMLFrameSetElement.h: * html/HTMLHRElement.h: * html/HTMLHtmlElement.h: * html/HTMLIFrameElement.h: * html/HTMLImageElement.h: * html/HTMLImageLoader.h: * html/HTMLInputElement.cpp: * html/HTMLInputElement.h: * html/HTMLKeygenElement.h: * html/HTMLLIElement.h: * html/HTMLLabelElement.h: * html/HTMLLegendElement.h: * html/HTMLLinkElement.h: * html/HTMLMapElement.h: * html/HTMLMarqueeElement.h: * html/HTMLMediaElement.h: * html/HTMLMediaSession.h: * html/HTMLMediaSource.h: * html/HTMLMetaElement.h: * html/HTMLMeterElement.h: * html/HTMLModElement.h: * html/HTMLOListElement.h: * html/HTMLObjectElement.h: * html/HTMLOptGroupElement.h: * html/HTMLOptionElement.h: * html/HTMLOutputElement.h: * html/HTMLParagraphElement.h: * html/HTMLParamElement.h: * html/HTMLPlugInElement.h: * html/HTMLPlugInImageElement.h: * html/HTMLPreElement.h: * html/HTMLProgressElement.h: * html/HTMLQuoteElement.h: * html/HTMLScriptElement.h: * html/HTMLSelectElement.h: * html/HTMLSourceElement.h: * html/HTMLStyleElement.h: * html/HTMLSummaryElement.h: * html/HTMLTableCaptionElement.h: * html/HTMLTableCellElement.h: * html/HTMLTableColElement.h: * html/HTMLTableElement.h: * html/HTMLTablePartElement.h: * html/HTMLTableRowsCollection.h: * html/HTMLTableSectionElement.h: * html/HTMLTemplateElement.h: * html/HTMLTextAreaElement.h: * html/HTMLTextFormControlElement.h: * html/HTMLTitleElement.h: * html/HTMLTrackElement.h: * html/HTMLUListElement.h: * html/HTMLUnknownElement.h: * html/HTMLVideoElement.h: * html/HiddenInputType.h: * html/ImageDocument.cpp: * html/ImageInputType.h: * html/LabelableElement.h: * html/LabelsNodeList.h: * html/MediaController.h: * html/MonthInputType.h: * html/NumberInputType.h: * html/PasswordInputType.h: * html/PluginDocument.h: * html/RadioInputType.h: * html/RangeInputType.h: * html/ResetInputType.h: * html/SearchInputType.h: * html/SubmitInputType.h: * html/TelephoneInputType.h: * html/TextFieldInputType.h: * html/TextInputType.h: * html/TimeInputType.h: * html/URLInputType.h: * html/WeekInputType.h: * html/canvas/CanvasRenderingContext2D.cpp: * html/canvas/CanvasRenderingContext2D.h: * html/canvas/WebGLRenderingContext.h: * html/parser/HTMLDocumentParser.h: * html/parser/TextDocumentParser.h: * html/shadow/DetailsMarkerControl.h: * html/shadow/InsertionPoint.h: * html/shadow/MediaControlElementTypes.h: * html/shadow/MediaControlElements.h: * html/shadow/MediaControls.h: * html/shadow/MediaControlsApple.h: * html/shadow/MediaControlsGtk.h: * html/shadow/MeterShadowElement.h: * html/shadow/ProgressShadowElement.h: * html/shadow/SliderThumbElement.cpp: * html/shadow/SliderThumbElement.h: * html/shadow/SpinButtonElement.h: * html/shadow/TextControlInnerElements.h: * html/shadow/YouTubeEmbedShadowElement.h: * html/track/AudioTrack.h: * html/track/AudioTrackList.h: * html/track/InbandGenericTextTrack.h: * html/track/InbandTextTrack.h: * html/track/InbandWebVTTTextTrack.h: * html/track/LoadableTextTrack.h: * html/track/TextTrack.h: * html/track/TextTrackCue.h: * html/track/TextTrackCueGeneric.cpp: * html/track/TextTrackCueGeneric.h: * html/track/TextTrackList.h: * html/track/TrackListBase.h: * html/track/VideoTrack.h: * html/track/VideoTrackList.h: * html/track/WebVTTElement.h: * inspector/CommandLineAPIModule.h: * inspector/InjectedScriptCanvasModule.h: * inspector/InspectorApplicationCacheAgent.h: * inspector/InspectorCSSAgent.h: * inspector/InspectorCanvasAgent.h: * inspector/InspectorConsoleAgent.cpp: * inspector/InspectorConsoleAgent.h: * inspector/InspectorController.h: * inspector/InspectorDOMAgent.h: * inspector/InspectorDOMDebuggerAgent.h: * inspector/InspectorDOMStorageAgent.h: * inspector/InspectorDatabaseAgent.h: * inspector/InspectorDebuggerAgent.h: * inspector/InspectorHeapProfilerAgent.h: * inspector/InspectorIndexedDBAgent.cpp: * inspector/InspectorIndexedDBAgent.h: * inspector/InspectorInputAgent.h: * inspector/InspectorLayerTreeAgent.h: * inspector/InspectorMemoryAgent.h: * inspector/InspectorPageAgent.h: * inspector/InspectorProfilerAgent.h: * inspector/InspectorResourceAgent.h: * inspector/InspectorTimelineAgent.h: * inspector/InspectorWorkerAgent.h: * inspector/PageConsoleAgent.cpp: * inspector/PageConsoleAgent.h: * inspector/PageInjectedScriptHost.h: * inspector/PageInjectedScriptManager.h: * inspector/PageRuntimeAgent.h: * inspector/WorkerConsoleAgent.h: * inspector/WorkerDebuggerAgent.h: * inspector/WorkerInspectorController.h: * inspector/WorkerRuntimeAgent.h: * loader/DocumentLoader.h: * loader/EmptyClients.h: * loader/FrameNetworkingContext.h: * loader/ImageLoader.h: * loader/NavigationScheduler.cpp: * loader/NetscapePlugInStreamLoader.h: * loader/PingLoader.h: * loader/ResourceLoader.h: * loader/SubresourceLoader.h: * loader/WorkerThreadableLoader.h: * loader/appcache/ApplicationCacheGroup.cpp: * loader/appcache/ApplicationCacheGroup.h: * loader/appcache/DOMApplicationCache.h: * loader/archive/cf/LegacyWebArchive.h: * loader/cache/CachedCSSStyleSheet.h: * loader/cache/CachedFont.h: * loader/cache/CachedFontClient.h: * loader/cache/CachedImage.h: * loader/cache/CachedImageClient.h: * loader/cache/CachedRawResource.h: * loader/cache/CachedRawResourceClient.h: * loader/cache/CachedSVGDocument.h: * loader/cache/CachedSVGDocumentClient.h: * loader/cache/CachedScript.h: * loader/cache/CachedShader.h: * loader/cache/CachedStyleSheetClient.h: * loader/cache/CachedTextTrack.h: * loader/cache/CachedXSLStyleSheet.h: * loader/icon/IconLoader.h: * mathml/MathMLElement.h: * mathml/MathMLInlineContainerElement.h: * mathml/MathMLMathElement.h: * mathml/MathMLSelectElement.h: * mathml/MathMLTextElement.h: * page/CaptionUserPreferencesMediaAF.h: * page/Chrome.h: * page/DOMTimer.h: * page/DOMWindow.h: * page/DOMWindowExtension.h: * page/EventSource.h: * page/Frame.h: * page/FrameView.h: * page/PageDebuggable.h: * page/PageSerializer.cpp: * page/Performance.h: * page/SuspendableTimer.h: * page/animation/ImplicitAnimation.h: * page/animation/KeyframeAnimation.h: * page/scrolling/AsyncScrollingCoordinator.h: * page/scrolling/ScrollingConstraints.h: * page/scrolling/ScrollingStateFixedNode.h: * page/scrolling/ScrollingStateScrollingNode.h: * page/scrolling/ScrollingStateStickyNode.h: * page/scrolling/ScrollingTreeScrollingNode.h: * page/scrolling/ThreadedScrollingTree.h: * page/scrolling/coordinatedgraphics/ScrollingCoordinatorCoordinatedGraphics.h: * page/scrolling/ios/ScrollingCoordinatorIOS.h: * page/scrolling/ios/ScrollingTreeIOS.h: * page/scrolling/ios/ScrollingTreeScrollingNodeIOS.h: * page/scrolling/mac/ScrollingCoordinatorMac.h: * page/scrolling/mac/ScrollingTreeFixedNode.h: * page/scrolling/mac/ScrollingTreeScrollingNodeMac.h: * page/scrolling/mac/ScrollingTreeStickyNode.h: * pdf/ios/PDFDocument.cpp: * pdf/ios/PDFDocument.h: * platform/CalculationValue.h: * platform/ClockGeneric.h: * platform/MainThreadTask.h: * platform/PODIntervalTree.h: * platform/PODRedBlackTree.h: * platform/RefCountedSupplement.h: * platform/ScrollView.h: * platform/Scrollbar.h: * platform/Timer.h: * platform/animation/TimingFunction.h: * platform/audio/AudioDSPKernelProcessor.h: * platform/audio/EqualPowerPanner.h: * platform/audio/HRTFPanner.h: * platform/audio/ios/AudioDestinationIOS.h: * platform/audio/mac/AudioDestinationMac.h: * platform/audio/nix/AudioDestinationNix.h: * platform/efl/RenderThemeEfl.h: * platform/efl/ScrollbarEfl.h: * platform/efl/ScrollbarThemeEfl.h: * platform/graphics/AudioTrackPrivate.h: * platform/graphics/BitmapImage.h: * platform/graphics/CrossfadeGeneratedImage.h: * platform/graphics/FloatPolygon.h: * platform/graphics/GeneratedImage.h: * platform/graphics/GradientImage.h: * platform/graphics/GraphicsLayer.h: * platform/graphics/InbandTextTrackPrivate.h: * platform/graphics/MediaPlayer.cpp: * platform/graphics/SimpleFontData.h: * platform/graphics/VideoTrackPrivate.h: * platform/graphics/avfoundation/InbandTextTrackPrivateAVF.h: * platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.h: * platform/graphics/avfoundation/VideoTrackPrivateAVF.h: * platform/graphics/avfoundation/cf/InbandTextTrackPrivateAVCF.h: * platform/graphics/avfoundation/cf/InbandTextTrackPrivateLegacyAVCF.h: * platform/graphics/avfoundation/cf/MediaPlayerPrivateAVFoundationCF.h: * platform/graphics/avfoundation/objc/AudioTrackPrivateMediaSourceAVFObjC.h: * platform/graphics/avfoundation/objc/InbandTextTrackPrivateAVFObjC.h: * platform/graphics/avfoundation/objc/InbandTextTrackPrivateLegacyAVFObjC.h: * platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.h: * platform/graphics/avfoundation/objc/MediaPlayerPrivateMediaSourceAVFObjC.h: * platform/graphics/avfoundation/objc/MediaSourcePrivateAVFObjC.h: * platform/graphics/avfoundation/objc/SourceBufferPrivateAVFObjC.h: * platform/graphics/avfoundation/objc/SourceBufferPrivateAVFObjC.mm: * platform/graphics/avfoundation/objc/VideoTrackPrivateAVFObjC.h: * platform/graphics/avfoundation/objc/VideoTrackPrivateMediaSourceAVFObjC.h: * platform/graphics/avfoundation/objc/WebCoreAVFResourceLoader.h: * platform/graphics/ca/GraphicsLayerCA.h: * platform/graphics/ca/mac/PlatformCALayerMac.h: * platform/graphics/ca/mac/TileController.h: * platform/graphics/ca/win/LegacyCACFLayerTreeHost.h: * platform/graphics/ca/win/PlatformCALayerWin.h: * platform/graphics/ca/win/WKCACFViewLayerTreeHost.h: * platform/graphics/cg/PDFDocumentImage.h: * platform/graphics/efl/GraphicsContext3DPrivate.h: * platform/graphics/egl/GLContextFromCurrentEGL.h: * platform/graphics/filters/DistantLightSource.h: * platform/graphics/filters/FEComposite.h: * platform/graphics/filters/FEDisplacementMap.h: * platform/graphics/filters/FEFlood.h: * platform/graphics/filters/FilterOperation.h: * platform/graphics/filters/PointLightSource.h: * platform/graphics/filters/SpotLightSource.h: * platform/graphics/gstreamer/AudioTrackPrivateGStreamer.h: * platform/graphics/gstreamer/InbandMetadataTextTrackPrivateGStreamer.h: * platform/graphics/gstreamer/InbandTextTrackPrivateGStreamer.h: * platform/graphics/gstreamer/VideoTrackPrivateGStreamer.h: * platform/graphics/ios/InbandTextTrackPrivateAVFIOS.h: * platform/graphics/ios/MediaPlayerPrivateIOS.h: * platform/graphics/ios/TextTrackRepresentationIOS.h: * platform/graphics/surfaces/GLTransportSurface.h: * platform/graphics/surfaces/egl/EGLContext.h: * platform/graphics/surfaces/egl/EGLSurface.h: * platform/graphics/surfaces/egl/EGLXSurface.h: * platform/graphics/surfaces/glx/GLXContext.h: * platform/graphics/surfaces/glx/GLXSurface.h: * platform/graphics/texmap/GraphicsLayerTextureMapper.h: * platform/graphics/texmap/TextureMapperGL.h: * platform/graphics/texmap/TextureMapperImageBuffer.h: * platform/graphics/texmap/TextureMapperLayer.h: * platform/graphics/texmap/TextureMapperTiledBackingStore.h: * platform/graphics/texmap/coordinated/CompositingCoordinator.h: * platform/graphics/texmap/coordinated/CoordinatedBackingStore.h: * platform/graphics/texmap/coordinated/CoordinatedCustomFilterProgram.h: * platform/graphics/texmap/coordinated/CoordinatedGraphicsLayer.h: * platform/graphics/texmap/coordinated/CoordinatedImageBacking.cpp: * platform/graphics/texmap/coordinated/CoordinatedTile.h: * platform/graphics/texmap/coordinated/UpdateAtlas.cpp: * platform/gtk/RenderThemeGtk.h: * platform/ios/DeviceMotionClientIOS.h: * platform/ios/DeviceOrientationClientIOS.h: * platform/ios/ScrollAnimatorIOS.h: * platform/ios/ScrollbarThemeIOS.h: * platform/ios/WebSafeGCActivityCallbackIOS.h: * platform/ios/WebSafeIncrementalSweeperIOS.h: * platform/mac/PlatformClockCA.h: * platform/mac/PlatformClockCM.h: * platform/mac/ScrollAnimatorMac.h: * platform/mac/ScrollbarThemeMac.h: * platform/mediastream/MediaStreamTrackPrivate.h: * platform/mediastream/gstreamer/MediaStreamCenterGStreamer.h: * platform/mediastream/mac/AVAudioCaptureSource.h: * platform/mediastream/mac/AVMediaCaptureSource.h: * platform/mediastream/mac/AVVideoCaptureSource.h: * platform/mediastream/mac/MediaStreamCenterMac.h: * platform/mock/DeviceMotionClientMock.h: * platform/mock/DeviceOrientationClientMock.h: * platform/mock/MockMediaStreamCenter.h: * platform/mock/RTCDataChannelHandlerMock.h: * platform/mock/RTCNotifiersMock.h: * platform/mock/RTCPeerConnectionHandlerMock.h: * platform/mock/mediasource/MockMediaPlayerMediaSource.h: * platform/mock/mediasource/MockMediaSourcePrivate.h: * platform/mock/mediasource/MockSourceBufferPrivate.cpp: * platform/mock/mediasource/MockSourceBufferPrivate.h: * platform/network/BlobRegistryImpl.h: * platform/network/BlobResourceHandle.cpp: * platform/network/BlobResourceHandle.h: * platform/network/ResourceHandle.h: * platform/network/SynchronousLoaderClient.h: * platform/network/cf/ResourceHandleCFURLConnectionDelegateWithOperationQueue.h: * platform/network/cf/SynchronousResourceHandleCFURLConnectionDelegate.h: * platform/nix/RenderThemeNix.h: * platform/nix/ScrollbarThemeNix.h: * platform/text/LocaleICU.h: * platform/text/LocaleNone.cpp: * platform/text/PlatformLocale.cpp: * platform/text/mac/LocaleMac.h: * platform/text/win/LocaleWin.h: * platform/win/PopupMenuWin.h: * plugins/PluginView.h: * rendering/AutoTableLayout.h: * rendering/ClipPathOperation.h: * rendering/EllipsisBox.h: * rendering/FilterEffectRenderer.h: * rendering/FixedTableLayout.h: * rendering/InlineElementBox.h: * rendering/InlineFlowBox.h: * rendering/InlineTextBox.h: * rendering/RenderBlock.h: * rendering/RenderBlockFlow.h: * rendering/RenderBox.h: * rendering/RenderBoxModelObject.h: * rendering/RenderButton.h: * rendering/RenderCombineText.h: * rendering/RenderCounter.h: * rendering/RenderDeprecatedFlexibleBox.h: * rendering/RenderDetailsMarker.h: * rendering/RenderElement.h: * rendering/RenderEmbeddedObject.h: * rendering/RenderFieldset.h: * rendering/RenderFileUploadControl.h: * rendering/RenderFlexibleBox.h: * rendering/RenderFlowThread.h: * rendering/RenderFrame.h: * rendering/RenderFrameSet.h: * rendering/RenderFullScreen.h: * rendering/RenderGrid.h: * rendering/RenderHTMLCanvas.h: * rendering/RenderIFrame.h: * rendering/RenderImage.h: * rendering/RenderImageResourceStyleImage.h: * rendering/RenderInline.h: * rendering/RenderLayer.h: * rendering/RenderLayerBacking.h: * rendering/RenderLayerCompositor.h: * rendering/RenderLayerFilterInfo.h: * rendering/RenderLayerModelObject.h: * rendering/RenderLineBreak.h: * rendering/RenderListBox.h: * rendering/RenderListItem.h: * rendering/RenderListMarker.h: * rendering/RenderMedia.h: * rendering/RenderMenuList.h: * rendering/RenderMeter.h: * rendering/RenderMultiColumnBlock.h: * rendering/RenderMultiColumnFlowThread.h: * rendering/RenderMultiColumnSet.h: * rendering/RenderNamedFlowFragment.h: * rendering/RenderNamedFlowThread.h: * rendering/RenderObject.h: * rendering/RenderProgress.h: * rendering/RenderQuote.h: * rendering/RenderRegion.h: * rendering/RenderRegionSet.h: * rendering/RenderReplaced.h: * rendering/RenderReplica.h: * rendering/RenderRuby.h: * rendering/RenderRubyRun.h: * rendering/RenderRubyText.h: * rendering/RenderScrollbar.h: * rendering/RenderScrollbarPart.h: * rendering/RenderScrollbarTheme.h: * rendering/RenderSearchField.h: * rendering/RenderSlider.h: * rendering/RenderSnapshottedPlugIn.h: * rendering/RenderTable.h: * rendering/RenderTableCaption.h: * rendering/RenderTableCell.h: * rendering/RenderTableCol.h: * rendering/RenderTableRow.h: * rendering/RenderTableSection.h: * rendering/RenderText.h: * rendering/RenderTextControl.h: * rendering/RenderTextControlMultiLine.h: * rendering/RenderTextControlSingleLine.h: * rendering/RenderTextFragment.h: * rendering/RenderTextTrackCue.h: * rendering/RenderThemeIOS.h: * rendering/RenderThemeMac.h: * rendering/RenderThemeSafari.h: * rendering/RenderThemeWin.h: * rendering/RenderVideo.h: * rendering/RenderView.h: * rendering/RenderWidget.h: * rendering/RootInlineBox.h: * rendering/mathml/RenderMathMLBlock.h: * rendering/mathml/RenderMathMLFenced.h: * rendering/mathml/RenderMathMLFraction.h: * rendering/mathml/RenderMathMLMath.h: * rendering/mathml/RenderMathMLOperator.h: * rendering/mathml/RenderMathMLRoot.h: * rendering/mathml/RenderMathMLRow.h: * rendering/mathml/RenderMathMLScripts.h: * rendering/mathml/RenderMathMLSpace.h: * rendering/mathml/RenderMathMLSquareRoot.h: * rendering/mathml/RenderMathMLUnderOver.h: * rendering/shapes/BoxShape.h: * rendering/shapes/PolygonShape.h: * rendering/shapes/RasterShape.h: * rendering/shapes/RectangleShape.h: * rendering/shapes/ShapeInsideInfo.h: * rendering/shapes/ShapeOutsideInfo.h: * rendering/style/BasicShapes.h: * rendering/style/ContentData.h: * rendering/style/StyleCachedImage.h: * rendering/style/StyleCachedImageSet.h: * rendering/style/StyleGeneratedImage.h: * rendering/style/StylePendingImage.h: * rendering/svg/RenderSVGBlock.h: * rendering/svg/RenderSVGContainer.h: * rendering/svg/RenderSVGForeignObject.h: * rendering/svg/RenderSVGGradientStop.h: * rendering/svg/RenderSVGHiddenContainer.h: * rendering/svg/RenderSVGImage.h: * rendering/svg/RenderSVGInline.h: * rendering/svg/RenderSVGInlineText.h: * rendering/svg/RenderSVGModelObject.h: * rendering/svg/RenderSVGPath.h: * rendering/svg/RenderSVGResourceClipper.h: * rendering/svg/RenderSVGResourceContainer.h: * rendering/svg/RenderSVGResourceFilter.h: * rendering/svg/RenderSVGResourceGradient.h: * rendering/svg/RenderSVGResourceLinearGradient.h: * rendering/svg/RenderSVGResourceMarker.h: * rendering/svg/RenderSVGResourceMasker.h: * rendering/svg/RenderSVGResourcePattern.h: * rendering/svg/RenderSVGResourceRadialGradient.h: * rendering/svg/RenderSVGResourceSolidColor.h: * rendering/svg/RenderSVGRoot.h: * rendering/svg/RenderSVGShape.cpp: * rendering/svg/RenderSVGShape.h: * rendering/svg/RenderSVGText.h: * rendering/svg/RenderSVGTextPath.h: * rendering/svg/RenderSVGViewportContainer.h: * rendering/svg/SVGInlineFlowBox.h: * rendering/svg/SVGInlineTextBox.h: * rendering/svg/SVGRootInlineBox.h: * rendering/svg/SVGTextRunRenderingContext.h: * storage/StorageAreaImpl.h: * storage/StorageNamespaceImpl.h: * svg/SVGAElement.h: * svg/SVGAltGlyphDefElement.h: * svg/SVGAltGlyphElement.h: * svg/SVGAltGlyphItemElement.h: * svg/SVGAnimateElement.h: * svg/SVGAnimateMotionElement.h: * svg/SVGAnimateTransformElement.h: * svg/SVGAnimatedAngle.h: * svg/SVGAnimatedBoolean.h: * svg/SVGAnimatedColor.h: * svg/SVGAnimatedEnumeration.h: * svg/SVGAnimatedInteger.h: * svg/SVGAnimatedIntegerOptionalInteger.h: * svg/SVGAnimatedLength.h: * svg/SVGAnimatedLengthList.h: * svg/SVGAnimatedNumber.h: * svg/SVGAnimatedNumberList.h: * svg/SVGAnimatedNumberOptionalNumber.h: * svg/SVGAnimatedPath.h: * svg/SVGAnimatedPointList.h: * svg/SVGAnimatedPreserveAspectRatio.h: * svg/SVGAnimatedRect.h: * svg/SVGAnimatedString.h: * svg/SVGAnimatedTransformList.h: * svg/SVGAnimationElement.h: * svg/SVGCircleElement.h: * svg/SVGClipPathElement.h: * svg/SVGComponentTransferFunctionElement.h: * svg/SVGCursorElement.h: * svg/SVGDefsElement.h: * svg/SVGDocument.h: * svg/SVGElement.h: * svg/SVGElementInstance.h: * svg/SVGEllipseElement.h: * svg/SVGFEBlendElement.h: * svg/SVGFEColorMatrixElement.h: * svg/SVGFEComponentTransferElement.h: * svg/SVGFECompositeElement.h: * svg/SVGFEConvolveMatrixElement.h: * svg/SVGFEDiffuseLightingElement.h: * svg/SVGFEDisplacementMapElement.h: * svg/SVGFEDropShadowElement.h: * svg/SVGFEGaussianBlurElement.h: * svg/SVGFEImageElement.h: * svg/SVGFELightElement.h: * svg/SVGFEMergeNodeElement.h: * svg/SVGFEMorphologyElement.h: * svg/SVGFEOffsetElement.h: * svg/SVGFESpecularLightingElement.h: * svg/SVGFETileElement.h: * svg/SVGFETurbulenceElement.h: * svg/SVGFilterElement.h: * svg/SVGFilterPrimitiveStandardAttributes.h: * svg/SVGFontElement.h: * svg/SVGFontFaceElement.h: * svg/SVGFontFaceFormatElement.h: * svg/SVGFontFaceNameElement.h: * svg/SVGFontFaceSrcElement.h: * svg/SVGFontFaceUriElement.h: * svg/SVGForeignObjectElement.h: * svg/SVGGElement.h: * svg/SVGGlyphElement.h: * svg/SVGGlyphRefElement.h: * svg/SVGGradientElement.h: * svg/SVGGraphicsElement.h: * svg/SVGHKernElement.h: * svg/SVGImageElement.h: * svg/SVGLineElement.h: * svg/SVGLinearGradientElement.h: * svg/SVGMPathElement.h: * svg/SVGMarkerElement.h: * svg/SVGMaskElement.h: * svg/SVGMetadataElement.h: * svg/SVGPathElement.h: * svg/SVGPathStringBuilder.h: * svg/SVGPatternElement.h: * svg/SVGPolyElement.h: * svg/SVGRadialGradientElement.h: * svg/SVGRectElement.h: * svg/SVGSVGElement.h: * svg/SVGScriptElement.h: * svg/SVGSetElement.h: * svg/SVGStopElement.h: * svg/SVGStyleElement.h: * svg/SVGSwitchElement.h: * svg/SVGSymbolElement.h: * svg/SVGTRefElement.cpp: * svg/SVGTRefElement.h: * svg/SVGTSpanElement.h: * svg/SVGTextContentElement.h: * svg/SVGTextElement.h: * svg/SVGTextPathElement.h: * svg/SVGTextPositioningElement.h: * svg/SVGTitleElement.h: * svg/SVGTransformable.h: * svg/SVGUnknownElement.h: * svg/SVGUseElement.h: * svg/SVGVKernElement.h: * svg/SVGViewElement.h: * svg/animation/SVGSMILElement.h: * svg/graphics/SVGImage.h: * svg/graphics/SVGImageForContainer.h: * svg/graphics/filters/SVGFilter.h: * svg/properties/SVGAnimatedListPropertyTearOff.h: * svg/properties/SVGAnimatedTransformListPropertyTearOff.h: * svg/properties/SVGListPropertyTearOff.h: * svg/properties/SVGPathSegListPropertyTearOff.h: * svg/properties/SVGPropertyTearOff.h: * testing/InternalSettings.cpp: * testing/Internals.cpp: * testing/MockCDM.cpp: * testing/MockCDM.h: * workers/AbstractWorker.h: * workers/DedicatedWorkerGlobalScope.h: * workers/DedicatedWorkerThread.h: * workers/SharedWorker.h: * workers/SharedWorkerGlobalScope.h: * workers/SharedWorkerThread.h: * workers/Worker.h: * workers/WorkerEventQueue.cpp: * workers/WorkerEventQueue.h: * workers/WorkerGlobalScope.h: * workers/WorkerMessagingProxy.h: * workers/WorkerObjectProxy.h: * workers/WorkerScriptLoader.h: * workers/WorkerThread.cpp: * xml/XMLHttpRequest.h: * xml/XMLHttpRequestUpload.h: * xml/XPathFunctions.cpp: * xml/XPathPath.h: * xml/XPathPredicate.h: * xml/XSLStyleSheet.h: Source/WebKit/efl: * WebCoreSupport/InspectorClientEfl.h: * WebCoreSupport/ProgressTrackerClientEfl.h: Source/WebKit/gtk: * WebCoreSupport/EditorClientGtk.h: * WebCoreSupport/InspectorClientGtk.h: * WebCoreSupport/ProgressTrackerClientGtk.h: Source/WebKit/ios: * Misc/EmojiFallbackFontSelector.h: * Storage/WebSQLiteDatabaseTrackerClient.h: * WebCoreSupport/PopupMenuIOS.h: * WebCoreSupport/SearchPopupMenuIOS.h: * WebCoreSupport/WebChromeClientIOS.h: * WebCoreSupport/WebDiskImageCacheClientIOS.h: Source/WebKit/mac: * Storage/WebDatabaseManagerClient.h: * Storage/WebStorageTrackerClient.h: * WebCoreSupport/WebAlternativeTextClient.h: * WebCoreSupport/WebChromeClient.h: * WebCoreSupport/WebContextMenuClient.h: * WebCoreSupport/WebDeviceOrientationClient.h: * WebCoreSupport/WebDragClient.h: * WebCoreSupport/WebEditorClient.h: * WebCoreSupport/WebFrameLoaderClient.h: * WebCoreSupport/WebFrameNetworkingContext.h: * WebCoreSupport/WebGeolocationClient.h: * WebCoreSupport/WebIconDatabaseClient.h: * WebCoreSupport/WebInspectorClient.h: * WebCoreSupport/WebNotificationClient.h: * WebCoreSupport/WebPlatformStrategies.h: * WebCoreSupport/WebProgressTrackerClient.h: * WebCoreSupport/WebUserMediaClient.h: * WebView/WebScriptDebugger.h: * WebView/WebViewData.h: Source/WebKit/win: * AccessibleDocument.h: * FullscreenVideoController.cpp: * WebCoreSupport/WebChromeClient.h: * WebCoreSupport/WebFrameLoaderClient.h: * WebCoreSupport/WebFrameNetworkingContext.h: * WebCoreSupport/WebInspectorClient.h: * WebHistory.h: Source/WebKit/wince: * WebCoreSupport/ChromeClientWinCE.h: * WebCoreSupport/ContextMenuClientWinCE.h: * WebCoreSupport/DragClientWinCE.h: * WebCoreSupport/EditorClientWinCE.h: * WebCoreSupport/FrameLoaderClientWinCE.h: * WebCoreSupport/FrameNetworkingContextWinCE.h: * WebCoreSupport/InspectorClientWinCE.h: * WebCoreSupport/PlatformStrategiesWinCE.h: Source/WebKit2: * DatabaseProcess/DatabaseProcess.h: * DatabaseProcess/DatabaseToWebProcessConnection.h: * DatabaseProcess/IndexedDB/DatabaseProcessIDBConnection.h: * DatabaseProcess/IndexedDB/sqlite/UniqueIDBDatabaseBackingStoreSQLite.h: * NetworkProcess/AsynchronousNetworkLoaderClient.h: * NetworkProcess/NetworkProcess.h: * NetworkProcess/NetworkProcessPlatformStrategies.h: * NetworkProcess/NetworkResourceLoader.h: * NetworkProcess/RemoteNetworkingContext.h: * NetworkProcess/SynchronousNetworkLoaderClient.h: * NetworkProcess/mac/DiskCacheMonitor.h: * PluginProcess/EntryPoint/mac/LegacyProcess/PluginProcessMain.mm: * PluginProcess/PluginControllerProxy.h: * PluginProcess/PluginProcess.h: * PluginProcess/WebProcessConnection.h: * Shared/API/Cocoa/RemoteObjectRegistry.h: * Shared/APIObject.h: * Shared/AsyncRequest.h: * Shared/AsyncTask.h: * Shared/Authentication/AuthenticationManager.h: * Shared/ChildProcess.h: * Shared/ChildProcessProxy.h: * Shared/CoordinatedGraphics/WebCoordinatedSurface.h: * Shared/Downloads/Download.h: * Shared/Network/CustomProtocols/CustomProtocolManager.h: * Shared/WebConnection.h: * Shared/WebResourceBuffer.h: * Shared/cf/KeyedEncoder.h: * Shared/mac/SecItemShim.h: * UIProcess/API/Cocoa/WKBrowsingContextController.mm: * UIProcess/API/gtk/PageClientImpl.h: * UIProcess/API/ios/PageClientImplIOS.h: * UIProcess/API/mac/PageClientImpl.h: * UIProcess/CoordinatedGraphics/CoordinatedLayerTreeHostProxy.h: * UIProcess/CoordinatedGraphics/WebView.h: * UIProcess/Databases/DatabaseProcessProxy.h: * UIProcess/Downloads/DownloadProxy.h: * UIProcess/DrawingAreaProxy.h: * UIProcess/Network/CustomProtocols/CustomProtocolManagerProxy.h: * UIProcess/Network/NetworkProcessProxy.h: * UIProcess/Notifications/WebNotificationManagerProxy.h: * UIProcess/Plugins/PluginProcessProxy.h: * UIProcess/Scrolling/RemoteScrollingTree.h: * UIProcess/Storage/StorageManager.h: * UIProcess/WebApplicationCacheManagerProxy.h: * UIProcess/WebBatteryManagerProxy.h: * UIProcess/WebConnectionToWebProcess.h: * UIProcess/WebContext.h: * UIProcess/WebCookieManagerProxy.h: * UIProcess/WebDatabaseManagerProxy.h: * UIProcess/WebFullScreenManagerProxy.h: * UIProcess/WebGeolocationManagerProxy.h: * UIProcess/WebIconDatabase.h: * UIProcess/WebInspectorProxy.h: * UIProcess/WebKeyValueStorageManager.h: * UIProcess/WebMediaCacheManagerProxy.h: * UIProcess/WebNetworkInfoManagerProxy.h: * UIProcess/WebOriginDataManagerProxy.h: * UIProcess/WebPageProxy.h: * UIProcess/WebProcessProxy.h: * UIProcess/WebResourceCacheManagerProxy.h: * UIProcess/WebVibrationProxy.h: * UIProcess/efl/PageViewportControllerClientEfl.h: * UIProcess/efl/WebViewEfl.h: * UIProcess/mac/RemoteLayerTreeDrawingAreaProxy.h: * UIProcess/mac/SecItemShimProxy.h: * UIProcess/mac/TiledCoreAnimationDrawingAreaProxy.h: * UIProcess/mac/ViewGestureController.h: * UIProcess/mac/WebColorPickerMac.h: * UIProcess/soup/WebSoupRequestManagerProxy.h: * WebProcess/ApplicationCache/WebApplicationCacheManager.h: * WebProcess/Battery/WebBatteryManager.h: * WebProcess/Cookies/WebCookieManager.h: * WebProcess/Databases/IndexedDB/WebIDBFactoryBackend.h: * WebProcess/Databases/IndexedDB/WebIDBServerConnection.h: * WebProcess/Databases/WebToDatabaseProcessConnection.h: * WebProcess/EntryPoint/mac/LegacyProcess/WebContentProcessMain.mm: * WebProcess/FileAPI/BlobRegistryProxy.h: * WebProcess/Geolocation/WebGeolocationManager.h: * WebProcess/IconDatabase/WebIconDatabaseProxy.h: * WebProcess/InjectedBundle/API/c/mac/WKBundlePageBannerMac.mm: * WebProcess/MediaCache/WebMediaCacheManager.h: * WebProcess/Network/NetworkProcessConnection.h: * WebProcess/Network/WebResourceLoadScheduler.h: * WebProcess/Network/WebResourceLoader.h: * WebProcess/NetworkInfo/WebNetworkInfoManager.h: * WebProcess/Notifications/WebNotificationManager.h: * WebProcess/OriginData/WebOriginDataManager.h: * WebProcess/Plugins/Netscape/NetscapePlugin.h: * WebProcess/Plugins/PDF/PDFPlugin.h: * WebProcess/Plugins/PDF/PDFPluginAnnotation.h: * WebProcess/Plugins/PDF/PDFPluginChoiceAnnotation.h: * WebProcess/Plugins/PDF/PDFPluginPasswordField.h: * WebProcess/Plugins/PDF/PDFPluginTextAnnotation.h: * WebProcess/Plugins/PluginProcessConnection.h: * WebProcess/Plugins/PluginProcessConnectionManager.h: * WebProcess/Plugins/PluginProxy.h: * WebProcess/Plugins/PluginView.h: * WebProcess/ResourceCache/WebResourceCacheManager.h: * WebProcess/Scrolling/RemoteScrollingCoordinator.h: * WebProcess/Storage/StorageAreaImpl.h: * WebProcess/Storage/StorageAreaMap.h: * WebProcess/Storage/StorageNamespaceImpl.h: * WebProcess/WebConnectionToUIProcess.h: * WebProcess/WebCoreSupport/WebAlternativeTextClient.h: * WebProcess/WebCoreSupport/WebBatteryClient.h: * WebProcess/WebCoreSupport/WebChromeClient.h: * WebProcess/WebCoreSupport/WebColorChooser.h: * WebProcess/WebCoreSupport/WebContextMenuClient.h: * WebProcess/WebCoreSupport/WebDatabaseManager.h: * WebProcess/WebCoreSupport/WebDeviceProximityClient.h: * WebProcess/WebCoreSupport/WebDragClient.h: * WebProcess/WebCoreSupport/WebEditorClient.h: * WebProcess/WebCoreSupport/WebFrameLoaderClient.h: * WebProcess/WebCoreSupport/WebGeolocationClient.h: * WebProcess/WebCoreSupport/WebInspectorClient.h: * WebProcess/WebCoreSupport/WebInspectorFrontendClient.h: * WebProcess/WebCoreSupport/WebNavigatorContentUtilsClient.h: * WebProcess/WebCoreSupport/WebNetworkInfoClient.h: * WebProcess/WebCoreSupport/WebNotificationClient.h: * WebProcess/WebCoreSupport/WebPlatformStrategies.h: * WebProcess/WebCoreSupport/WebPopupMenu.h: * WebProcess/WebCoreSupport/WebProgressTrackerClient.h: * WebProcess/WebCoreSupport/WebSearchPopupMenu.h: * WebProcess/WebCoreSupport/WebVibrationClient.h: * WebProcess/WebCoreSupport/mac/WebFrameNetworkingContext.h: * WebProcess/WebPage/CoordinatedGraphics/CoordinatedDrawingArea.h: * WebProcess/WebPage/CoordinatedGraphics/CoordinatedLayerTreeHost.h: * WebProcess/WebPage/DrawingAreaImpl.h: * WebProcess/WebPage/EventDispatcher.h: * WebProcess/WebPage/ViewGestureGeometryCollector.h: * WebProcess/WebPage/WebBackForwardListProxy.h: * WebProcess/WebPage/WebPage.h: * WebProcess/WebPage/gtk/LayerTreeHostGtk.h: * WebProcess/WebPage/mac/GraphicsLayerCARemote.h: * WebProcess/WebPage/mac/PlatformCALayerRemote.h: * WebProcess/WebPage/mac/PlatformCALayerRemoteCustom.h: * WebProcess/WebPage/mac/PlatformCALayerRemoteTiledBacking.h: * WebProcess/WebPage/mac/RemoteLayerTreeContext.h: * WebProcess/WebPage/mac/RemoteLayerTreeDrawingArea.h: * WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.h: * WebProcess/WebProcess.h: * WebProcess/soup/WebSoupRequestManager.h: Source/WTF: * wtf/Compiler.h: * wtf/FilePrintStream.h: * wtf/RunLoop.h: * wtf/StringPrintStream.h: Tools: * DumpRenderTree/gtk/fonts/fonts.conf: * Scripts/do-webcore-rename: Removed this rename operation from the list of contemplated future renames. * TestWebKitAPI/Tests/WebKit2/DidAssociateFormControls_Bundle.cpp: * TestWebKitAPI/Tests/WebKit2/InjectedBundleFrameHitTest_Bundle.cpp: * TestWebKitAPI/Tests/WebKit2/WillLoad_Bundle.cpp: * TestWebKitAPI/Tests/WebKit2ObjC/CustomProtocolsInvalidScheme_Bundle.cpp: * TestWebKitAPI/Tests/mac/PageVisibilityStateWithWindowChanges.mm: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162139 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
- 15 Jan, 2014 2 commits
-
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=127069 Patch by Joseph Pecoraro <pecoraro@apple.com> on 2014-01-15 Reviewed by Timothy Hatcher. Source/JavaScriptCore: * JavaScriptCore.xcodeproj/project.pbxproj: Export XPCConnection because it is needed by RemoteInspector.h. * inspector/remote/RemoteInspectorXPCConnection.h: * inspector/remote/RemoteInspector.h: * inspector/remote/RemoteInspector.mm: (Inspector::RemoteInspector::startDisabled): (Inspector::RemoteInspector::shared): Allow RemoteInspector singleton to start disabled. Source/WebCore: * WebCore.exp.in: Source/WebKit/mac: * WebView/WebView.mm: (-[WebView initSimpleHTMLDocumentWithStyle:frame:preferences:groupName:]): (+[WebView _enableRemoteInspector]): (+[WebView _disableRemoteInspector]): (+[WebView _disableAutoStartRemoteInspector]): (+[WebView _isRemoteInspectorEnabled]): (+[WebView _hasRemoteInspectorSession]): (-[WebView allowsRemoteInspection]): Implement with RemoteInspector.h SPIs. (-[WebView setAllowsRemoteInspection:]): (-[WebView setHostApplicationBundleId:name:]): Still unimplemented, update comment. (-[WebView _didCommitLoadForFrame:]): Remove dead path, WebCore now pushes updates on navigations. * WebView/WebViewData.h: * WebView/WebViewData.mm: (-[WebViewPrivate init]): Remove now unused ivar. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162112 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
bburg@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=126668 Reviewed by Joseph Pecoraro. Source/JavaScriptCore: Add the 'probe' breakpoint action to the protocol. Change the setBreakpoint commands to return a list of assigned breakpoint action identifiers Add a type for breakpoint action identifiers. Add an event for sending captured probe samples to the inspector frontend. * inspector/protocol/Debugger.json: Source/WebCore: Test: inspector-protocol/debugger/setProbe-multiple-actions.html Add the probe breakpoint action type. A probe action evaluates an expression on the script call frame, and the result is aggregated on a per-probe basis. Each evaluated expression result is called a probe sample. * bindings/js/ScriptDebugServer.cpp: (WebCore::ScriptDebugServer::evaluateBreakpointAction): Teach the debug server to evaluate a probe. (WebCore::ScriptDebugServer::dispatchDidSampleProbe): Added. (WebCore::ScriptDebugServer::handleBreakpointHit): Increment a hit count. (WebCore::ScriptDebugServer::getActionsForBreakpoint): * bindings/js/ScriptDebugServer.h: * inspector/InspectorDebuggerAgent.cpp: (WebCore::objectGroupForBreakpointAction): Added. Create an object group for each breakpoint action. Currently only probes make objects. (WebCore::InspectorDebuggerAgent::InspectorDebuggerAgent): (WebCore::InspectorDebuggerAgent::disable): (WebCore::InspectorDebuggerAgent::enable): Remove stale comment. (WebCore::breakpointActionTypeForString): Add new case. (WebCore::InspectorDebuggerAgent::breakpointActionsFromProtocol): Make this a member function instead of a static function, so it can increment the breakpoint action identifier counter. (WebCore::InspectorDebuggerAgent::setBreakpointByUrl): Propagate the assigned breakpoint action identifiers. (WebCore::InspectorDebuggerAgent::setBreakpoint): Propagate the assigned breakpoint action identifiers. (WebCore::InspectorDebuggerAgent::removeBreakpoint): Release object groups for any actions that were associated with the removed breakpoint. (WebCore::InspectorDebuggerAgent::didSampleProbe): Added. (WebCore::InspectorDebuggerAgent::clearResolvedBreakpointState): Renamed from clear(). (WebCore::InspectorDebuggerAgent::didClearGlobalObject): Renamed from reset(). * inspector/InspectorDebuggerAgent.h: * inspector/PageDebuggerAgent.cpp: (WebCore::PageDebuggerAgent::didClearMainFrameWindowObject): * inspector/ScriptBreakpoint.h: (WebCore::ScriptBreakpointAction::ScriptBreakpointAction): Add identifier member. * inspector/ScriptDebugListener.h: Source/WebInspectorUI: * UserInterface/InspectorJSBackendCommands.js: Add probe enumeration value. LayoutTests: Add protocol tests for setting and hitting the probe breakpoint action type. * inspector-protocol/debugger/setBreakpoint-actions-expected.txt: * inspector-protocol/debugger/setBreakpoint-actions.html: * inspector-protocol/debugger/setProbe-multiple-actions-expected.txt: Added. * inspector-protocol/debugger/setProbe-multiple-actions.html: Added. * inspector-protocol/resources/probe-helper.js: Added. (ProbeHelper.simplifiedProbeSample): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162096 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
- 14 Jan, 2014 4 commits
-
-
mhahnenberg@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=126555 Reviewed by Geoffrey Garen. This patch adds support for copying to our generational collector. Eden collections always trigger copying. Full collections use our normal fragmentation-based heuristics. The way this works is that the CopiedSpace now has the notion of an old generation set of CopiedBlocks and a new generation of CopiedBlocks. During each mutator cycle new CopiedSpace allocations reside in the new generation. When a collection occurs, those blocks are moved to the old generation. One key thing to remember is that both new and old generation objects in the MarkedSpace can refer to old or new generation allocations in CopiedSpace. This is why we must fire write barriers when assigning to an old (MarkedSpace) object's Butterfly. * heap/CopiedAllocator.h: (JSC::CopiedAllocator::tryAllocateDuringCopying): * heap/CopiedBlock.h: (JSC::CopiedBlock::CopiedBlock): (JSC::CopiedBlock::didEvacuateBytes): (JSC::CopiedBlock::isOld): (JSC::CopiedBlock::didPromote): * heap/CopiedBlockInlines.h: (JSC::CopiedBlock::reportLiveBytes): (JSC::CopiedBlock::reportLiveBytesDuringCopying): * heap/CopiedSpace.cpp: (JSC::CopiedSpace::CopiedSpace): (JSC::CopiedSpace::~CopiedSpace): (JSC::CopiedSpace::init): (JSC::CopiedSpace::tryAllocateOversize): (JSC::CopiedSpace::tryReallocateOversize): (JSC::CopiedSpace::doneFillingBlock): (JSC::CopiedSpace::didStartFullCollection): (JSC::CopiedSpace::doneCopying): (JSC::CopiedSpace::size): (JSC::CopiedSpace::capacity): (JSC::CopiedSpace::isPagedOut): * heap/CopiedSpace.h: (JSC::CopiedSpace::CopiedGeneration::CopiedGeneration): * heap/CopiedSpaceInlines.h: (JSC::CopiedSpace::contains): (JSC::CopiedSpace::recycleEvacuatedBlock): (JSC::CopiedSpace::allocateBlock): (JSC::CopiedSpace::startedCopying): * heap/CopyVisitor.cpp: (JSC::CopyVisitor::copyFromShared): * heap/CopyVisitorInlines.h: (JSC::CopyVisitor::allocateNewSpace): (JSC::CopyVisitor::allocateNewSpaceSlow): * heap/GCThreadSharedData.cpp: (JSC::GCThreadSharedData::didStartCopying): * heap/Heap.cpp: (JSC::Heap::copyBackingStores): * heap/SlotVisitorInlines.h: (JSC::SlotVisitor::copyLater): * heap/TinyBloomFilter.h: (JSC::TinyBloomFilter::add): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162017 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
mark.lam@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=126990. Reviewed by Geoffrey Garen. Source/JavaScriptCore: * parser/Parser.cpp: (JSC::Parser<LexerType>::parseConstDeclarationList): - We were missing an error check after attempting to parse an initializer expression. This is now fixed. LayoutTests: * js/dom/parse-syntax-error-in-initializer-expected.txt: Added. * js/dom/parse-syntax-error-in-initializer.html: Added. * js/resources/parse-syntax-error-in-initializer.js: Added. - Added bug test case as a regression test. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@162006 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=126995 Patch by Joseph Pecoraro <pecoraro@apple.com> on 2014-01-14 Reviewed by Timothy Hatcher. Source/JavaScriptCore: * inspector/remote/RemoteInspector.mm: (Inspector::RemoteInspector::listingForDebuggable): For each WebView, list the parent process. Listing the parent per WebView is already supported back when we supported processes that could host WebViews for multiple applications. * inspector/remote/RemoteInspectorConstants.h: Add a separate key for the bundle identifier, separate from application identifier. * inspector/remote/RemoteInspectorDebuggable.cpp: (Inspector::RemoteInspectorDebuggable::info): * inspector/remote/RemoteInspectorDebuggable.h: (Inspector::RemoteInspectorDebuggableInfo::RemoteInspectorDebuggableInfo): (Inspector::RemoteInspectorDebuggableInfo::hasParentProcess): If a RemoteInspectorDebuggable has a non-zero parent process identifier it is a proxy for the parent process. Source/WebCore: * inspector/InspectorClient.h: (WebCore::InspectorClient::parentProcessIdentifier): Client method intended for WebKit2 so a WebProcess can link to its UIProcess. * page/PageDebuggable.h: * page/PageDebuggable.cpp: (WebCore::PageDebuggable::parentProcessIdentifier): Provide parent process identifier if there is one. Source/WebKit2: * WebProcess/WebCoreSupport/WebInspectorClient.h: * WebProcess/WebCoreSupport/WebInspectorClient.cpp: (WebKit::WebInspectorClient::parentProcessIdentifier): WebProcesses are proxies for a parent UIProcess. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@161994 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=126949 Patch by Brian J. Burg <burg@cs.washington.edu> on 2014-01-14 Reviewed by Joseph Pecoraro. Source/JavaScriptCore: * Configurations/FeatureDefines.xcconfig: Source/WebCore: * Configurations/FeatureDefines.xcconfig: Source/WebKit/mac: * Configurations/FeatureDefines.xcconfig: Source/WebKit2: * Configurations/FeatureDefines.xcconfig: Source/WTF: * wtf/FeatureDefines.h: for now, disable the flag by default. Tools: * Scripts/webkitperl/FeatureList.pm: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@161988 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-