Changeset 246266 in webkit
- Timestamp:
- Jun 10, 2019, 10:16:18 AM (7 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 16 edited
-
ChangeLog (modified) (1 diff)
-
b3/B3AtomicValue.cpp (modified) (1 diff)
-
b3/B3BlockInsertionSet.cpp (modified) (1 diff)
-
b3/B3FenceValue.cpp (modified) (1 diff)
-
b3/B3LowerMacrosAfterOptimizations.cpp (modified) (1 diff)
-
b3/B3PureCSE.cpp (modified) (1 diff)
-
b3/B3StackmapValue.cpp (modified) (1 diff)
-
b3/B3SwitchValue.cpp (modified) (1 diff)
-
b3/B3UseCounts.cpp (modified) (1 diff)
-
b3/B3VariableValue.cpp (modified) (1 diff)
-
b3/B3WasmAddressValue.cpp (modified) (1 diff)
-
b3/B3WasmBoundsCheckValue.cpp (modified) (1 diff)
-
ftl/FTLCompile.cpp (modified) (1 diff)
-
wasm/WasmSectionParser.cpp (modified) (1 diff)
-
wasm/WasmTable.cpp (modified) (1 diff)
-
wasm/WasmValidate.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r246265 r246266 1 2019-06-10 Adrian Perez de Castro <aperez@igalia.com> 2 3 [JSC] Linker fails when unified sources are not in use 4 https://bugs.webkit.org/show_bug.cgi?id=198722 5 6 Reviewed by Keith Miller. 7 8 Added missing inclusions of headers in several files which make use of inline functions. 9 10 * b3/B3AtomicValue.cpp: 11 * b3/B3BlockInsertionSet.cpp: 12 * b3/B3FenceValue.cpp: 13 * b3/B3LowerMacrosAfterOptimizations.cpp: 14 * b3/B3PureCSE.cpp: 15 * b3/B3StackmapValue.cpp: 16 * b3/B3SwitchValue.cpp: 17 * b3/B3UseCounts.cpp: 18 * b3/B3VariableValue.cpp: 19 * b3/B3WasmAddressValue.cpp: 20 * b3/B3WasmBoundsCheckValue.cpp: 21 * ftl/FTLCompile.cpp: 22 * wasm/WasmSectionParser.cpp: 23 * wasm/WasmTable.cpp: 24 * wasm/WasmValidate.cpp: 25 1 26 2019-06-10 Keith Miller <keith_miller@apple.com> 2 27 -
trunk/Source/JavaScriptCore/b3/B3AtomicValue.cpp
r244309 r246266 26 26 #include "config.h" 27 27 #include "B3AtomicValue.h" 28 #include "B3ValueInlines.h" 28 29 29 30 #if ENABLE(B3_JIT) -
trunk/Source/JavaScriptCore/b3/B3BlockInsertionSet.cpp
r213714 r246266 32 32 #include "B3InsertionSet.h" 33 33 #include "B3ProcedureInlines.h" 34 #include "B3ValueInlines.h" 34 35 #include <wtf/BubbleSort.h> 35 36 -
trunk/Source/JavaScriptCore/b3/B3FenceValue.cpp
r244309 r246266 26 26 #include "config.h" 27 27 #include "B3FenceValue.h" 28 #include "B3ValueInlines.h" 28 29 29 30 #if ENABLE(B3_JIT) -
trunk/Source/JavaScriptCore/b3/B3LowerMacrosAfterOptimizations.cpp
r230098 r246266 38 38 #include "B3InsertionSetInlines.h" 39 39 #include "B3PhaseScope.h" 40 #include "B3ValueInlines.h" 40 41 41 42 namespace JSC { namespace B3 { -
trunk/Source/JavaScriptCore/b3/B3PureCSE.cpp
r245035 r246266 32 32 #include "B3PhaseScope.h" 33 33 #include "B3Value.h" 34 #include "B3ValueInlines.h" 34 35 35 36 namespace JSC { namespace B3 { -
trunk/Source/JavaScriptCore/b3/B3StackmapValue.cpp
r244309 r246266 26 26 #include "config.h" 27 27 #include "B3StackmapValue.h" 28 #include "B3ValueInlines.h" 28 29 29 30 #if ENABLE(B3_JIT) -
trunk/Source/JavaScriptCore/b3/B3SwitchValue.cpp
r244309 r246266 30 30 31 31 #include "B3BasicBlockInlines.h" 32 #include "B3ValueInlines.h" 32 33 #include <wtf/ListDump.h> 33 34 -
trunk/Source/JavaScriptCore/b3/B3UseCounts.cpp
r219702 r246266 30 30 31 31 #include "B3Procedure.h" 32 #include "B3ValueInlines.h" 32 33 33 34 namespace JSC { namespace B3 { -
trunk/Source/JavaScriptCore/b3/B3VariableValue.cpp
r244309 r246266 29 29 #if ENABLE(B3_JIT) 30 30 31 #include "B3ValueInlines.h" 31 32 #include "B3Variable.h" 32 33 -
trunk/Source/JavaScriptCore/b3/B3WasmAddressValue.cpp
r244309 r246266 29 29 #if ENABLE(B3_JIT) 30 30 31 #include "B3ValueInlines.h" 32 31 33 namespace JSC { namespace B3 { 32 34 -
trunk/Source/JavaScriptCore/b3/B3WasmBoundsCheckValue.cpp
r244309 r246266 29 29 30 30 #if ENABLE(B3_JIT) 31 32 #include "B3ValueInlines.h" 31 33 32 34 namespace JSC { namespace B3 { -
trunk/Source/JavaScriptCore/ftl/FTLCompile.cpp
r244811 r246266 35 35 #include "B3StackSlot.h" 36 36 #include "B3Value.h" 37 #include "B3ValueInlines.h" 37 38 #include "CodeBlockWithJITType.h" 38 39 #include "CCallHelpers.h" -
trunk/Source/JavaScriptCore/wasm/WasmSectionParser.cpp
r246139 r246266 31 31 32 32 #include "IdentifierInlines.h" 33 #include "JSCJSValueInlines.h" 33 34 #include "WasmMemoryInformation.h" 34 35 #include "WasmNameSectionParser.h" -
trunk/Source/JavaScriptCore/wasm/WasmTable.cpp
r246139 r246266 29 29 #if ENABLE(WEBASSEMBLY) 30 30 31 #include "JSCJSValueInlines.h" 31 32 #include <wtf/CheckedArithmetic.h> 32 33 #include <wtf/StdLibExtras.h> -
trunk/Source/JavaScriptCore/wasm/WasmValidate.cpp
r246139 r246266 29 29 #if ENABLE(WEBASSEMBLY) 30 30 31 #include "JSCJSValueInlines.h" 31 32 #include "WasmFunctionParser.h" 32 33 #include <wtf/CommaPrinter.h>
Note:
See TracChangeset
for help on using the changeset viewer.