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

Side by Side Diff: src/assembler.h

Issue 9572008: Implement date library functions in C++. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebase Created 8 years, 9 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/lithium-codegen-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 577 matching lines...) Expand 10 before | Expand all | Expand 10 after
588 static ExternalReference store_buffer_overflow_function( 588 static ExternalReference store_buffer_overflow_function(
589 Isolate* isolate); 589 Isolate* isolate);
590 static ExternalReference flush_icache_function(Isolate* isolate); 590 static ExternalReference flush_icache_function(Isolate* isolate);
591 static ExternalReference perform_gc_function(Isolate* isolate); 591 static ExternalReference perform_gc_function(Isolate* isolate);
592 static ExternalReference fill_heap_number_with_random_function( 592 static ExternalReference fill_heap_number_with_random_function(
593 Isolate* isolate); 593 Isolate* isolate);
594 static ExternalReference random_uint32_function(Isolate* isolate); 594 static ExternalReference random_uint32_function(Isolate* isolate);
595 static ExternalReference transcendental_cache_array_address(Isolate* isolate); 595 static ExternalReference transcendental_cache_array_address(Isolate* isolate);
596 static ExternalReference delete_handle_scope_extensions(Isolate* isolate); 596 static ExternalReference delete_handle_scope_extensions(Isolate* isolate);
597 597
598 static ExternalReference get_date_field_function(Isolate* isolate);
599 static ExternalReference date_cache_stamp(Isolate* isolate);
600
598 // Deoptimization support. 601 // Deoptimization support.
599 static ExternalReference new_deoptimizer_function(Isolate* isolate); 602 static ExternalReference new_deoptimizer_function(Isolate* isolate);
600 static ExternalReference compute_output_frames_function(Isolate* isolate); 603 static ExternalReference compute_output_frames_function(Isolate* isolate);
601 604
602 // Static data in the keyed lookup cache. 605 // Static data in the keyed lookup cache.
603 static ExternalReference keyed_lookup_cache_keys(Isolate* isolate); 606 static ExternalReference keyed_lookup_cache_keys(Isolate* isolate);
604 static ExternalReference keyed_lookup_cache_field_offsets(Isolate* isolate); 607 static ExternalReference keyed_lookup_cache_field_offsets(Isolate* isolate);
605 608
606 // Static variable Heap::roots_array_start() 609 // Static variable Heap::roots_array_start()
607 static ExternalReference roots_array_start(Isolate* isolate); 610 static ExternalReference roots_array_start(Isolate* isolate);
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
882 public: 885 public:
883 NullCallWrapper() { } 886 NullCallWrapper() { }
884 virtual ~NullCallWrapper() { } 887 virtual ~NullCallWrapper() { }
885 virtual void BeforeCall(int call_size) const { } 888 virtual void BeforeCall(int call_size) const { }
886 virtual void AfterCall() const { } 889 virtual void AfterCall() const { }
887 }; 890 };
888 891
889 } } // namespace v8::internal 892 } } // namespace v8::internal
890 893
891 #endif // V8_ASSEMBLER_H_ 894 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/arm/lithium-codegen-arm.cc ('k') | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698