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 fail is not null, then allocation site info checking is enabled |
| 100 static void GenerateMapChangeElementsTransition(MacroAssembler* masm, | |
| 101 Label* fail = NULL); | |
|
danno
2013/01/10 22:58:59
Maybe it makes sense to not provide a default valu
mvstanton
2013/01/11 13:43:01
Done.
| |
| 100 static void GenerateSmiToDouble(MacroAssembler* masm, Label* fail); | 102 static void GenerateSmiToDouble(MacroAssembler* masm, Label* fail); |
| 101 static void GenerateDoubleToObject(MacroAssembler* masm, Label* fail); | 103 static void GenerateDoubleToObject(MacroAssembler* masm, Label* fail); |
| 102 | 104 |
| 103 private: | 105 private: |
| 104 DISALLOW_COPY_AND_ASSIGN(ElementsTransitionGenerator); | 106 DISALLOW_COPY_AND_ASSIGN(ElementsTransitionGenerator); |
| 105 }; | 107 }; |
| 106 | 108 |
| 107 | 109 |
| 108 class SeqStringSetCharGenerator : public AllStatic { | 110 class SeqStringSetCharGenerator : public AllStatic { |
| 109 public: | 111 public: |
| 110 static void Generate(MacroAssembler* masm, | 112 static void Generate(MacroAssembler* masm, |
| 111 String::Encoding encoding, | 113 String::Encoding encoding, |
| 112 Register string, | 114 Register string, |
| 113 Register index, | 115 Register index, |
| 114 Register value); | 116 Register value); |
| 115 private: | 117 private: |
| 116 DISALLOW_COPY_AND_ASSIGN(SeqStringSetCharGenerator); | 118 DISALLOW_COPY_AND_ASSIGN(SeqStringSetCharGenerator); |
| 117 }; | 119 }; |
| 118 | 120 |
| 119 | 121 |
| 120 } } // namespace v8::internal | 122 } } // namespace v8::internal |
| 121 | 123 |
| 122 #endif // V8_CODEGEN_H_ | 124 #endif // V8_CODEGEN_H_ |
| OLD | NEW |