diff options
author | Thomas Lively <tlively@google.com> | 2018-09-20 22:04:44 +0000 |
---|---|---|
committer | Thomas Lively <tlively@google.com> | 2018-09-20 22:04:44 +0000 |
commit | 6f21a136755e5bce0c58a8f0fab56612821390ba (patch) | |
tree | de10d36095130a539991be29371ede750981c958 /llvm/include/llvm/BinaryFormat/Wasm.h | |
parent | b320ca264216cb09d70927792f6f3d04bca7f58b (diff) | |
download | bcm5719-llvm-6f21a136755e5bce0c58a8f0fab56612821390ba.tar.gz bcm5719-llvm-6f21a136755e5bce0c58a8f0fab56612821390ba.zip |
[WebAssembly] Add V128 value type to binary format
Summary: Adds the necessary support to lib/ObjectYAML and fixes SIMD
calls to allow the tests to work. Also removes some dead code that
would otherwise have to have been updated.
Reviewers: aheejin, dschuff, sbc100
Subscribers: jgravelle-google, sunfish, llvm-commits
Differential Revision: https://reviews.llvm.org/D52105
llvm-svn: 342689
Diffstat (limited to 'llvm/include/llvm/BinaryFormat/Wasm.h')
-rw-r--r-- | llvm/include/llvm/BinaryFormat/Wasm.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/include/llvm/BinaryFormat/Wasm.h b/llvm/include/llvm/BinaryFormat/Wasm.h index 20bcb02dfdd..aca56af4514 100644 --- a/llvm/include/llvm/BinaryFormat/Wasm.h +++ b/llvm/include/llvm/BinaryFormat/Wasm.h @@ -191,6 +191,7 @@ enum : unsigned { WASM_TYPE_I64 = 0x7E, WASM_TYPE_F32 = 0x7D, WASM_TYPE_F64 = 0x7C, + WASM_TYPE_V128 = 0x7B, WASM_TYPE_ANYFUNC = 0x70, WASM_TYPE_EXCEPT_REF = 0x68, WASM_TYPE_FUNC = 0x60, @@ -225,6 +226,7 @@ enum class ValType { I64 = WASM_TYPE_I64, F32 = WASM_TYPE_F32, F64 = WASM_TYPE_F64, + V128 = WASM_TYPE_V128, EXCEPT_REF = WASM_TYPE_EXCEPT_REF, }; |