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

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

Issue 10992: Implement $ for non-multiline. (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
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 CheckCharacters( 47 virtual void CheckCharacters(
48 Vector<const uc16> str, 48 Vector<const uc16> str,
49 int cp_offset, 49 int cp_offset,
50 Label* on_failure); 50 Label* on_failure);
51 virtual void CheckCurrentPosition( 51 virtual void CheckCurrentPosition(
52 int register_index, 52 int register_index,
53 Label* on_equal); 53 Label* on_equal);
54 virtual void CheckNotBackReference(int start_reg, Label* on_no_match); 54 virtual void CheckNotBackReference(int start_reg, Label* on_no_match);
55 virtual void CheckNotBackReferenceIgnoreCase(int start_reg, 55 virtual void CheckNotBackReferenceIgnoreCase(int start_reg,
56 Label* on_no_match); 56 Label* on_no_match);
57 virtual void CheckNotRegistersEqual(int reg1, int reg2, Label* on_not_equal);
57 virtual void CheckNotCharacter(uc16 c, Label* on_not_equal); 58 virtual void CheckNotCharacter(uc16 c, Label* on_not_equal);
58 virtual void CheckNotCharacterAfterOr(uc16 c, 59 virtual void CheckNotCharacterAfterOr(uc16 c,
59 uc16 or_with, 60 uc16 or_with,
60 Label* on_not_equal); 61 Label* on_not_equal);
61 virtual void CheckNotCharacterAfterMinusOr(uc16 c, 62 virtual void CheckNotCharacterAfterMinusOr(uc16 c,
62 uc16 minus_then_or_with, 63 uc16 minus_then_or_with,
63 Label* on_not_equal); 64 Label* on_not_equal);
64 virtual void DispatchByteMap( 65 virtual void DispatchByteMap(
65 uc16 start, 66 uc16 start,
66 Label* byte_map, 67 Label* byte_map,
(...skipping 25 matching lines...) Expand all
92 virtual void Succeed(); 93 virtual void Succeed();
93 virtual void WriteCurrentPositionToRegister(int reg); 94 virtual void WriteCurrentPositionToRegister(int reg);
94 virtual void WriteStackPointerToRegister(int reg); 95 virtual void WriteStackPointerToRegister(int reg);
95 private: 96 private:
96 RegExpMacroAssembler* assembler_; 97 RegExpMacroAssembler* assembler_;
97 }; 98 };
98 99
99 }} // namespace v8::internal 100 }} // namespace v8::internal
100 101
101 #endif // REGEXP_MACRO_ASSEMBLER_TRACER_H_ 102 #endif // REGEXP_MACRO_ASSEMBLER_TRACER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698