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

Side by Side Diff: src/assembler.h

Issue 17416: * Move irregexp backtrack stack to external memory area, instead of the system stack. (Closed)
Patch Set: Added explicit stack check requests to push operations. 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
« no previous file with comments | « src/SConscript ('k') | src/assembler.cc » ('j') | src/jsregexp.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 1994-2006 Sun Microsystems Inc. 1 // Copyright (c) 1994-2006 Sun Microsystems Inc.
2 // All Rights Reserved. 2 // All Rights Reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are 5 // modification, are permitted provided that the following conditions are
6 // met: 6 // met:
7 // 7 //
8 // - Redistributions of source code must retain the above copyright notice, 8 // - Redistributions of source code must retain the above copyright notice,
9 // this list of conditions and the following disclaimer. 9 // this list of conditions and the following disclaimer.
10 // 10 //
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 // ExternalReferenceTable in serialize.cc manually. 435 // ExternalReferenceTable in serialize.cc manually.
436 436
437 static ExternalReference builtin_passed_function(); 437 static ExternalReference builtin_passed_function();
438 438
439 // Static variable Factory::the_hole_value.location() 439 // Static variable Factory::the_hole_value.location()
440 static ExternalReference the_hole_value_location(); 440 static ExternalReference the_hole_value_location();
441 441
442 // Static variable StackGuard::address_of_limit() 442 // Static variable StackGuard::address_of_limit()
443 static ExternalReference address_of_stack_guard_limit(); 443 static ExternalReference address_of_stack_guard_limit();
444 444
445 // Static variable RegExpStack::limit_address()
446 static ExternalReference address_of_regexp_stack_limit();
447
445 // Function Debug::Break() 448 // Function Debug::Break()
446 static ExternalReference debug_break(); 449 static ExternalReference debug_break();
447 450
448 // Static variable Heap::NewSpaceStart() 451 // Static variable Heap::NewSpaceStart()
449 static ExternalReference new_space_start(); 452 static ExternalReference new_space_start();
450 static ExternalReference heap_always_allocate_scope_depth(); 453 static ExternalReference heap_always_allocate_scope_depth();
451 454
452 // Used for fast allocation in generated code. 455 // Used for fast allocation in generated code.
453 static ExternalReference new_space_allocation_top_address(); 456 static ExternalReference new_space_allocation_top_address();
454 static ExternalReference new_space_allocation_limit_address(); 457 static ExternalReference new_space_allocation_limit_address();
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
486 static inline bool is_uint4(int x) { return is_uintn(x, 4); } 489 static inline bool is_uint4(int x) { return is_uintn(x, 4); }
487 static inline bool is_uint5(int x) { return is_uintn(x, 5); } 490 static inline bool is_uint5(int x) { return is_uintn(x, 5); }
488 static inline bool is_uint8(int x) { return is_uintn(x, 8); } 491 static inline bool is_uint8(int x) { return is_uintn(x, 8); }
489 static inline bool is_uint12(int x) { return is_uintn(x, 12); } 492 static inline bool is_uint12(int x) { return is_uintn(x, 12); }
490 static inline bool is_uint16(int x) { return is_uintn(x, 16); } 493 static inline bool is_uint16(int x) { return is_uintn(x, 16); }
491 static inline bool is_uint24(int x) { return is_uintn(x, 24); } 494 static inline bool is_uint24(int x) { return is_uintn(x, 24); }
492 495
493 } } // namespace v8::internal 496 } } // namespace v8::internal
494 497
495 #endif // V8_ASSEMBLER_H_ 498 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/SConscript ('k') | src/assembler.cc » ('j') | src/jsregexp.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698