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

Side by Side Diff: src/assembler.h

Issue 6591073: ARM: Implement untagged input for TranscendentalCacheStub. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix lint. Created 9 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
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 573 matching lines...) Expand 10 before | Expand all | Expand 10 after
584 static ExternalReference handle_scope_level_address(); 584 static ExternalReference handle_scope_level_address();
585 585
586 static ExternalReference scheduled_exception_address(); 586 static ExternalReference scheduled_exception_address();
587 587
588 // Static variables containing common double constants. 588 // Static variables containing common double constants.
589 static ExternalReference address_of_min_int(); 589 static ExternalReference address_of_min_int();
590 static ExternalReference address_of_one_half(); 590 static ExternalReference address_of_one_half();
591 static ExternalReference address_of_minus_zero(); 591 static ExternalReference address_of_minus_zero();
592 static ExternalReference address_of_negative_infinity(); 592 static ExternalReference address_of_negative_infinity();
593 593
594 static ExternalReference math_sin_double_function();
595 static ExternalReference math_cos_double_function();
596 static ExternalReference math_log_double_function();
597
594 Address address() const {return reinterpret_cast<Address>(address_);} 598 Address address() const {return reinterpret_cast<Address>(address_);}
595 599
596 #ifdef ENABLE_DEBUGGER_SUPPORT 600 #ifdef ENABLE_DEBUGGER_SUPPORT
597 // Function Debug::Break() 601 // Function Debug::Break()
598 static ExternalReference debug_break(); 602 static ExternalReference debug_break();
599 603
600 // Used to check if single stepping is enabled in generated code. 604 // Used to check if single stepping is enabled in generated code.
601 static ExternalReference debug_step_in_fp_address(); 605 static ExternalReference debug_step_in_fp_address();
602 #endif 606 #endif
603 607
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
778 return num_bits_set; 782 return num_bits_set;
779 } 783 }
780 784
781 // Computes pow(x, y) with the special cases in the spec for Math.pow. 785 // Computes pow(x, y) with the special cases in the spec for Math.pow.
782 double power_double_int(double x, int y); 786 double power_double_int(double x, int y);
783 double power_double_double(double x, double y); 787 double power_double_double(double x, double y);
784 788
785 } } // namespace v8::internal 789 } } // namespace v8::internal
786 790
787 #endif // V8_ASSEMBLER_H_ 791 #endif // V8_ASSEMBLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698