forked from WebKit/WebKit-http
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WebAssembly: handle a few corner cases
https://bugs.webkit.org/show_bug.cgi?id=162884 Reviewed by Keith Miller. JSTests: * stress/wasm/generate-wasmops-header.js: (const.opcodeIterator): max opcode value Source/JavaScriptCore: * wasm/JSWASMModule.cpp: missing include broke cmake build * wasm/WASMFunctionParser.h: (JSC::WASM::FunctionParser<Context>::parseBlock): check op is valid (JSC::WASM::FunctionParser<Context>::parseExpression): switch covers all cases * wasm/WASMOps.h: (JSC::WASM::isValidOpType): op is valid * wasm/WASMParser.h: (JSC::WASM::Parser::consumeString): avoid str[i] being one-past-the-end (JSC::WASM::Parser::parseUInt32): shift math around to avoid overflow git-svn-id: http://svn.webkit.org/repository/webkit/trunk@206794 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
1 parent
852b413
commit ade1810
Showing
7 changed files
with
71 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
2016-10-04 JF Bastien <[email protected]> | ||
|
||
WebAssembly: handle a few corner cases | ||
https://bugs.webkit.org/show_bug.cgi?id=162884 | ||
|
||
Reviewed by Keith Miller. | ||
|
||
* stress/wasm/generate-wasmops-header.js: | ||
(const.opcodeIterator): max opcode value | ||
|
||
2016-10-03 JF Bastien <[email protected]> | ||
|
||
Auto-generate WASMOps.h, share with testing JSON file | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,20 @@ | ||
2016-10-04 JF Bastien <[email protected]> | ||
|
||
WebAssembly: handle a few corner cases | ||
https://bugs.webkit.org/show_bug.cgi?id=162884 | ||
|
||
Reviewed by Keith Miller. | ||
|
||
* wasm/JSWASMModule.cpp: missing include broke cmake build | ||
* wasm/WASMFunctionParser.h: | ||
(JSC::WASM::FunctionParser<Context>::parseBlock): check op is valid | ||
(JSC::WASM::FunctionParser<Context>::parseExpression): switch covers all cases | ||
* wasm/WASMOps.h: | ||
(JSC::WASM::isValidOpType): op is valid | ||
* wasm/WASMParser.h: | ||
(JSC::WASM::Parser::consumeString): avoid str[i] being one-past-the-end | ||
(JSC::WASM::Parser::parseUInt32): shift math around to avoid overflow | ||
|
||
2016-10-04 Yusuke Suzuki <[email protected]> | ||
|
||
REGRESSION (r206778): Release JSC test ChakraCore.yaml/ChakraCore/test/Error/validate_line_column.js.default failing | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters