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

Unified Diff: runtime/vm/instructions_mips.h

Issue 12703028: Adds Stop to MIPS. Starts on MIPS call patcher. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 9 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: runtime/vm/instructions_mips.h
===================================================================
--- runtime/vm/instructions_mips.h (revision 20500)
+++ runtime/vm/instructions_mips.h (working copy)
@@ -19,14 +19,21 @@
public:
CallPattern(uword pc, const Code& code);
+ RawICData* IcData();
+ RawArray* ArgumentsDescriptor();
+
uword TargetAddress() const;
void SetTargetAddress(uword target_address) const;
private:
uword Back(int n) const;
- int DecodePoolIndex();
+ int DecodeLoadWordFromPool(int end, Register* reg, int* index);
const uword* end_;
- const int pool_index_;
+ int target_address_pool_index_;
+ int args_desc_load_end_;
+ int args_desc_pool_index_;
+ int ic_data_load_end_;
+ int ic_data_pool_index_;
const Array& object_pool_;
DISALLOW_COPY_AND_ASSIGN(CallPattern);

Powered by Google App Engine
This is Rietveld 408576698