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

Side by Side Diff: src/assembler.h

Issue 171089: Revert commit 2701 per Erik Corry's request. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 4 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/virtual-frame-arm.cc ('k') | src/assembler.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 (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 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 // pattern. This means that they have to be added to the 391 // pattern. This means that they have to be added to the
392 // ExternalReferenceTable in serialize.cc manually. 392 // ExternalReferenceTable in serialize.cc manually.
393 393
394 static ExternalReference perform_gc_function(); 394 static ExternalReference perform_gc_function();
395 static ExternalReference builtin_passed_function(); 395 static ExternalReference builtin_passed_function();
396 static ExternalReference random_positive_smi_function(); 396 static ExternalReference random_positive_smi_function();
397 397
398 // Static variable Factory::the_hole_value.location() 398 // Static variable Factory::the_hole_value.location()
399 static ExternalReference the_hole_value_location(); 399 static ExternalReference the_hole_value_location();
400 400
401 // Static variable Heap::roots_address()
402 static ExternalReference roots_address();
403
404 // Static variable StackGuard::address_of_jslimit() 401 // Static variable StackGuard::address_of_jslimit()
405 static ExternalReference address_of_stack_guard_limit(); 402 static ExternalReference address_of_stack_guard_limit();
406 403
407 // Static variable RegExpStack::limit_address() 404 // Static variable RegExpStack::limit_address()
408 static ExternalReference address_of_regexp_stack_limit(); 405 static ExternalReference address_of_regexp_stack_limit();
409 406
410 // Static variable Heap::NewSpaceStart() 407 // Static variable Heap::NewSpaceStart()
411 static ExternalReference new_space_start(); 408 static ExternalReference new_space_start();
412 static ExternalReference heap_always_allocate_scope_depth(); 409 static ExternalReference heap_always_allocate_scope_depth();
413 410
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
475 static inline bool is_uint5(int x) { return is_uintn(x, 5); } 472 static inline bool is_uint5(int x) { return is_uintn(x, 5); }
476 static inline bool is_uint6(int x) { return is_uintn(x, 6); } 473 static inline bool is_uint6(int x) { return is_uintn(x, 6); }
477 static inline bool is_uint8(int x) { return is_uintn(x, 8); } 474 static inline bool is_uint8(int x) { return is_uintn(x, 8); }
478 static inline bool is_uint12(int x) { return is_uintn(x, 12); } 475 static inline bool is_uint12(int x) { return is_uintn(x, 12); }
479 static inline bool is_uint16(int x) { return is_uintn(x, 16); } 476 static inline bool is_uint16(int x) { return is_uintn(x, 16); }
480 static inline bool is_uint24(int x) { return is_uintn(x, 24); } 477 static inline bool is_uint24(int x) { return is_uintn(x, 24); }
481 478
482 } } // namespace v8::internal 479 } } // namespace v8::internal
483 480
484 #endif // V8_ASSEMBLER_H_ 481 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/arm/virtual-frame-arm.cc ('k') | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698