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 // If allocation_site_info_found is not null, then allocation site info |
100 // checking is enabled | |
101 static void GenerateMapChangeElementsTransition(MacroAssembler* masm, | |
danno
2013/01/11 16:14:40
nit: all parameters need to be aligned in declarat
| |
102 Label* allocation_site_info_found); | |
100 static void GenerateSmiToDouble(MacroAssembler* masm, Label* fail); | 103 static void GenerateSmiToDouble(MacroAssembler* masm, Label* fail); |
101 static void GenerateDoubleToObject(MacroAssembler* masm, Label* fail); | 104 static void GenerateDoubleToObject(MacroAssembler* masm, Label* fail); |
102 | 105 |
103 private: | 106 private: |
104 DISALLOW_COPY_AND_ASSIGN(ElementsTransitionGenerator); | 107 DISALLOW_COPY_AND_ASSIGN(ElementsTransitionGenerator); |
105 }; | 108 }; |
106 | 109 |
107 | 110 |
108 class SeqStringSetCharGenerator : public AllStatic { | 111 class SeqStringSetCharGenerator : public AllStatic { |
109 public: | 112 public: |
110 static void Generate(MacroAssembler* masm, | 113 static void Generate(MacroAssembler* masm, |
111 String::Encoding encoding, | 114 String::Encoding encoding, |
112 Register string, | 115 Register string, |
113 Register index, | 116 Register index, |
114 Register value); | 117 Register value); |
115 private: | 118 private: |
116 DISALLOW_COPY_AND_ASSIGN(SeqStringSetCharGenerator); | 119 DISALLOW_COPY_AND_ASSIGN(SeqStringSetCharGenerator); |
117 }; | 120 }; |
118 | 121 |
119 | 122 |
120 } } // namespace v8::internal | 123 } } // namespace v8::internal |
121 | 124 |
122 #endif // V8_CODEGEN_H_ | 125 #endif // V8_CODEGEN_H_ |
OLD | NEW |