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

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

Issue 12406: Case independent back references. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/regexp2000/
Patch Set: Created 12 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
OLDNEW
1 // Copyright 2008 the V8 project authors. All rights reserved. 1 // Copyright 2008 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 virtual void Bind(Label* label); 46 virtual void Bind(Label* label);
47 virtual void CheckBitmap(uc16 start, Label* bitmap, Label* on_zero); 47 virtual void CheckBitmap(uc16 start, Label* bitmap, Label* on_zero);
48 virtual void CheckCharacter(uc16 c, Label* on_equal); 48 virtual void CheckCharacter(uc16 c, Label* on_equal);
49 virtual void CheckCharacterGT(uc16 limit, Label* on_greater); 49 virtual void CheckCharacterGT(uc16 limit, Label* on_greater);
50 virtual void CheckCharacterLT(uc16 limit, Label* on_less); 50 virtual void CheckCharacterLT(uc16 limit, Label* on_less);
51 virtual void CheckCharacters(Vector<const uc16> str, 51 virtual void CheckCharacters(Vector<const uc16> str,
52 int cp_offset, 52 int cp_offset,
53 Label* on_failure); 53 Label* on_failure);
54 virtual void CheckCurrentPosition(int register_index, Label* on_equal); 54 virtual void CheckCurrentPosition(int register_index, Label* on_equal);
55 virtual void CheckNotBackReference(int start_reg, Label* on_no_match); 55 virtual void CheckNotBackReference(int start_reg, Label* on_no_match);
56 virtual void CheckNotBackReferenceCaseIndependent(int start_reg,
57 Label* on_no_match);
56 virtual void CheckNotCharacter(uc16 c, Label* on_not_equal); 58 virtual void CheckNotCharacter(uc16 c, Label* on_not_equal);
57 virtual void CheckNotCharacterAfterOr(uc16 c, uc16 mask, Label* on_not_equal); 59 virtual void CheckNotCharacterAfterOr(uc16 c, uc16 mask, Label* on_not_equal);
58 virtual void CheckNotCharacterAfterMinusOr(uc16 c, 60 virtual void CheckNotCharacterAfterMinusOr(uc16 c,
59 uc16 mask, 61 uc16 mask,
60 Label* on_not_equal); 62 Label* on_not_equal);
61 virtual void DispatchByteMap(uc16 start, 63 virtual void DispatchByteMap(uc16 start,
62 Label* byte_map, 64 Label* byte_map,
63 const Vector<Label*>& destinations); 65 const Vector<Label*>& destinations);
64 virtual void DispatchHalfNibbleMap(uc16 start, 66 virtual void DispatchHalfNibbleMap(uc16 start,
65 Label* half_nibble_map, 67 Label* half_nibble_map,
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 Label success_label_; 155 Label success_label_;
154 Label exit_label_; 156 Label exit_label_;
155 // Handle used to represent the generated code object itself. 157 // Handle used to represent the generated code object itself.
156 Handle<Object> self_; 158 Handle<Object> self_;
157 }; 159 };
158 }} 160 }}
159 161
160 #endif // !ARM 162 #endif // !ARM
161 163
162 #endif /* REGEXP_MACRO_ASSEMBLER_IA32_H_ */ 164 #endif /* REGEXP_MACRO_ASSEMBLER_IA32_H_ */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698