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

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

Issue 148293020: Merge experimental/a64 to bleeding_edge. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Remove ARM from OWNERS 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/platform-posix.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 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,
56 kMIPSImplementation, 57 kMIPSImplementation,
57 kX64Implementation, 58 kX64Implementation,
58 kBytecodeImplementation 59 kBytecodeImplementation
59 }; 60 };
60 61
61 enum StackCheckFlag { 62 enum StackCheckFlag {
62 kNoStackLimitCheck = false, 63 kNoStackLimitCheck = false,
63 kCheckStackLimit = true 64 kCheckStackLimit = true
64 }; 65 };
65 66
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 int* output, 251 int* output,
251 int output_size, 252 int output_size,
252 Isolate* isolate); 253 Isolate* isolate);
253 }; 254 };
254 255
255 #endif // V8_INTERPRETED_REGEXP 256 #endif // V8_INTERPRETED_REGEXP
256 257
257 } } // namespace v8::internal 258 } } // namespace v8::internal
258 259
259 #endif // V8_REGEXP_MACRO_ASSEMBLER_H_ 260 #endif // V8_REGEXP_MACRO_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/platform-posix.cc ('k') | src/regexp-macro-assembler-tracer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698