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 808 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
819 void MacroAssembler::CallRuntime(Runtime::Function* f, int num_arguments) { | 819 void MacroAssembler::CallRuntime(Runtime::Function* f, int num_arguments) { |
820 UNIMPLEMENTED_MIPS(); | 820 UNIMPLEMENTED_MIPS(); |
821 } | 821 } |
822 | 822 |
823 | 823 |
824 void MacroAssembler::CallRuntime(Runtime::FunctionId fid, int num_arguments) { | 824 void MacroAssembler::CallRuntime(Runtime::FunctionId fid, int num_arguments) { |
825 UNIMPLEMENTED_MIPS(); | 825 UNIMPLEMENTED_MIPS(); |
826 } | 826 } |
827 | 827 |
828 | 828 |
829 void MacroAssembler::TailCallRuntime(const ExternalReference& ext, | 829 void MacroAssembler::TailCallExternalReference(const ExternalReference& ext, |
830 int num_arguments, | 830 int num_arguments, |
831 int result_size) { | 831 int result_size) { |
832 UNIMPLEMENTED_MIPS(); | 832 UNIMPLEMENTED_MIPS(); |
833 } | 833 } |
834 | 834 |
835 | 835 |
836 void MacroAssembler::JumpToRuntime(const ExternalReference& builtin) { | 836 void MacroAssembler::TailCallRuntime(Runtime::FunctionId fid, |
| 837 int num_arguments, |
| 838 int result_size) { |
| 839 TailCallExternalReference(ExternalReference(fid), num_arguments, result_size); |
| 840 } |
| 841 |
| 842 |
| 843 void MacroAssembler::JumpToExternalReference(const ExternalReference& builtin) { |
837 UNIMPLEMENTED_MIPS(); | 844 UNIMPLEMENTED_MIPS(); |
838 } | 845 } |
839 | 846 |
840 | 847 |
841 Handle<Code> MacroAssembler::ResolveBuiltin(Builtins::JavaScript id, | 848 Handle<Code> MacroAssembler::ResolveBuiltin(Builtins::JavaScript id, |
842 bool* resolved) { | 849 bool* resolved) { |
843 UNIMPLEMENTED_MIPS(); | 850 UNIMPLEMENTED_MIPS(); |
844 return Handle<Code>(reinterpret_cast<Code*>(NULL)); // UNIMPLEMENTED RETURN | 851 return Handle<Code>(reinterpret_cast<Code*>(NULL)); // UNIMPLEMENTED RETURN |
845 } | 852 } |
846 | 853 |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
886 UNIMPLEMENTED_MIPS(); | 893 UNIMPLEMENTED_MIPS(); |
887 } | 894 } |
888 | 895 |
889 | 896 |
890 void MacroAssembler::Abort(const char* msg) { | 897 void MacroAssembler::Abort(const char* msg) { |
891 UNIMPLEMENTED_MIPS(); | 898 UNIMPLEMENTED_MIPS(); |
892 } | 899 } |
893 | 900 |
894 } } // namespace v8::internal | 901 } } // namespace v8::internal |
895 | 902 |
OLD | NEW |