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

Side by Side Diff: src/ia32/regexp-macro-assembler-ia32.h

Issue 507051: Attempt to make \b\w+ faster. Slight performance increase on, e.g., string unpacking. (Closed)
Patch Set: Addressed review comments. Created 10 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/heap.cc ('k') | src/ia32/regexp-macro-assembler-ia32.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 2008-2009 the V8 project authors. All rights reserved. 1 // Copyright 2008-2009 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 virtual void CheckNotCharacterAfterAnd(uint32_t c, 71 virtual void CheckNotCharacterAfterAnd(uint32_t c,
72 uint32_t mask, 72 uint32_t mask,
73 Label* on_not_equal); 73 Label* on_not_equal);
74 virtual void CheckNotCharacterAfterMinusAnd(uc16 c, 74 virtual void CheckNotCharacterAfterMinusAnd(uc16 c,
75 uc16 minus, 75 uc16 minus,
76 uc16 mask, 76 uc16 mask,
77 Label* on_not_equal); 77 Label* on_not_equal);
78 // Checks whether the given offset from the current position is before 78 // Checks whether the given offset from the current position is before
79 // the end of the string. 79 // the end of the string.
80 virtual void CheckPosition(int cp_offset, Label* on_outside_input); 80 virtual void CheckPosition(int cp_offset, Label* on_outside_input);
81 virtual bool CheckSpecialCharacterClass(uc16 type, 81 virtual bool CheckSpecialCharacterClass(uc16 type, Label* on_no_match);
82 int cp_offset,
83 bool check_offset,
84 Label* on_no_match);
85 virtual void Fail(); 82 virtual void Fail();
86 virtual Handle<Object> GetCode(Handle<String> source); 83 virtual Handle<Object> GetCode(Handle<String> source);
87 virtual void GoTo(Label* label); 84 virtual void GoTo(Label* label);
88 virtual void IfRegisterGE(int reg, int comparand, Label* if_ge); 85 virtual void IfRegisterGE(int reg, int comparand, Label* if_ge);
89 virtual void IfRegisterLT(int reg, int comparand, Label* if_lt); 86 virtual void IfRegisterLT(int reg, int comparand, Label* if_lt);
90 virtual void IfRegisterEqPos(int reg, Label* if_eq); 87 virtual void IfRegisterEqPos(int reg, Label* if_eq);
91 virtual IrregexpImplementation Implementation(); 88 virtual IrregexpImplementation Implementation();
92 virtual void LoadCurrentCharacter(int cp_offset, 89 virtual void LoadCurrentCharacter(int cp_offset,
93 Label* on_end_of_input, 90 Label* on_end_of_input,
94 bool check_bounds = true, 91 bool check_bounds = true,
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 Label backtrack_label_; 220 Label backtrack_label_;
224 Label exit_label_; 221 Label exit_label_;
225 Label check_preempt_label_; 222 Label check_preempt_label_;
226 Label stack_overflow_label_; 223 Label stack_overflow_label_;
227 }; 224 };
228 #endif // V8_NATIVE_REGEXP 225 #endif // V8_NATIVE_REGEXP
229 226
230 }} // namespace v8::internal 227 }} // namespace v8::internal
231 228
232 #endif // V8_IA32_REGEXP_MACRO_ASSEMBLER_IA32_H_ 229 #endif // V8_IA32_REGEXP_MACRO_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « src/heap.cc ('k') | src/ia32/regexp-macro-assembler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698