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

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

Issue 10998: Add an operation that checks whether we are at the start of the string. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 12 years 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 virtual void Backtrack(); 42 virtual void Backtrack();
43 virtual void Bind(Label* label); 43 virtual void Bind(Label* label);
44 virtual void CheckBitmap(uc16 start, Label* bitmap, Label* on_zero); 44 virtual void CheckBitmap(uc16 start, Label* bitmap, Label* on_zero);
45 virtual void CheckCharacter(uc16 c, Label* on_equal); 45 virtual void CheckCharacter(uc16 c, Label* on_equal);
46 virtual void CheckCharacterGT(uc16 limit, Label* on_greater); 46 virtual void CheckCharacterGT(uc16 limit, Label* on_greater);
47 virtual void CheckCharacterLT(uc16 limit, Label* on_less); 47 virtual void CheckCharacterLT(uc16 limit, Label* on_less);
48 virtual void CheckCharacters(Vector<const uc16> str, 48 virtual void CheckCharacters(Vector<const uc16> str,
49 int cp_offset, 49 int cp_offset,
50 Label* on_failure); 50 Label* on_failure);
51 virtual void CheckCurrentPosition(int register_index, Label* on_equal); 51 virtual void CheckCurrentPosition(int register_index, Label* on_equal);
52 virtual void CheckNotAtStart(Label* on_not_at_start);
52 virtual void CheckNotBackReference(int start_reg, Label* on_no_match); 53 virtual void CheckNotBackReference(int start_reg, Label* on_no_match);
53 virtual void CheckNotBackReferenceIgnoreCase(int start_reg, 54 virtual void CheckNotBackReferenceIgnoreCase(int start_reg,
54 Label* on_no_match); 55 Label* on_no_match);
55 virtual void CheckNotRegistersEqual(int reg1, int reg2, Label* on_not_equal); 56 virtual void CheckNotRegistersEqual(int reg1, int reg2, Label* on_not_equal);
56 virtual void CheckNotCharacter(uc16 c, Label* on_not_equal); 57 virtual void CheckNotCharacter(uc16 c, Label* on_not_equal);
57 virtual void CheckNotCharacterAfterOr(uc16 c, uc16 mask, Label* on_not_equal); 58 virtual void CheckNotCharacterAfterOr(uc16 c, uc16 mask, Label* on_not_equal);
58 virtual void CheckNotCharacterAfterMinusOr(uc16 c, 59 virtual void CheckNotCharacterAfterMinusOr(uc16 c,
59 uc16 mask, 60 uc16 mask,
60 Label* on_not_equal); 61 Label* on_not_equal);
61 virtual void DispatchByteMap(uc16 start, 62 virtual void DispatchByteMap(uc16 start,
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 Label start_label_; 157 Label start_label_;
157 Label success_label_; 158 Label success_label_;
158 Label exit_label_; 159 Label exit_label_;
159 // Handle used to represent the generated code object itself. 160 // Handle used to represent the generated code object itself.
160 Handle<Object> self_; 161 Handle<Object> self_;
161 }; 162 };
162 163
163 }} // namespace v8::internal 164 }} // namespace v8::internal
164 165
165 #endif /* REGEXP_MACRO_ASSEMBLER_IA32_H_ */ 166 #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