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 2816 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2827 GenerateLoadCallback(object, holder, r0, r2, r3, r1, r4, callback, name, | 2827 GenerateLoadCallback(object, holder, r0, r2, r3, r1, r4, callback, name, |
2828 &miss); | 2828 &miss); |
2829 __ bind(&miss); | 2829 __ bind(&miss); |
2830 GenerateLoadMiss(masm(), Code::LOAD_IC); | 2830 GenerateLoadMiss(masm(), Code::LOAD_IC); |
2831 | 2831 |
2832 // Return the generated code. | 2832 // Return the generated code. |
2833 return GetCode(CALLBACKS, name); | 2833 return GetCode(CALLBACKS, name); |
2834 } | 2834 } |
2835 | 2835 |
2836 | 2836 |
| 2837 Handle<Code> LoadStubCompiler::CompileLoadViaGetter( |
| 2838 Handle<String> name, |
| 2839 Handle<JSObject> receiver, |
| 2840 Handle<JSObject> holder, |
| 2841 Handle<JSFunction> getter) { |
| 2842 return Handle<Code>(); |
| 2843 } |
| 2844 |
| 2845 |
2837 Handle<Code> LoadStubCompiler::CompileLoadConstant(Handle<JSObject> object, | 2846 Handle<Code> LoadStubCompiler::CompileLoadConstant(Handle<JSObject> object, |
2838 Handle<JSObject> holder, | 2847 Handle<JSObject> holder, |
2839 Handle<JSFunction> value, | 2848 Handle<JSFunction> value, |
2840 Handle<String> name) { | 2849 Handle<String> name) { |
2841 // ----------- S t a t e ------------- | 2850 // ----------- S t a t e ------------- |
2842 // -- r0 : receiver | 2851 // -- r0 : receiver |
2843 // -- r2 : name | 2852 // -- r2 : name |
2844 // -- lr : return address | 2853 // -- lr : return address |
2845 // ----------------------------------- | 2854 // ----------------------------------- |
2846 Label miss; | 2855 Label miss; |
(...skipping 1744 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4591 __ Jump(ic_slow, RelocInfo::CODE_TARGET); | 4600 __ Jump(ic_slow, RelocInfo::CODE_TARGET); |
4592 } | 4601 } |
4593 } | 4602 } |
4594 | 4603 |
4595 | 4604 |
4596 #undef __ | 4605 #undef __ |
4597 | 4606 |
4598 } } // namespace v8::internal | 4607 } } // namespace v8::internal |
4599 | 4608 |
4600 #endif // V8_TARGET_ARCH_ARM | 4609 #endif // V8_TARGET_ARCH_ARM |
OLD | NEW |