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

Unified Diff: src/arm/macro-assembler-arm.cc

Issue 11099064: Remove descriptors pointer. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed nits Created 8 years, 2 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 | « no previous file | src/ia32/macro-assembler-ia32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/arm/macro-assembler-arm.cc
diff --git a/src/arm/macro-assembler-arm.cc b/src/arm/macro-assembler-arm.cc
index 1f6ec65e71121648692121907c2ea7bb4ce576e0..b74d09deaa6aef8e9c06fc7290f2be6636f1d405 100644
--- a/src/arm/macro-assembler-arm.cc
+++ b/src/arm/macro-assembler-arm.cc
@@ -3727,8 +3727,7 @@ void MacroAssembler::LoadInstanceDescriptors(Register map,
isolate()->factory()->fixed_array_map(),
&fail,
DONT_DO_SMI_CHECK);
- ldr(temp, FieldMemOperand(temp, TransitionArray::kDescriptorsPointerOffset));
- ldr(descriptors, FieldMemOperand(temp, JSGlobalPropertyCell::kValueOffset));
+ ldr(descriptors, FieldMemOperand(temp, TransitionArray::kDescriptorsOffset));
jmp(&ok);
bind(&fail);
@@ -3739,8 +3738,7 @@ void MacroAssembler::LoadInstanceDescriptors(Register map,
bind(&load_from_back_pointer);
ldr(temp, FieldMemOperand(temp, Map::kTransitionsOrBackPointerOffset));
- ldr(temp, FieldMemOperand(temp, TransitionArray::kDescriptorsPointerOffset));
- ldr(descriptors, FieldMemOperand(temp, JSGlobalPropertyCell::kValueOffset));
+ ldr(descriptors, FieldMemOperand(temp, TransitionArray::kDescriptorsOffset));
bind(&ok);
}
« no previous file with comments | « no previous file | src/ia32/macro-assembler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698