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

Side by Side Diff: src/ia32/codegen-ia32.cc

Issue 8677006: Recommit introducing short external strings. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fixing webkit failures. Created 9 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/heap-inl.h ('k') | src/objects.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after
555 555
556 // Handle external strings. 556 // Handle external strings.
557 Label external_string, ascii_external, done; 557 Label external_string, ascii_external, done;
558 __ bind(&external_string); 558 __ bind(&external_string);
559 if (FLAG_debug_code) { 559 if (FLAG_debug_code) {
560 // Assert that we do not have a cons or slice (indirect strings) here. 560 // Assert that we do not have a cons or slice (indirect strings) here.
561 // Sequential strings have already been ruled out. 561 // Sequential strings have already been ruled out.
562 __ test(result, Immediate(kIsIndirectStringMask)); 562 __ test(result, Immediate(kIsIndirectStringMask));
563 __ Assert(zero, "external string expected, but not found"); 563 __ Assert(zero, "external string expected, but not found");
564 } 564 }
565 // Rule out short external strings.
566 STATIC_CHECK(kShortExternalStringTag != 0);
567 __ test_b(result, kShortExternalStringMask);
Yang 2011/11/23 12:56:05 There is actually no need to reload the instance t
568 __ j(not_zero, call_runtime);
569 // Check encoding.
570 STATIC_ASSERT(kTwoByteStringTag == 0);
571 __ test_b(result, kStringEncodingMask);
565 __ mov(result, FieldOperand(string, ExternalString::kResourceDataOffset)); 572 __ mov(result, FieldOperand(string, ExternalString::kResourceDataOffset));
566 // Assert that the external string has not been finalized yet. 573 __ j(not_equal, &ascii_external, Label::kNear);
567 __ test(result, result);
568 __ j(zero, call_runtime);
569 Register scratch = string;
570 __ mov(scratch, FieldOperand(string, HeapObject::kMapOffset));
571 __ cmp(scratch, Immediate(factory->external_ascii_string_map()));
572 __ j(equal, &ascii_external, Label::kNear);
573 __ cmp(scratch, Immediate(factory->external_ascii_symbol_map()));
574 __ j(equal, &ascii_external, Label::kNear);
575 // Two-byte string. 574 // Two-byte string.
576 __ movzx_w(result, Operand(result, index, times_2, 0)); 575 __ movzx_w(result, Operand(result, index, times_2, 0));
577 __ jmp(&done); 576 __ jmp(&done);
578 __ bind(&ascii_external); 577 __ bind(&ascii_external);
579 // Ascii string. 578 // Ascii string.
580 __ movzx_b(result, Operand(result, index, times_1, 0)); 579 __ movzx_b(result, Operand(result, index, times_1, 0));
581 __ jmp(&done); 580 __ jmp(&done);
582 581
583 // Handle conses. 582 // Handle conses.
584 // Check whether the right hand side is the empty string (i.e. if 583 // Check whether the right hand side is the empty string (i.e. if
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
629 times_1, 628 times_1,
630 SeqAsciiString::kHeaderSize)); 629 SeqAsciiString::kHeaderSize));
631 __ bind(&done); 630 __ bind(&done);
632 } 631 }
633 632
634 #undef __ 633 #undef __
635 634
636 } } // namespace v8::internal 635 } } // namespace v8::internal
637 636
638 #endif // V8_TARGET_ARCH_IA32 637 #endif // V8_TARGET_ARCH_IA32
OLDNEW
« no previous file with comments | « src/heap-inl.h ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698