| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 10 matching lines...) Expand all Loading... |
| 21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | 27 |
| 28 #ifndef V8_RUNTIME_H_ | 28 #ifndef V8_RUNTIME_H_ |
| 29 #define V8_RUNTIME_H_ | 29 #define V8_RUNTIME_H_ |
| 30 | 30 |
| 31 #include "allocation.h" |
| 31 #include "zone.h" | 32 #include "zone.h" |
| 32 | 33 |
| 33 namespace v8 { | 34 namespace v8 { |
| 34 namespace internal { | 35 namespace internal { |
| 35 | 36 |
| 36 // The interface to C++ runtime functions. | 37 // The interface to C++ runtime functions. |
| 37 | 38 |
| 38 // ---------------------------------------------------------------------------- | 39 // ---------------------------------------------------------------------------- |
| 39 // RUNTIME_FUNCTION_LIST_ALWAYS defines runtime calls available in both | 40 // RUNTIME_FUNCTION_LIST_ALWAYS defines runtime calls available in both |
| 40 // release and debug mode. | 41 // release and debug mode. |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 /* Utilities */ \ | 80 /* Utilities */ \ |
| 80 F(GetFunctionDelegate, 1, 1) \ | 81 F(GetFunctionDelegate, 1, 1) \ |
| 81 F(GetConstructorDelegate, 1, 1) \ | 82 F(GetConstructorDelegate, 1, 1) \ |
| 82 F(NewArgumentsFast, 3, 1) \ | 83 F(NewArgumentsFast, 3, 1) \ |
| 83 F(LazyCompile, 1, 1) \ | 84 F(LazyCompile, 1, 1) \ |
| 84 F(LazyRecompile, 1, 1) \ | 85 F(LazyRecompile, 1, 1) \ |
| 85 F(NotifyDeoptimized, 1, 1) \ | 86 F(NotifyDeoptimized, 1, 1) \ |
| 86 F(NotifyOSR, 0, 1) \ | 87 F(NotifyOSR, 0, 1) \ |
| 87 F(DeoptimizeFunction, 1, 1) \ | 88 F(DeoptimizeFunction, 1, 1) \ |
| 88 F(OptimizeFunctionOnNextCall, 1, 1) \ | 89 F(OptimizeFunctionOnNextCall, 1, 1) \ |
| 90 F(GetOptimizationStatus, 1, 1) \ |
| 91 F(GetOptimizationCount, 1, 1) \ |
| 89 F(CompileForOnStackReplacement, 1, 1) \ | 92 F(CompileForOnStackReplacement, 1, 1) \ |
| 90 F(SetNewFunctionAttributes, 1, 1) \ | 93 F(SetNewFunctionAttributes, 1, 1) \ |
| 91 F(AllocateInNewSpace, 1, 1) \ | 94 F(AllocateInNewSpace, 1, 1) \ |
| 92 \ | 95 \ |
| 93 /* Array join support */ \ | 96 /* Array join support */ \ |
| 94 F(PushIfAbsent, 2, 1) \ | 97 F(PushIfAbsent, 2, 1) \ |
| 95 F(ArrayConcat, 1, 1) \ | 98 F(ArrayConcat, 1, 1) \ |
| 96 \ | 99 \ |
| 97 /* Conversions */ \ | 100 /* Conversions */ \ |
| 98 F(ToBool, 1, 1) \ | 101 F(ToBool, 1, 1) \ |
| (...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 636 Handle<Script> script, | 639 Handle<Script> script, |
| 637 int position); | 640 int position); |
| 638 | 641 |
| 639 // Helper functions used stubs. | 642 // Helper functions used stubs. |
| 640 static void PerformGC(Object* result); | 643 static void PerformGC(Object* result); |
| 641 }; | 644 }; |
| 642 | 645 |
| 643 } } // namespace v8::internal | 646 } } // namespace v8::internal |
| 644 | 647 |
| 645 #endif // V8_RUNTIME_H_ | 648 #endif // V8_RUNTIME_H_ |
| OLD | NEW |