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

Side by Side Diff: src/regexp/regexp-macro-assembler.cc

Issue 2627893002: Version 5.7.436.1 (cherry-pick) (Closed)
Patch Set: Created 3 years, 11 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 unified diff | Download patch
« no previous file with comments | « src/profiler/heap-snapshot-generator.cc ('k') | src/runtime/runtime-i18n.cc » ('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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/regexp/regexp-macro-assembler.h" 5 #include "src/regexp/regexp-macro-assembler.h"
6 6
7 #include "src/assembler.h" 7 #include "src/assembler.h"
8 #include "src/isolate-inl.h" 8 #include "src/isolate-inl.h"
9 #include "src/regexp/regexp-stack.h" 9 #include "src/regexp/regexp-stack.h"
10 #include "src/simulator.h" 10 #include "src/simulator.h"
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 } 126 }
127 127
128 const byte* NativeRegExpMacroAssembler::StringCharacterPosition( 128 const byte* NativeRegExpMacroAssembler::StringCharacterPosition(
129 String* subject, 129 String* subject,
130 int start_index) { 130 int start_index) {
131 if (subject->IsConsString()) { 131 if (subject->IsConsString()) {
132 subject = ConsString::cast(subject)->first(); 132 subject = ConsString::cast(subject)->first();
133 } else if (subject->IsSlicedString()) { 133 } else if (subject->IsSlicedString()) {
134 start_index += SlicedString::cast(subject)->offset(); 134 start_index += SlicedString::cast(subject)->offset();
135 subject = SlicedString::cast(subject)->parent(); 135 subject = SlicedString::cast(subject)->parent();
136 } else if (subject->IsThinString()) {
137 subject = ThinString::cast(subject)->actual();
138 } 136 }
139 DCHECK(start_index >= 0); 137 DCHECK(start_index >= 0);
140 DCHECK(start_index <= subject->length()); 138 DCHECK(start_index <= subject->length());
141 if (subject->IsSeqOneByteString()) { 139 if (subject->IsSeqOneByteString()) {
142 return reinterpret_cast<const byte*>( 140 return reinterpret_cast<const byte*>(
143 SeqOneByteString::cast(subject)->GetChars() + start_index); 141 SeqOneByteString::cast(subject)->GetChars() + start_index);
144 } else if (subject->IsSeqTwoByteString()) { 142 } else if (subject->IsSeqTwoByteString()) {
145 return reinterpret_cast<const byte*>( 143 return reinterpret_cast<const byte*>(
146 SeqTwoByteString::cast(subject)->GetChars() + start_index); 144 SeqTwoByteString::cast(subject)->GetChars() + start_index);
147 } else if (subject->IsExternalOneByteString()) { 145 } else if (subject->IsExternalOneByteString()) {
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 // The string has been flattened, so if it is a cons string it contains the 232 // The string has been flattened, so if it is a cons string it contains the
235 // full string in the first part. 233 // full string in the first part.
236 if (StringShape(subject_ptr).IsCons()) { 234 if (StringShape(subject_ptr).IsCons()) {
237 DCHECK_EQ(0, ConsString::cast(subject_ptr)->second()->length()); 235 DCHECK_EQ(0, ConsString::cast(subject_ptr)->second()->length());
238 subject_ptr = ConsString::cast(subject_ptr)->first(); 236 subject_ptr = ConsString::cast(subject_ptr)->first();
239 } else if (StringShape(subject_ptr).IsSliced()) { 237 } else if (StringShape(subject_ptr).IsSliced()) {
240 SlicedString* slice = SlicedString::cast(subject_ptr); 238 SlicedString* slice = SlicedString::cast(subject_ptr);
241 subject_ptr = slice->parent(); 239 subject_ptr = slice->parent();
242 slice_offset = slice->offset(); 240 slice_offset = slice->offset();
243 } 241 }
244 if (StringShape(subject_ptr).IsThin()) {
245 subject_ptr = ThinString::cast(subject_ptr)->actual();
246 }
247 // Ensure that an underlying string has the same representation. 242 // Ensure that an underlying string has the same representation.
248 bool is_one_byte = subject_ptr->IsOneByteRepresentation(); 243 bool is_one_byte = subject_ptr->IsOneByteRepresentation();
249 DCHECK(subject_ptr->IsExternalString() || subject_ptr->IsSeqString()); 244 DCHECK(subject_ptr->IsExternalString() || subject_ptr->IsSeqString());
250 // String is now either Sequential or External 245 // String is now either Sequential or External
251 int char_size_shift = is_one_byte ? 0 : 1; 246 int char_size_shift = is_one_byte ? 0 : 1;
252 247
253 const byte* input_start = 248 const byte* input_start =
254 StringCharacterPosition(subject_ptr, start_offset + slice_offset); 249 StringCharacterPosition(subject_ptr, start_offset + slice_offset);
255 int byte_length = char_length << char_size_shift; 250 int byte_length = char_length << char_size_shift;
256 const byte* input_end = input_start + byte_length; 251 const byte* input_end = input_start + byte_length;
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 } 347 }
353 *stack_base = new_stack_base; 348 *stack_base = new_stack_base;
354 intptr_t stack_content_size = old_stack_base - stack_pointer; 349 intptr_t stack_content_size = old_stack_base - stack_pointer;
355 return new_stack_base - stack_content_size; 350 return new_stack_base - stack_content_size;
356 } 351 }
357 352
358 #endif // V8_INTERPRETED_REGEXP 353 #endif // V8_INTERPRETED_REGEXP
359 354
360 } // namespace internal 355 } // namespace internal
361 } // namespace v8 356 } // namespace v8
OLDNEW
« no previous file with comments | « src/profiler/heap-snapshot-generator.cc ('k') | src/runtime/runtime-i18n.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698