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

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

Issue 11352: * Match literals in a case independent way.... (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
« no previous file with comments | « src/regexp-macro-assembler.h ('k') | src/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 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 CheckNotCharacter(uc16 c, Label* on_not_equal); 56 virtual void CheckNotCharacter(uc16 c, Label* on_not_equal);
57 virtual void CheckNotCharacterAfterOr(uc16 c, uc16 mask, Label* on_not_equal);
58 virtual void CheckNotCharacterAfterMinusOr(uc16 c,
59 uc16 mask,
60 Label* on_not_equal);
57 virtual void DispatchByteMap(uc16 start, 61 virtual void DispatchByteMap(uc16 start,
58 Label* byte_map, 62 Label* byte_map,
59 const Vector<Label*>& destinations); 63 const Vector<Label*>& destinations);
60 virtual void DispatchHalfNibbleMap(uc16 start, 64 virtual void DispatchHalfNibbleMap(uc16 start,
61 Label* half_nibble_map, 65 Label* half_nibble_map,
62 const Vector<Label*>& destinations); 66 const Vector<Label*>& destinations);
63 virtual void DispatchHighByteMap(byte start, 67 virtual void DispatchHighByteMap(byte start,
64 Label* byte_map, 68 Label* byte_map,
65 const Vector<Label*>& destinations); 69 const Vector<Label*>& destinations);
66 virtual void EmitOrLink(Label* label); 70 virtual void EmitOrLink(Label* label);
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 Label success_label_; 153 Label success_label_;
150 Label exit_label_; 154 Label exit_label_;
151 // Handle used to represent the generated code object itself. 155 // Handle used to represent the generated code object itself.
152 Handle<Object> self_; 156 Handle<Object> self_;
153 }; 157 };
154 }} 158 }}
155 159
156 #endif // !ARM 160 #endif // !ARM
157 161
158 #endif /* REGEXP_MACRO_ASSEMBLER_IA32_H_ */ 162 #endif /* REGEXP_MACRO_ASSEMBLER_IA32_H_ */
OLDNEW
« no previous file with comments | « src/regexp-macro-assembler.h ('k') | src/regexp-macro-assembler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698