| 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) \ |
| 95 F(SetES5Flag, 1, 1) \ |
| 92 \ | 96 \ |
| 93 /* Array join support */ \ | 97 /* Array join support */ \ |
| 94 F(PushIfAbsent, 2, 1) \ | 98 F(PushIfAbsent, 2, 1) \ |
| 95 F(ArrayConcat, 1, 1) \ | 99 F(ArrayConcat, 1, 1) \ |
| 96 \ | 100 \ |
| 97 /* Conversions */ \ | 101 /* Conversions */ \ |
| 98 F(ToBool, 1, 1) \ | 102 F(ToBool, 1, 1) \ |
| 99 F(Typeof, 1, 1) \ | 103 F(Typeof, 1, 1) \ |
| 100 \ | 104 \ |
| 101 F(StringToNumber, 1, 1) \ | 105 F(StringToNumber, 1, 1) \ |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 /* Literals */ \ | 268 /* Literals */ \ |
| 265 F(MaterializeRegExpLiteral, 4, 1)\ | 269 F(MaterializeRegExpLiteral, 4, 1)\ |
| 266 F(CreateArrayLiteralBoilerplate, 3, 1) \ | 270 F(CreateArrayLiteralBoilerplate, 3, 1) \ |
| 267 F(CloneLiteralBoilerplate, 1, 1) \ | 271 F(CloneLiteralBoilerplate, 1, 1) \ |
| 268 F(CloneShallowLiteralBoilerplate, 1, 1) \ | 272 F(CloneShallowLiteralBoilerplate, 1, 1) \ |
| 269 F(CreateObjectLiteral, 4, 1) \ | 273 F(CreateObjectLiteral, 4, 1) \ |
| 270 F(CreateObjectLiteralShallow, 4, 1) \ | 274 F(CreateObjectLiteralShallow, 4, 1) \ |
| 271 F(CreateArrayLiteral, 3, 1) \ | 275 F(CreateArrayLiteral, 3, 1) \ |
| 272 F(CreateArrayLiteralShallow, 3, 1) \ | 276 F(CreateArrayLiteralShallow, 3, 1) \ |
| 273 \ | 277 \ |
| 278 /* Harmony proxies */ \ |
| 279 F(CreateJSProxy, 2, 1) \ |
| 280 \ |
| 274 /* Catch context extension objects */ \ | 281 /* Catch context extension objects */ \ |
| 275 F(CreateCatchExtensionObject, 2, 1) \ | 282 F(CreateCatchExtensionObject, 2, 1) \ |
| 276 \ | 283 \ |
| 277 /* Statements */ \ | 284 /* Statements */ \ |
| 278 F(NewClosure, 3, 1) \ | 285 F(NewClosure, 3, 1) \ |
| 279 F(NewObject, 1, 1) \ | 286 F(NewObject, 1, 1) \ |
| 280 F(NewObjectFromBound, 2, 1) \ | 287 F(NewObjectFromBound, 2, 1) \ |
| 281 F(FinalizeInstanceSize, 1, 1) \ | 288 F(FinalizeInstanceSize, 1, 1) \ |
| 282 F(Throw, 1, 1) \ | 289 F(Throw, 1, 1) \ |
| 283 F(ReThrow, 1, 1) \ | 290 F(ReThrow, 1, 1) \ |
| (...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 636 Handle<Script> script, | 643 Handle<Script> script, |
| 637 int position); | 644 int position); |
| 638 | 645 |
| 639 // Helper functions used stubs. | 646 // Helper functions used stubs. |
| 640 static void PerformGC(Object* result); | 647 static void PerformGC(Object* result); |
| 641 }; | 648 }; |
| 642 | 649 |
| 643 } } // namespace v8::internal | 650 } } // namespace v8::internal |
| 644 | 651 |
| 645 #endif // V8_RUNTIME_H_ | 652 #endif // V8_RUNTIME_H_ |
| OLD | NEW |