Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(615)

Unified Diff: src/wasm/ast-decoder.h

Issue 2226053002: [wasm] Remove single function JIT support. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Drop test Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/runtime/runtime-wasm.cc ('k') | src/wasm/ast-decoder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/wasm/ast-decoder.h
diff --git a/src/wasm/ast-decoder.h b/src/wasm/ast-decoder.h
index 527bb2e4780ba84bc1bafc547e6ed10431c9abf5..c4f6c1679a0bfb89d6d1b9c9c9197305e25aeca2 100644
--- a/src/wasm/ast-decoder.h
+++ b/src/wasm/ast-decoder.h
@@ -148,16 +148,6 @@ struct CallImportOperand {
}
};
-struct JITSingleFunctionOperand {
- uint32_t sig_index;
- FunctionSig* sig;
- unsigned length;
- inline JITSingleFunctionOperand(Decoder* decoder, const byte* pc) {
- sig_index = decoder->checked_read_u32v(pc, 1, &length, "signature index");
- sig = nullptr;
- }
-};
-
struct BranchTableOperand {
uint32_t arity;
uint32_t table_count;
« no previous file with comments | « src/runtime/runtime-wasm.cc ('k') | src/wasm/ast-decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698