OLD | NEW |
---|---|
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
89 // generated code both in runtime and compiled code. | 89 // generated code both in runtime and compiled code. |
90 typedef double (*UnaryMathFunction)(double x); | 90 typedef double (*UnaryMathFunction)(double x); |
91 | 91 |
92 UnaryMathFunction CreateTranscendentalFunction(TranscendentalCache::Type type); | 92 UnaryMathFunction CreateTranscendentalFunction(TranscendentalCache::Type type); |
93 UnaryMathFunction CreateExpFunction(); | 93 UnaryMathFunction CreateExpFunction(); |
94 UnaryMathFunction CreateSqrtFunction(); | 94 UnaryMathFunction CreateSqrtFunction(); |
95 | 95 |
96 | 96 |
97 class ElementsTransitionGenerator : public AllStatic { | 97 class ElementsTransitionGenerator : public AllStatic { |
98 public: | 98 public: |
99 static void GenerateMapChangeElementsTransition(MacroAssembler* masm); | 99 // allocation_site_info_found may be null, if mode is |
Toon Verwaest
2013/01/16 10:53:42
If |mode| is set to DONT_TRACK_ALLOCATION_SITE_INF
mvstanton
2013/01/16 13:01:56
Done.
| |
100 static void GenerateSmiToDouble(MacroAssembler* masm, Label* fail); | 100 // DONT_TRACK_ALLOCATION_SITE_INFO. |
101 static void GenerateDoubleToObject(MacroAssembler* masm, Label* fail); | 101 static void GenerateMapChangeElementsTransition(MacroAssembler* masm, |
102 AllocationSiteInfoMode mode, | |
103 Label* allocation_site_info_found); | |
104 static void GenerateSmiToDouble(MacroAssembler* masm, | |
105 AllocationSiteInfoMode mode, Label* fail); | |
106 static void GenerateDoubleToObject(MacroAssembler* masm, | |
107 AllocationSiteInfoMode mode, Label* fail); | |
102 | 108 |
103 private: | 109 private: |
104 DISALLOW_COPY_AND_ASSIGN(ElementsTransitionGenerator); | 110 DISALLOW_COPY_AND_ASSIGN(ElementsTransitionGenerator); |
105 }; | 111 }; |
106 | 112 |
107 | 113 |
108 class SeqStringSetCharGenerator : public AllStatic { | 114 class SeqStringSetCharGenerator : public AllStatic { |
109 public: | 115 public: |
110 static void Generate(MacroAssembler* masm, | 116 static void Generate(MacroAssembler* masm, |
111 String::Encoding encoding, | 117 String::Encoding encoding, |
112 Register string, | 118 Register string, |
113 Register index, | 119 Register index, |
114 Register value); | 120 Register value); |
115 private: | 121 private: |
116 DISALLOW_COPY_AND_ASSIGN(SeqStringSetCharGenerator); | 122 DISALLOW_COPY_AND_ASSIGN(SeqStringSetCharGenerator); |
117 }; | 123 }; |
118 | 124 |
119 | 125 |
120 } } // namespace v8::internal | 126 } } // namespace v8::internal |
121 | 127 |
122 #endif // V8_CODEGEN_H_ | 128 #endif // V8_CODEGEN_H_ |
OLD | NEW |