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

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

Issue 181453002: Reset trunk to 3.24.35.4 (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 6 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/property-details.h ('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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 static const int kMaxCPOffset = (1 << 15) - 1; 46 static const int kMaxCPOffset = (1 << 15) - 1;
47 static const int kMinCPOffset = -(1 << 15); 47 static const int kMinCPOffset = -(1 << 15);
48 48
49 static const int kTableSizeBits = 7; 49 static const int kTableSizeBits = 7;
50 static const int kTableSize = 1 << kTableSizeBits; 50 static const int kTableSize = 1 << kTableSizeBits;
51 static const int kTableMask = kTableSize - 1; 51 static const int kTableMask = kTableSize - 1;
52 52
53 enum IrregexpImplementation { 53 enum IrregexpImplementation {
54 kIA32Implementation, 54 kIA32Implementation,
55 kARMImplementation, 55 kARMImplementation,
56 kA64Implementation,
57 kMIPSImplementation, 56 kMIPSImplementation,
58 kX64Implementation, 57 kX64Implementation,
59 kBytecodeImplementation 58 kBytecodeImplementation
60 }; 59 };
61 60
62 enum StackCheckFlag { 61 enum StackCheckFlag {
63 kNoStackLimitCheck = false, 62 kNoStackLimitCheck = false,
64 kCheckStackLimit = true 63 kCheckStackLimit = true
65 }; 64 };
66 65
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 int* output, 250 int* output,
252 int output_size, 251 int output_size,
253 Isolate* isolate); 252 Isolate* isolate);
254 }; 253 };
255 254
256 #endif // V8_INTERPRETED_REGEXP 255 #endif // V8_INTERPRETED_REGEXP
257 256
258 } } // namespace v8::internal 257 } } // namespace v8::internal
259 258
260 #endif // V8_REGEXP_MACRO_ASSEMBLER_H_ 259 #endif // V8_REGEXP_MACRO_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/property-details.h ('k') | src/regexp-macro-assembler-tracer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698