Changeset 244019 in webkit
- Timestamp:
- Apr 8, 2019, 7:45:08 AM (7 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 11 edited
-
API/JSBaseInternal.h (modified) (1 diff)
-
ChangeLog (modified) (1 diff)
-
b3/air/AirAllocateRegistersAndStackAndGenerateCode.cpp (modified) (1 diff)
-
b3/air/AirHandleCalleeSaves.h (modified) (1 diff)
-
bytecode/ExecutableToCodeBlockEdge.cpp (modified) (1 diff)
-
bytecode/ExitFlag.h (modified) (2 diffs)
-
bytecode/ICStatusUtils.h (modified) (1 diff)
-
bytecode/UnlinkedMetadataTable.h (modified) (1 diff)
-
dfg/DFGPureValue.h (modified) (1 diff)
-
heap/IsoAlignedMemoryAllocator.cpp (modified) (1 diff)
-
heap/IsoAlignedMemoryAllocator.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/API/JSBaseInternal.h
r241929 r244019 32 32 class JSLockHolder; 33 33 class ExecState; 34 class SourceCode; 34 35 } 35 36 -
trunk/Source/JavaScriptCore/ChangeLog
r244000 r244019 1 2019-04-08 Claudio Saavedra <csaavedra@igalia.com> 2 3 [JSC] Partially fix the build with unified builds disabled 4 https://bugs.webkit.org/show_bug.cgi?id=196647 5 6 Reviewed by Konstantin Tokarev. 7 8 If you disable unified builds you find all kind of build 9 errors. This partially tries to fix them but there's a lot 10 more. 11 12 * API/JSBaseInternal.h: 13 * b3/air/AirAllocateRegistersAndStackAndGenerateCode.cpp: 14 * b3/air/AirHandleCalleeSaves.h: 15 * bytecode/ExecutableToCodeBlockEdge.cpp: 16 * bytecode/ExitFlag.h: 17 * bytecode/ICStatusUtils.h: 18 * bytecode/UnlinkedMetadataTable.h: 19 * dfg/DFGPureValue.h: 20 * heap/IsoAlignedMemoryAllocator.cpp: 21 * heap/IsoAlignedMemoryAllocator.h: 22 1 23 2019-04-08 Guillaume Emont <guijemont@igalia.com> 2 24 -
trunk/Source/JavaScriptCore/b3/air/AirAllocateRegistersAndStackAndGenerateCode.cpp
r241579 r244019 29 29 #if ENABLE(B3_JIT) 30 30 31 #include "AirArgInlines.h" 31 32 #include "AirBlockInsertionSet.h" 32 33 #include "AirCode.h" -
trunk/Source/JavaScriptCore/b3/air/AirHandleCalleeSaves.h
r241579 r244019 28 28 #if ENABLE(B3_JIT) 29 29 30 namespace JSC { namespace B3 { namespace Air { 30 namespace JSC { 31 32 class RegisterSet; 33 34 namespace B3 { namespace Air { 31 35 32 36 class Code; -
trunk/Source/JavaScriptCore/bytecode/ExecutableToCodeBlockEdge.cpp
r243467 r244019 27 27 #include "ExecutableToCodeBlockEdge.h" 28 28 29 #include "CodeBlock.h" 29 30 #include "IsoCellSetInlines.h" 30 31 -
trunk/Source/JavaScriptCore/bytecode/ExitFlag.h
r234086 r244019 27 27 28 28 #include "ExitingInlineKind.h" 29 30 namespace WTF { 31 class PrintStream; 32 } // namespace WTF 29 33 30 34 namespace JSC { … … 88 92 } 89 93 90 void dump( PrintStream&) const;94 void dump(WTF::PrintStream&) const; 91 95 92 96 private: -
trunk/Source/JavaScriptCore/bytecode/ICStatusUtils.h
r238411 r244019 29 29 30 30 namespace JSC { 31 32 class CodeBlock; 33 class StructureSet; 31 34 32 35 template<typename VariantVectorType, typename VariantType> -
trunk/Source/JavaScriptCore/bytecode/UnlinkedMetadataTable.h
r240915 r244019 28 28 #include "Opcode.h" 29 29 #include <wtf/Ref.h> 30 #include <wtf/RefCounted.h> 30 31 31 32 namespace JSC { -
trunk/Source/JavaScriptCore/dfg/DFGPureValue.h
r228565 r244019 28 28 #if ENABLE(DFG_JIT) 29 29 30 #include "DFGGraph.h" 30 31 #include "DFGNode.h" 31 32 -
trunk/Source/JavaScriptCore/heap/IsoAlignedMemoryAllocator.cpp
r243688 r244019 26 26 #include "config.h" 27 27 #include "IsoAlignedMemoryAllocator.h" 28 #include "MarkedBlock.h" 28 29 29 30 namespace JSC { -
trunk/Source/JavaScriptCore/heap/IsoAlignedMemoryAllocator.h
r243688 r244019 27 27 28 28 #include "AlignedMemoryAllocator.h" 29 #include <wtf/FastBitVector.h> 30 #include <wtf/HashMap.h> 31 #include <wtf/Vector.h> 29 32 30 33 namespace JSC {
Note:
See TracChangeset
for help on using the changeset viewer.