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

Unified Diff: runtime/vm/assembler_arm.h

Issue 12518016: Decode ic data and arguments descriptor passed in calls on ARM. (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
« no previous file with comments | « runtime/tests/vm/vm.status ('k') | runtime/vm/assembler_arm.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/assembler_arm.h
===================================================================
--- runtime/vm/assembler_arm.h (revision 19826)
+++ runtime/vm/assembler_arm.h (working copy)
@@ -532,7 +532,7 @@
void BranchLinkStore(const ExternalLabel* label, Address ad);
// Branch and link to [base + offset]. Call sequence is never patched.
- void BranchLinkOffset(Register base, int offset);
+ void BranchLinkOffset(Register base, int32_t offset);
// Add signed immediate value to rd. May clobber IP.
void AddImmediate(Register rd, int32_t value, Condition cond = AL);
@@ -555,6 +555,7 @@
void Drop(intptr_t stack_elements);
void LoadObject(Register rd, const Object& object);
void PushObject(const Object& object);
+ void LoadWordFromPoolOffset(Register rd, int32_t offset);
void LoadFromOffset(LoadOperandType type,
Register reg,
Register base,
@@ -681,7 +682,7 @@
Register rd,
ShifterOperand so);
- void EmitType5(Condition cond, int offset, bool link);
+ void EmitType5(Condition cond, int32_t offset, bool link);
void EmitMemOp(Condition cond,
bool load,
@@ -762,9 +763,9 @@
SRegister sm);
void EmitBranch(Condition cond, Label* label, bool link);
- static int32_t EncodeBranchOffset(int offset, int32_t inst);
+ static int32_t EncodeBranchOffset(int32_t offset, int32_t inst);
static int DecodeBranchOffset(int32_t inst);
- int32_t EncodeTstOffset(int offset, int32_t inst);
+ int32_t EncodeTstOffset(int32_t offset, int32_t inst);
int DecodeTstOffset(int32_t inst);
// Returns whether or not the given register is used for passing parameters.
« no previous file with comments | « runtime/tests/vm/vm.status ('k') | runtime/vm/assembler_arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698