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

Side by Side Diff: src/assembler.h

Issue 20298: Fix a couple of typos reported as V8 issue 226. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 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 | « no previous file | src/disasm-ia32.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 426 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 437
438 // One-of-a-kind references. These references are not part of a general 438 // One-of-a-kind references. These references are not part of a general
439 // pattern. This means that they have to be added to the 439 // pattern. This means that they have to be added to the
440 // ExternalReferenceTable in serialize.cc manually. 440 // ExternalReferenceTable in serialize.cc manually.
441 441
442 static ExternalReference builtin_passed_function(); 442 static ExternalReference builtin_passed_function();
443 443
444 // Static variable Factory::the_hole_value.location() 444 // Static variable Factory::the_hole_value.location()
445 static ExternalReference the_hole_value_location(); 445 static ExternalReference the_hole_value_location();
446 446
447 // Static variable StackGuard::address_of_limit() 447 // Static variable StackGuard::address_of_jslimit()
448 static ExternalReference address_of_stack_guard_limit(); 448 static ExternalReference address_of_stack_guard_limit();
449 449
450 // Static variable RegExpStack::limit_address() 450 // Static variable RegExpStack::limit_address()
451 static ExternalReference address_of_regexp_stack_limit(); 451 static ExternalReference address_of_regexp_stack_limit();
452 452
453 // Function Debug::Break() 453 // Function Debug::Break()
454 static ExternalReference debug_break(); 454 static ExternalReference debug_break();
455 455
456 // Static variable Heap::NewSpaceStart() 456 // Static variable Heap::NewSpaceStart()
457 static ExternalReference new_space_start(); 457 static ExternalReference new_space_start();
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
494 static inline bool is_uint4(int x) { return is_uintn(x, 4); } 494 static inline bool is_uint4(int x) { return is_uintn(x, 4); }
495 static inline bool is_uint5(int x) { return is_uintn(x, 5); } 495 static inline bool is_uint5(int x) { return is_uintn(x, 5); }
496 static inline bool is_uint8(int x) { return is_uintn(x, 8); } 496 static inline bool is_uint8(int x) { return is_uintn(x, 8); }
497 static inline bool is_uint12(int x) { return is_uintn(x, 12); } 497 static inline bool is_uint12(int x) { return is_uintn(x, 12); }
498 static inline bool is_uint16(int x) { return is_uintn(x, 16); } 498 static inline bool is_uint16(int x) { return is_uintn(x, 16); }
499 static inline bool is_uint24(int x) { return is_uintn(x, 24); } 499 static inline bool is_uint24(int x) { return is_uintn(x, 24); }
500 500
501 } } // namespace v8::internal 501 } } // namespace v8::internal
502 502
503 #endif // V8_ASSEMBLER_H_ 503 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « no previous file | src/disasm-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698