[PATCH] D11546: WebAssembly: add a generic CPU

JF Bastien jfb at chromium.org
Mon Jul 27 16:26:19 PDT 2015


This revision was automatically updated to reflect the committed changes.
Closed by commit rL243345: WebAssembly: add a generic CPU (authored by jfb).

Changed prior to commit:
  http://reviews.llvm.org/D11546?vs=30762&id=30763#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D11546

Files:
  llvm/trunk/lib/Target/WebAssembly/WebAssembly.td
  llvm/trunk/test/CodeGen/WebAssembly/cpus.ll

Index: llvm/trunk/lib/Target/WebAssembly/WebAssembly.td
===================================================================
--- llvm/trunk/lib/Target/WebAssembly/WebAssembly.td
+++ llvm/trunk/lib/Target/WebAssembly/WebAssembly.td
@@ -50,6 +50,9 @@
 // Minimal Viable Product.
 def : ProcessorModel<"mvp", NoSchedModel, []>;
 
+// Generic processor: latest stable version.
+def : ProcessorModel<"generic", NoSchedModel, []>;
+
 // Latest and greatest experimental version of WebAssembly. Bugs included!
 def : ProcessorModel<"bleeding-edge", NoSchedModel, [FeatureSIMD128]>;
 
Index: llvm/trunk/test/CodeGen/WebAssembly/cpus.ll
===================================================================
--- llvm/trunk/test/CodeGen/WebAssembly/cpus.ll
+++ llvm/trunk/test/CodeGen/WebAssembly/cpus.ll
@@ -2,6 +2,8 @@
 
 ; RUN: llc < %s -mtriple=wasm32-unknown-unknown -mcpu=mvp 2>&1 | FileCheck %s
 ; RUN: llc < %s -mtriple=wasm64-unknown-unknown -mcpu=mvp 2>&1 | FileCheck %s
+; RUN: llc < %s -mtriple=wasm32-unknown-unknown -mcpu=generic 2>&1 | FileCheck %s
+; RUN: llc < %s -mtriple=wasm64-unknown-unknown -mcpu=generic 2>&1 | FileCheck %s
 ; RUN: llc < %s -mtriple=wasm32-unknown-unknown -mcpu=bleeding-edge 2>&1 | FileCheck %s
 ; RUN: llc < %s -mtriple=wasm64-unknown-unknown -mcpu=bleeding-edge 2>&1 | FileCheck %s
 ; RUN: llc < %s -mtriple=wasm32-unknown-unknown -mcpu=invalidcpu 2>&1 | FileCheck %s --check-prefix=INVALID


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D11546.30763.patch
Type: text/x-patch
Size: 1420 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20150727/1dbd415f/attachment.bin>


More information about the llvm-commits mailing list