summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/WebAssembly/integer32.ll
Commit message (Collapse)AuthorAgeFilesLines
* [WebAssembly] Rename test files to match platform naming conventions.Dan Gohman2015-09-291-203/+0
| | | | llvm-svn: 248783
* WebAssembly: NFC rename shr/sarJF Bastien2015-09-081-2/+2
| | | | | | Renamed from: https://github.com/WebAssembly/design/pull/332 llvm-svn: 247028
* WebAssembly: emit `(func (param t) (result t))` s-expressionsJF Bastien2015-08-251-18/+36
| | | | | | | | | | | | Summary: Match spec format: https://github.com/WebAssembly/spec/blob/master/ml-proto/test/fac.wasm Reviewers: sunfish Subscribers: llvm-commits, jfb Differential Revision: http://reviews.llvm.org/D12307 llvm-svn: 245986
* [WebAssembly] Implement the is_zero_undef forms of cttz and ctlzDan Gohman2015-08-241-0/+18
| | | | llvm-svn: 245851
* [WebAssembly] Use the default alignment for SIMD types.Dan Gohman2015-08-191-1/+1
| | | | | | | | | Previously WebAssembly's datalayout string had -v128:8:128. This had been an attempt to declare a certain level of support for unaligned SIMD accesses. However, clang makes its own determinations for SIMD alignment that are independent of the datalayout string, so this wasn't actually meaningful. llvm-svn: 245494
* WebAssembly: textual emission uses expected opcode namesJF Bastien2015-08-071-16/+16
| | | | | | | | | | | | Summary: WebAssembly's tablegen instructions have the names WebAssembly expects, but by LLVM convention they're uppercase and suffixed with their type after an underscore. Leave the C++ code that way, but print outt he names WebAssembly expects (lowercase, no type). We could teach tablegen to do this later, maybe by using `!cast<string>(node)` in the .td files. Reviewers: sunfish Subscribers: jfb, llvm-commits Differential Revision: http://reviews.llvm.org/D11776 llvm-svn: 244305
* WebAssembly: handle more than int32 argument/returnJF Bastien2015-08-011-0/+167
Summary: Also test 64-bit integers, except shifts for now which are broken because isel dislikes the 32-bit truncate that precedes them. Reviewers: sunfish Subscribers: llvm-commits, jfb Differential Revision: http://reviews.llvm.org/D11699 llvm-svn: 243822
OpenPOWER on IntegriCloud