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

Unified Diff: src/interpreter/bytecodes.h

Issue 2882973002: [coverage] Block coverage with support for IfStatements (Closed)
Patch Set: Comment nit Created 3 years, 7 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/interpreter/bytecodes.h
diff --git a/src/interpreter/bytecodes.h b/src/interpreter/bytecodes.h
index be3e3c49e389fe38f1679679f755dc2e0b37499b..4505fda035057df4be5d5a5b9a12b534d59840f0 100644
--- a/src/interpreter/bytecodes.h
+++ b/src/interpreter/bytecodes.h
@@ -332,6 +332,9 @@ namespace interpreter {
V(DebugBreakWide, AccumulatorUse::kRead) \
V(DebugBreakExtraWide, AccumulatorUse::kRead) \
\
+ /* Block Coverage */ \
+ V(IncBlockCounter, AccumulatorUse::kNone, OperandType::kImm) \
rmcilroy 2017/05/18 14:17:59 use kIdx if these are unsigned (will give more ran
jgruber 2017/05/22 09:43:32 Done.
+ \
/* Illegal bytecode (terminates execution) */ \
V(Illegal, AccumulatorUse::kNone) \
\

Powered by Google App Engine
This is Rietveld 408576698