OLD | NEW |
1 # Copyright 2006-2009 the V8 project authors. All rights reserved. | 1 # Copyright 2006-2009 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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 define kUseAsm = 0; | 248 define kUseAsm = 0; |
249 define kBreakIterator = 1; | 249 define kBreakIterator = 1; |
250 define kLegacyConst = 2; | 250 define kLegacyConst = 2; |
251 define kMarkDequeOverflow = 3; | 251 define kMarkDequeOverflow = 3; |
252 define kStoreBufferOverflow = 4; | 252 define kStoreBufferOverflow = 4; |
253 define kSlotsBufferOverflow = 5; | 253 define kSlotsBufferOverflow = 5; |
254 define kObjectObserve = 6; | 254 define kObjectObserve = 6; |
255 define kForcedGC = 7; | 255 define kForcedGC = 7; |
256 define kSloppyMode = 8; | 256 define kSloppyMode = 8; |
257 define kStrictMode = 9; | 257 define kStrictMode = 9; |
258 define kStrongMode = 10; | |
259 define kRegExpPrototypeStickyGetter = 11; | 258 define kRegExpPrototypeStickyGetter = 11; |
260 define kRegExpPrototypeToString = 12; | 259 define kRegExpPrototypeToString = 12; |
261 define kRegExpPrototypeUnicodeGetter = 13; | 260 define kRegExpPrototypeUnicodeGetter = 13; |
262 define kIntlV8Parse = 14; | 261 define kIntlV8Parse = 14; |
263 define kIntlPattern = 15; | 262 define kIntlPattern = 15; |
264 define kIntlResolved = 16; | 263 define kIntlResolved = 16; |
265 define kPromiseChain = 17; | 264 define kPromiseChain = 17; |
266 define kPromiseAccept = 18; | 265 define kPromiseAccept = 18; |
267 define kPromiseDefer = 19; | 266 define kPromiseDefer = 19; |
268 define kHtmlCommentInExternalScript = 20; | 267 define kHtmlCommentInExternalScript = 20; |
269 define kHtmlComment = 21; | 268 define kHtmlComment = 21; |
270 define kSloppyModeBlockScopedFunctionRedefinition = 22; | 269 define kSloppyModeBlockScopedFunctionRedefinition = 22; |
271 define kForInInitializer = 23; | 270 define kForInInitializer = 23; |
272 define kArrayProtectorDirtied = 24; | 271 define kArrayProtectorDirtied = 24; |
273 define kArraySpeciesModified = 25; | 272 define kArraySpeciesModified = 25; |
274 define kArrayPrototypeConstructorModified = 26; | 273 define kArrayPrototypeConstructorModified = 26; |
275 define kArrayInstanceProtoModified = 27; | 274 define kArrayInstanceProtoModified = 27; |
276 define kArrayInstanceConstructorModified = 28; | 275 define kArrayInstanceConstructorModified = 28; |
277 define kLegacyFunctionDeclaration = 29; | 276 define kLegacyFunctionDeclaration = 29; |
278 define kRegExpPrototypeSourceGetter = 30; | 277 define kRegExpPrototypeSourceGetter = 30; |
279 define kRegExpPrototypeOldFlagGetter = 31; | 278 define kRegExpPrototypeOldFlagGetter = 31; |
OLD | NEW |