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

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

Issue 17203: Periodic merge from bleeding_edge to experimental code generator... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/toiger/
Patch Set: Created 11 years, 11 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-ia32.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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 Label* on_no_match); 59 Label* on_no_match);
60 virtual void CheckNotRegistersEqual(int reg1, int reg2, Label* on_not_equal); 60 virtual void CheckNotRegistersEqual(int reg1, int reg2, Label* on_not_equal);
61 virtual void CheckNotCharacter(uint32_t c, Label* on_not_equal); 61 virtual void CheckNotCharacter(uint32_t c, Label* on_not_equal);
62 virtual void CheckNotCharacterAfterAnd(uint32_t c, 62 virtual void CheckNotCharacterAfterAnd(uint32_t c,
63 uint32_t and_with, 63 uint32_t and_with,
64 Label* on_not_equal); 64 Label* on_not_equal);
65 virtual void CheckNotCharacterAfterMinusAnd(uc16 c, 65 virtual void CheckNotCharacterAfterMinusAnd(uc16 c,
66 uc16 minus, 66 uc16 minus,
67 uc16 and_with, 67 uc16 and_with,
68 Label* on_not_equal); 68 Label* on_not_equal);
69 virtual bool CheckSpecialCharacterClass(uc16 type,
70 int cp_offset,
71 bool check_offset,
72 Label* on_no_match);
69 virtual void DispatchByteMap( 73 virtual void DispatchByteMap(
70 uc16 start, 74 uc16 start,
71 Label* byte_map, 75 Label* byte_map,
72 const Vector<Label*>& destinations); 76 const Vector<Label*>& destinations);
73 virtual void DispatchHalfNibbleMap( 77 virtual void DispatchHalfNibbleMap(
74 uc16 start, 78 uc16 start,
75 Label* half_nibble_map, 79 Label* half_nibble_map,
76 const Vector<Label*>& destinations); 80 const Vector<Label*>& destinations);
77 virtual void DispatchHighByteMap( 81 virtual void DispatchHighByteMap(
78 byte start, 82 byte start,
(...skipping 21 matching lines...) Expand all
100 virtual void Succeed(); 104 virtual void Succeed();
101 virtual void WriteCurrentPositionToRegister(int reg, int cp_offset); 105 virtual void WriteCurrentPositionToRegister(int reg, int cp_offset);
102 virtual void WriteStackPointerToRegister(int reg); 106 virtual void WriteStackPointerToRegister(int reg);
103 private: 107 private:
104 RegExpMacroAssembler* assembler_; 108 RegExpMacroAssembler* assembler_;
105 }; 109 };
106 110
107 }} // namespace v8::internal 111 }} // namespace v8::internal
108 112
109 #endif // REGEXP_MACRO_ASSEMBLER_TRACER_H_ 113 #endif // REGEXP_MACRO_ASSEMBLER_TRACER_H_
OLDNEW
« no previous file with comments | « src/regexp-macro-assembler-ia32.cc ('k') | src/regexp-macro-assembler-tracer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698