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

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

Issue 6529032: Merge 6168:6800 from bleeding_edge to experimental/gc branch. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/gc/
Patch Set: Created 9 years, 10 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/arm/macro-assembler-arm.cc ('k') | src/arm/regexp-macro-assembler-arm.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 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 class RegExpMacroAssemblerARM: public NativeRegExpMacroAssembler { 43 class RegExpMacroAssemblerARM: public NativeRegExpMacroAssembler {
44 public: 44 public:
45 RegExpMacroAssemblerARM(Mode mode, int registers_to_save); 45 RegExpMacroAssemblerARM(Mode mode, int registers_to_save);
46 virtual ~RegExpMacroAssemblerARM(); 46 virtual ~RegExpMacroAssemblerARM();
47 virtual int stack_limit_slack(); 47 virtual int stack_limit_slack();
48 virtual void AdvanceCurrentPosition(int by); 48 virtual void AdvanceCurrentPosition(int by);
49 virtual void AdvanceRegister(int reg, int by); 49 virtual void AdvanceRegister(int reg, int by);
50 virtual void Backtrack(); 50 virtual void Backtrack();
51 virtual void Bind(Label* label); 51 virtual void Bind(Label* label);
52 virtual void CheckAtStart(Label* on_at_start); 52 virtual void CheckAtStart(Label* on_at_start);
53 virtual void CheckCharacter(uint32_t c, Label* on_equal); 53 virtual void CheckCharacter(unsigned c, Label* on_equal);
54 virtual void CheckCharacterAfterAnd(uint32_t c, 54 virtual void CheckCharacterAfterAnd(unsigned c,
55 uint32_t mask, 55 unsigned mask,
56 Label* on_equal); 56 Label* on_equal);
57 virtual void CheckCharacterGT(uc16 limit, Label* on_greater); 57 virtual void CheckCharacterGT(uc16 limit, Label* on_greater);
58 virtual void CheckCharacterLT(uc16 limit, Label* on_less); 58 virtual void CheckCharacterLT(uc16 limit, Label* on_less);
59 virtual void CheckCharacters(Vector<const uc16> str, 59 virtual void CheckCharacters(Vector<const uc16> str,
60 int cp_offset, 60 int cp_offset,
61 Label* on_failure, 61 Label* on_failure,
62 bool check_end_of_string); 62 bool check_end_of_string);
63 // A "greedy loop" is a loop that is both greedy and with a simple 63 // A "greedy loop" is a loop that is both greedy and with a simple
64 // body. It has a particularly simple implementation. 64 // body. It has a particularly simple implementation.
65 virtual void CheckGreedyLoop(Label* on_tos_equals_current_position); 65 virtual void CheckGreedyLoop(Label* on_tos_equals_current_position);
66 virtual void CheckNotAtStart(Label* on_not_at_start); 66 virtual void CheckNotAtStart(Label* on_not_at_start);
67 virtual void CheckNotBackReference(int start_reg, Label* on_no_match); 67 virtual void CheckNotBackReference(int start_reg, Label* on_no_match);
68 virtual void CheckNotBackReferenceIgnoreCase(int start_reg, 68 virtual void CheckNotBackReferenceIgnoreCase(int start_reg,
69 Label* on_no_match); 69 Label* on_no_match);
70 virtual void CheckNotRegistersEqual(int reg1, int reg2, Label* on_not_equal); 70 virtual void CheckNotRegistersEqual(int reg1, int reg2, Label* on_not_equal);
71 virtual void CheckNotCharacter(uint32_t c, Label* on_not_equal); 71 virtual void CheckNotCharacter(unsigned c, Label* on_not_equal);
72 virtual void CheckNotCharacterAfterAnd(uint32_t c, 72 virtual void CheckNotCharacterAfterAnd(unsigned c,
73 uint32_t mask, 73 unsigned mask,
74 Label* on_not_equal); 74 Label* on_not_equal);
75 virtual void CheckNotCharacterAfterMinusAnd(uc16 c, 75 virtual void CheckNotCharacterAfterMinusAnd(uc16 c,
76 uc16 minus, 76 uc16 minus,
77 uc16 mask, 77 uc16 mask,
78 Label* on_not_equal); 78 Label* on_not_equal);
79 // Checks whether the given offset from the current position is before 79 // Checks whether the given offset from the current position is before
80 // the end of the string. 80 // the end of the string.
81 virtual void CheckPosition(int cp_offset, Label* on_outside_input); 81 virtual void CheckPosition(int cp_offset, Label* on_outside_input);
82 virtual bool CheckSpecialCharacterClass(uc16 type, 82 virtual bool CheckSpecialCharacterClass(uc16 type,
83 Label* on_no_match); 83 Label* on_no_match);
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 Address re_frame); 115 Address re_frame);
116 private: 116 private:
117 // Offsets from frame_pointer() of function parameters and stored registers. 117 // Offsets from frame_pointer() of function parameters and stored registers.
118 static const int kFramePointer = 0; 118 static const int kFramePointer = 0;
119 119
120 // Above the frame pointer - Stored registers and stack passed parameters. 120 // Above the frame pointer - Stored registers and stack passed parameters.
121 // Register 4..11. 121 // Register 4..11.
122 static const int kStoredRegisters = kFramePointer; 122 static const int kStoredRegisters = kFramePointer;
123 // Return address (stored from link register, read into pc on return). 123 // Return address (stored from link register, read into pc on return).
124 static const int kReturnAddress = kStoredRegisters + 8 * kPointerSize; 124 static const int kReturnAddress = kStoredRegisters + 8 * kPointerSize;
125 static const int kSecondaryReturnAddress = kReturnAddress + kPointerSize;
125 // Stack parameters placed by caller. 126 // Stack parameters placed by caller.
126 static const int kRegisterOutput = kReturnAddress + kPointerSize; 127 static const int kRegisterOutput = kSecondaryReturnAddress + kPointerSize;
127 static const int kStackHighEnd = kRegisterOutput + kPointerSize; 128 static const int kStackHighEnd = kRegisterOutput + kPointerSize;
128 static const int kDirectCall = kStackHighEnd + kPointerSize; 129 static const int kDirectCall = kStackHighEnd + kPointerSize;
129 130
130 // Below the frame pointer. 131 // Below the frame pointer.
131 // Register parameters stored by setup code. 132 // Register parameters stored by setup code.
132 static const int kInputEnd = kFramePointer - kPointerSize; 133 static const int kInputEnd = kFramePointer - kPointerSize;
133 static const int kInputStart = kInputEnd - kPointerSize; 134 static const int kInputStart = kInputEnd - kPointerSize;
134 static const int kStartIndex = kInputStart - kPointerSize; 135 static const int kStartIndex = kInputStart - kPointerSize;
135 static const int kInputString = kStartIndex - kPointerSize; 136 static const int kInputString = kStartIndex - kPointerSize;
136 // When adding local variables remember to push space for them in 137 // When adding local variables remember to push space for them in
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 Label check_preempt_label_; 243 Label check_preempt_label_;
243 Label stack_overflow_label_; 244 Label stack_overflow_label_;
244 }; 245 };
245 246
246 #endif // V8_INTERPRETED_REGEXP 247 #endif // V8_INTERPRETED_REGEXP
247 248
248 249
249 }} // namespace v8::internal 250 }} // namespace v8::internal
250 251
251 #endif // V8_ARM_REGEXP_MACRO_ASSEMBLER_ARM_H_ 252 #endif // V8_ARM_REGEXP_MACRO_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « src/arm/macro-assembler-arm.cc ('k') | src/arm/regexp-macro-assembler-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698