Chromium Code Reviews| 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 |mode| is set to DONT_TRACK_ALLOCATION_SITE, |
|
Toon Verwaest
2013/01/16 13:35:55
Uppercase I of If.
mvstanton
2013/01/16 14:21:00
Done.
| |
| 100 static void GenerateSmiToDouble(MacroAssembler* masm, Label* fail); | 100 // |allocation_site_info_found| may be NULL. |
| 101 static void GenerateDoubleToObject(MacroAssembler* masm, Label* fail); | 101 static void GenerateMapChangeElementsTransition(MacroAssembler* masm, |
|
Toon Verwaest
2013/01/16 13:35:55
In function declarations, put the arguments right
mvstanton
2013/01/16 14:21:00
Done, and updated the two functions below to have
| |
| 102 AllocationSiteMode mode, Label* allocation_site_info_found); | |
| 103 static void GenerateSmiToDouble(MacroAssembler* masm, | |
| 104 AllocationSiteMode mode, Label* fail); | |
| 105 static void GenerateDoubleToObject(MacroAssembler* masm, | |
| 106 AllocationSiteMode mode, Label* fail); | |
| 102 | 107 |
| 103 private: | 108 private: |
| 104 DISALLOW_COPY_AND_ASSIGN(ElementsTransitionGenerator); | 109 DISALLOW_COPY_AND_ASSIGN(ElementsTransitionGenerator); |
| 105 }; | 110 }; |
| 106 | 111 |
| 107 | 112 |
| 108 class SeqStringSetCharGenerator : public AllStatic { | 113 class SeqStringSetCharGenerator : public AllStatic { |
| 109 public: | 114 public: |
| 110 static void Generate(MacroAssembler* masm, | 115 static void Generate(MacroAssembler* masm, |
| 111 String::Encoding encoding, | 116 String::Encoding encoding, |
| 112 Register string, | 117 Register string, |
| 113 Register index, | 118 Register index, |
| 114 Register value); | 119 Register value); |
| 115 private: | 120 private: |
| 116 DISALLOW_COPY_AND_ASSIGN(SeqStringSetCharGenerator); | 121 DISALLOW_COPY_AND_ASSIGN(SeqStringSetCharGenerator); |
| 117 }; | 122 }; |
| 118 | 123 |
| 119 | 124 |
| 120 } } // namespace v8::internal | 125 } } // namespace v8::internal |
| 121 | 126 |
| 122 #endif // V8_CODEGEN_H_ | 127 #endif // V8_CODEGEN_H_ |
| OLD | NEW |