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

Unified Diff: runtime/vm/raw_object.h

Issue 1544583002: For background compilation we copy ICData so that it is immutable during comnpilation. However, we … (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: l Created 5 years 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
« runtime/vm/object.cc ('K') | « runtime/vm/pages.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/raw_object.h
diff --git a/runtime/vm/raw_object.h b/runtime/vm/raw_object.h
index df2902c53a5755af9e1c4a80222f1569db585e78..f0949b59187ed5fb4b5960d41a79434eb68198bf 100644
--- a/runtime/vm/raw_object.h
+++ b/runtime/vm/raw_object.h
@@ -1402,7 +1402,7 @@ class RawICData : public RawObject {
RawObject** from() {
return reinterpret_cast<RawObject**>(&ptr()->owner_);
}
- RawFunction* owner_; // Parent/calling function of this IC.
+ RawObject* owner_; // Parent/calling function or original IC of cloned IC.
RawString* target_name_; // Name of target function.
zra 2015/12/21 19:31:47 Maybe un-align the rest of these as well.
srdjan 2015/12/21 20:22:49 Done.
RawArray* args_descriptor_; // Arguments descriptor.
RawArray* ic_data_; // Contains class-ids, target and count.
« runtime/vm/object.cc ('K') | « runtime/vm/pages.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698