| 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 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 "sin", MathSin, | 341 "sin", MathSin, |
| 342 "sqrt", MathSqrt, | 342 "sqrt", MathSqrt, |
| 343 "tan", MathTan, | 343 "tan", MathTan, |
| 344 "atan2", MathAtan2, | 344 "atan2", MathAtan2, |
| 345 "pow", MathPow, | 345 "pow", MathPow, |
| 346 "max", MathMax, | 346 "max", MathMax, |
| 347 "min", MathMin, | 347 "min", MathMin, |
| 348 "imul", MathImul | 348 "imul", MathImul |
| 349 )); | 349 )); |
| 350 | 350 |
| 351 %SetInlineBuiltinFlag(MathRandom); |
| 351 %SetInlineBuiltinFlag(MathSin); | 352 %SetInlineBuiltinFlag(MathSin); |
| 352 %SetInlineBuiltinFlag(MathCos); | 353 %SetInlineBuiltinFlag(MathCos); |
| 353 %SetInlineBuiltinFlag(MathTan); | 354 %SetInlineBuiltinFlag(MathTan); |
| 354 %SetInlineBuiltinFlag(TrigonometricInterpolation); | 355 %SetInlineBuiltinFlag(TrigonometricInterpolation); |
| 355 } | 356 } |
| 356 | 357 |
| 357 SetUpMath(); | 358 SetUpMath(); |
| OLD | NEW |