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

Unified Diff: runtime/vm/simulator_dbc.h

Issue 2187423002: DBC: Implement coverage by adding missing count increments to unoptimized static and instance calls. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: . 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
« no previous file with comments | « runtime/tests/vm/vm.status ('k') | runtime/vm/simulator_dbc.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/simulator_dbc.h
diff --git a/runtime/vm/simulator_dbc.h b/runtime/vm/simulator_dbc.h
index 7172bbec869376922deb8a42f781398ac483f364..2cbadce6a11247269b1212849c376399a5e32295 100644
--- a/runtime/vm/simulator_dbc.h
+++ b/runtime/vm/simulator_dbc.h
@@ -127,7 +127,7 @@ class Simulator {
RawObject** call_top,
RawObjectPool** pp,
uint32_t** pc,
- RawObject*** B,
+ RawObject*** FP,
RawObject*** SP);
void InlineCacheMiss(int checked_args,
@@ -136,7 +136,7 @@ class Simulator {
RawObject** call_base,
RawObject** top,
uint32_t* pc,
- RawObject** B, RawObject** SP);
+ RawObject** FP, RawObject** SP);
void InstanceCall1(Thread* thread,
RawICData* icdata,
@@ -145,7 +145,8 @@ class Simulator {
RawArray** argdesc,
RawObjectPool** pp,
uint32_t** pc,
- RawObject*** B, RawObject*** SP);
+ RawObject*** FP, RawObject*** SP,
+ bool optimized);
void InstanceCall2(Thread* thread,
RawICData* icdata,
@@ -154,7 +155,8 @@ class Simulator {
RawArray** argdesc,
RawObjectPool** pp,
uint32_t** pc,
- RawObject*** B, RawObject*** SP);
+ RawObject*** FP, RawObject*** SP,
+ bool optimized);
// Longjmp support for exceptions.
SimulatorSetjmpBuffer* last_setjmp_buffer() {
« no previous file with comments | « runtime/tests/vm/vm.status ('k') | runtime/vm/simulator_dbc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698