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

Side by Side Diff: src/assembler.h

Issue 126113: Change the implementation of Math.random to use George... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years, 6 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
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 370 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 381
382 explicit ExternalReference(Top::AddressId id); 382 explicit ExternalReference(Top::AddressId id);
383 383
384 explicit ExternalReference(const SCTableReference& table_ref); 384 explicit ExternalReference(const SCTableReference& table_ref);
385 385
386 // One-of-a-kind references. These references are not part of a general 386 // One-of-a-kind references. These references are not part of a general
387 // pattern. This means that they have to be added to the 387 // pattern. This means that they have to be added to the
388 // ExternalReferenceTable in serialize.cc manually. 388 // ExternalReferenceTable in serialize.cc manually.
389 389
390 static ExternalReference perform_gc_function(); 390 static ExternalReference perform_gc_function();
391
392 static ExternalReference builtin_passed_function(); 391 static ExternalReference builtin_passed_function();
392 static ExternalReference random_positive_smi_function();
393 393
394 // Static variable Factory::the_hole_value.location() 394 // Static variable Factory::the_hole_value.location()
395 static ExternalReference the_hole_value_location(); 395 static ExternalReference the_hole_value_location();
396 396
397 // Static variable StackGuard::address_of_jslimit() 397 // Static variable StackGuard::address_of_jslimit()
398 static ExternalReference address_of_stack_guard_limit(); 398 static ExternalReference address_of_stack_guard_limit();
399 399
400 // Static variable RegExpStack::limit_address() 400 // Static variable RegExpStack::limit_address()
401 static ExternalReference address_of_regexp_stack_limit(); 401 static ExternalReference address_of_regexp_stack_limit();
402 402
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
467 static inline bool is_uint5(int x) { return is_uintn(x, 5); } 467 static inline bool is_uint5(int x) { return is_uintn(x, 5); }
468 static inline bool is_uint6(int x) { return is_uintn(x, 6); } 468 static inline bool is_uint6(int x) { return is_uintn(x, 6); }
469 static inline bool is_uint8(int x) { return is_uintn(x, 8); } 469 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); } 470 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); } 471 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); } 472 static inline bool is_uint24(int x) { return is_uintn(x, 24); }
473 473
474 } } // namespace v8::internal 474 } } // namespace v8::internal
475 475
476 #endif // V8_ASSEMBLER_H_ 476 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/arm/codegen-arm.cc ('k') | src/assembler.cc » ('j') | src/v8.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698