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

Unified Diff: src/messages.h

Issue 2137993003: [wasm] Adding feature to JIT a wasm function at runtime and hook up the compiled code into the indi… (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixing unit test- Created 4 years, 5 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
Index: src/messages.h
diff --git a/src/messages.h b/src/messages.h
index dfe88659dd402d1e75b7d94d62f9470bf797662b..aeba83ce72703517adb020774653280680b04c86 100644
--- a/src/messages.h
+++ b/src/messages.h
@@ -492,7 +492,8 @@ class CallSite {
T(WasmTrapFloatUnrepresentable, "integer result unrepresentable") \
T(WasmTrapFuncInvalid, "invalid function") \
T(WasmTrapFuncSigMismatch, "function signature mismatch") \
- T(WasmTrapMemAllocationFail, "failed to allocate memory")
+ T(WasmTrapMemAllocationFail, "failed to allocate memory") \
+ T(WasmTrapInvalidIndex, "invalid index into function table")
titzer 2016/07/14 08:59:43 This is the same condition as TrapFuncInvalid.
ritesht 2016/07/14 18:10:00 The point of this is to draw the distinction betwe
class MessageTemplate {
public:

Powered by Google App Engine
This is Rietveld 408576698