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

Side by Side Diff: src/assembler.h

Issue 8700: As discussed on the phone, I'd like your thoughts on the... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 12 years, 1 month 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 | « no previous file | src/assembler.cc » ('j') | src/heap.h » ('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 411 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 static ExternalReference the_hole_value_location(); 422 static ExternalReference the_hole_value_location();
423 423
424 // Static variable StackGuard::address_of_limit() 424 // Static variable StackGuard::address_of_limit()
425 static ExternalReference address_of_stack_guard_limit(); 425 static ExternalReference address_of_stack_guard_limit();
426 426
427 // Function Debug::Break() 427 // Function Debug::Break()
428 static ExternalReference debug_break(); 428 static ExternalReference debug_break();
429 429
430 // Static variable Heap::NewSpaceStart() 430 // Static variable Heap::NewSpaceStart()
431 static ExternalReference new_space_start(); 431 static ExternalReference new_space_start();
432 static ExternalReference heap_always_allocate_scope_depth();
432 433
433 // Used for fast allocation in generated code. 434 // Used for fast allocation in generated code.
434 static ExternalReference new_space_allocation_top_address(); 435 static ExternalReference new_space_allocation_top_address();
435 static ExternalReference new_space_allocation_limit_address(); 436 static ExternalReference new_space_allocation_limit_address();
436 437
437 // Used to check if single stepping is enabled in generated code. 438 // Used to check if single stepping is enabled in generated code.
438 static ExternalReference debug_step_in_fp_address(); 439 static ExternalReference debug_step_in_fp_address();
439 440
440 Address address() const {return address_;} 441 Address address() const {return address_;}
441 442
(...skipping 25 matching lines...) Expand all
467 static inline bool is_uint4(int x) { return is_uintn(x, 4); } 468 static inline bool is_uint4(int x) { return is_uintn(x, 4); }
468 static inline bool is_uint5(int x) { return is_uintn(x, 5); } 469 static inline bool is_uint5(int x) { return is_uintn(x, 5); }
469 static inline bool is_uint8(int x) { return is_uintn(x, 8); } 470 static inline bool is_uint8(int x) { return is_uintn(x, 8); }
470 static inline bool is_uint12(int x) { return is_uintn(x, 12); } 471 static inline bool is_uint12(int x) { return is_uintn(x, 12); }
471 static inline bool is_uint16(int x) { return is_uintn(x, 16); } 472 static inline bool is_uint16(int x) { return is_uintn(x, 16); }
472 static inline bool is_uint24(int x) { return is_uintn(x, 24); } 473 static inline bool is_uint24(int x) { return is_uintn(x, 24); }
473 474
474 } } // namespace v8::internal 475 } } // namespace v8::internal
475 476
476 #endif // V8_ASSEMBLER_H_ 477 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « no previous file | src/assembler.cc » ('j') | src/heap.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698