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

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

Issue 12806: Fix build error in debug mode by making sure the tracer has the... (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 | « no previous file | 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 virtual void CheckCharacter(uc16 c, Label* on_equal); 44 virtual void CheckCharacter(uc16 c, Label* on_equal);
45 virtual void CheckCharacterGT(uc16 limit, Label* on_greater); 45 virtual void CheckCharacterGT(uc16 limit, Label* on_greater);
46 virtual void CheckCharacterLT(uc16 limit, Label* on_less); 46 virtual void CheckCharacterLT(uc16 limit, Label* on_less);
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 CheckNotAtStart(Label* on_not_at_start);
54 virtual void CheckNotBackReference(int start_reg, Label* on_no_match); 55 virtual void CheckNotBackReference(int start_reg, Label* on_no_match);
55 virtual void CheckNotBackReferenceIgnoreCase(int start_reg, 56 virtual void CheckNotBackReferenceIgnoreCase(int start_reg,
56 Label* on_no_match); 57 Label* on_no_match);
57 virtual void CheckNotRegistersEqual(int reg1, int reg2, Label* on_not_equal); 58 virtual void CheckNotRegistersEqual(int reg1, int reg2, Label* on_not_equal);
58 virtual void CheckNotCharacter(uc16 c, Label* on_not_equal); 59 virtual void CheckNotCharacter(uc16 c, Label* on_not_equal);
59 virtual void CheckNotCharacterAfterOr(uc16 c, 60 virtual void CheckNotCharacterAfterOr(uc16 c,
60 uc16 or_with, 61 uc16 or_with,
61 Label* on_not_equal); 62 Label* on_not_equal);
62 virtual void CheckNotCharacterAfterMinusOr(uc16 c, 63 virtual void CheckNotCharacterAfterMinusOr(uc16 c,
63 uc16 minus_then_or_with, 64 uc16 minus_then_or_with,
(...skipping 29 matching lines...) Expand all
93 virtual void Succeed(); 94 virtual void Succeed();
94 virtual void WriteCurrentPositionToRegister(int reg); 95 virtual void WriteCurrentPositionToRegister(int reg);
95 virtual void WriteStackPointerToRegister(int reg); 96 virtual void WriteStackPointerToRegister(int reg);
96 private: 97 private:
97 RegExpMacroAssembler* assembler_; 98 RegExpMacroAssembler* assembler_;
98 }; 99 };
99 100
100 }} // namespace v8::internal 101 }} // namespace v8::internal
101 102
102 #endif // REGEXP_MACRO_ASSEMBLER_TRACER_H_ 103 #endif // REGEXP_MACRO_ASSEMBLER_TRACER_H_
OLDNEW
« no previous file with comments | « no previous file | src/regexp-macro-assembler-tracer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698