| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 19 matching lines...) Expand all Loading... |
| 30 #include "codegen-inl.h" | 30 #include "codegen-inl.h" |
| 31 #include "debug.h" | 31 #include "debug.h" |
| 32 #include "runtime.h" | 32 #include "runtime.h" |
| 33 | 33 |
| 34 namespace v8 { namespace internal { | 34 namespace v8 { namespace internal { |
| 35 | 35 |
| 36 | 36 |
| 37 #define __ masm-> | 37 #define __ masm-> |
| 38 | 38 |
| 39 | 39 |
| 40 void Builtins::Generate_Adaptor(MacroAssembler* masm, | 40 void Builtins::Generate_Adaptor(MacroAssembler* masm, CFunctionId id) { |
| 41 int argc, | |
| 42 CFunctionId id) { | |
| 43 // TODO(1238487): Don't pass the function in a static variable. | 41 // TODO(1238487): Don't pass the function in a static variable. |
| 44 __ mov(ip, Operand(ExternalReference::builtin_passed_function())); | 42 __ mov(ip, Operand(ExternalReference::builtin_passed_function())); |
| 45 __ str(r1, MemOperand(ip, 0)); | 43 __ str(r1, MemOperand(ip, 0)); |
| 46 | 44 |
| 47 if (argc == -1) { | 45 // The actual argument count has already been loaded into register |
| 48 // The actual argument count has already been loaded into register | 46 // r0, but JumpToBuiltin expects r0 to contain the number of |
| 49 // r0, but JumpToBuiltin expects r0 to contain the number of | 47 // arguments including the receiver. |
| 50 // arguments including the receiver. | 48 __ add(r0, r0, Operand(1)); |
| 51 __ add(r0, r0, Operand(1)); | |
| 52 } else { | |
| 53 // The number passed in argc excludes the receiver, but | |
| 54 // JumpToBuiltin expects r0 to contain the number of arguments | |
| 55 // including the receiver. | |
| 56 __ mov(r0, Operand(argc + 1)); | |
| 57 } | |
| 58 __ JumpToBuiltin(ExternalReference(id)); | 49 __ JumpToBuiltin(ExternalReference(id)); |
| 59 } | 50 } |
| 60 | 51 |
| 61 | 52 |
| 62 void Builtins::Generate_JSConstructCall(MacroAssembler* masm) { | 53 void Builtins::Generate_JSConstructCall(MacroAssembler* masm) { |
| 63 // ----------- S t a t e ------------- | 54 // ----------- S t a t e ------------- |
| 64 // -- r0 : number of arguments | 55 // -- r0 : number of arguments |
| 65 // -- r1 : constructor function | 56 // -- r1 : constructor function |
| 66 // -- lr : return address | 57 // -- lr : return address |
| 67 // -- sp[...]: constructor arguments | 58 // -- sp[...]: constructor arguments |
| (...skipping 769 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 837 } | 828 } |
| 838 | 829 |
| 839 void Builtins::Generate_StubNoRegisters_DebugBreak(MacroAssembler* masm) { | 830 void Builtins::Generate_StubNoRegisters_DebugBreak(MacroAssembler* masm) { |
| 840 // Generate nothing as CodeStub CallFunction is not used on ARM. | 831 // Generate nothing as CodeStub CallFunction is not used on ARM. |
| 841 } | 832 } |
| 842 | 833 |
| 843 | 834 |
| 844 #undef __ | 835 #undef __ |
| 845 | 836 |
| 846 } } // namespace v8::internal | 837 } } // namespace v8::internal |
| OLD | NEW |