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

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

Issue 10066009: Remove CheckNotRegistersEqual regexp-masm function from all architectures. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « src/regexp-macro-assembler-irregexp.cc ('k') | src/regexp-macro-assembler-tracer.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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 virtual void CheckCharacters( 52 virtual void CheckCharacters(
53 Vector<const uc16> str, 53 Vector<const uc16> str,
54 int cp_offset, 54 int cp_offset,
55 Label* on_failure, 55 Label* on_failure,
56 bool check_end_of_string); 56 bool check_end_of_string);
57 virtual void CheckGreedyLoop(Label* on_tos_equals_current_position); 57 virtual void CheckGreedyLoop(Label* on_tos_equals_current_position);
58 virtual void CheckNotAtStart(Label* on_not_at_start); 58 virtual void CheckNotAtStart(Label* on_not_at_start);
59 virtual void CheckNotBackReference(int start_reg, Label* on_no_match); 59 virtual void CheckNotBackReference(int start_reg, Label* on_no_match);
60 virtual void CheckNotBackReferenceIgnoreCase(int start_reg, 60 virtual void CheckNotBackReferenceIgnoreCase(int start_reg,
61 Label* on_no_match); 61 Label* on_no_match);
62 virtual void CheckNotRegistersEqual(int reg1, int reg2, Label* on_not_equal);
63 virtual void CheckNotCharacter(unsigned c, Label* on_not_equal); 62 virtual void CheckNotCharacter(unsigned c, Label* on_not_equal);
64 virtual void CheckNotCharacterAfterAnd(unsigned c, 63 virtual void CheckNotCharacterAfterAnd(unsigned c,
65 unsigned and_with, 64 unsigned and_with,
66 Label* on_not_equal); 65 Label* on_not_equal);
67 virtual void CheckNotCharacterAfterMinusAnd(uc16 c, 66 virtual void CheckNotCharacterAfterMinusAnd(uc16 c,
68 uc16 minus, 67 uc16 minus,
69 uc16 and_with, 68 uc16 and_with,
70 Label* on_not_equal); 69 Label* on_not_equal);
71 virtual void CheckCharacterInRange(uc16 from, 70 virtual void CheckCharacterInRange(uc16 from,
72 uc16 to, 71 uc16 to,
(...skipping 30 matching lines...) Expand all
103 virtual void ClearRegisters(int reg_from, int reg_to); 102 virtual void ClearRegisters(int reg_from, int reg_to);
104 virtual void WriteStackPointerToRegister(int reg); 103 virtual void WriteStackPointerToRegister(int reg);
105 104
106 private: 105 private:
107 RegExpMacroAssembler* assembler_; 106 RegExpMacroAssembler* assembler_;
108 }; 107 };
109 108
110 }} // namespace v8::internal 109 }} // namespace v8::internal
111 110
112 #endif // V8_REGEXP_MACRO_ASSEMBLER_TRACER_H_ 111 #endif // V8_REGEXP_MACRO_ASSEMBLER_TRACER_H_
OLDNEW
« no previous file with comments | « src/regexp-macro-assembler-irregexp.cc ('k') | src/regexp-macro-assembler-tracer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698