Index: src/x64/full-codegen-x64.cc |
=================================================================== |
--- src/x64/full-codegen-x64.cc (revision 5357) |
+++ src/x64/full-codegen-x64.cc (working copy) |
@@ -2597,6 +2597,40 @@ |
} |
+void FullCodeGenerator::EmitHasCachedArrayIndex(ZoneList<Expression*>* args) { |
+ ASSERT(args->length() == 1); |
+ |
+ VisitForValue(args->at(0), kAccumulator); |
+ |
+ Label materialize_true, materialize_false; |
+ Label* if_true = NULL; |
+ Label* if_false = NULL; |
+ Label* fall_through = NULL; |
+ PrepareTest(&materialize_true, &materialize_false, |
+ &if_true, &if_false, &fall_through); |
+ |
+ __ testl(FieldOperand(rax, String::kHashFieldOffset), |
+ Immediate(String::kContainsCachedArrayIndexMask)); |
+ __ j(zero, if_true); |
+ __ jmp(if_false); |
+ |
+ Apply(context_, if_true, if_false); |
+} |
+ |
+ |
+void FullCodeGenerator::EmitGetCachedArrayIndex(ZoneList<Expression*>* args) { |
+ ASSERT(args->length() == 1); |
+ |
+ VisitForValue(args->at(0), kAccumulator); |
+ |
+ __ movl(rax, FieldOperand(rax, String::kHashFieldOffset)); |
+ ASSERT(String::kHashShift >= kSmiTagSize); |
+ __ IndexFromHash(rax, rax); |
+ |
+ Apply(context_, rax); |
+} |
+ |
+ |
void FullCodeGenerator::VisitCallRuntime(CallRuntime* expr) { |
Handle<String> name = expr->name(); |
if (name->length() > 0 && name->Get(0) == '_') { |