OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/v8.h" | 5 #include "src/v8.h" |
6 | 6 |
7 #if V8_TARGET_ARCH_IA32 | 7 #if V8_TARGET_ARCH_IA32 |
8 | 8 |
9 #include "src/bootstrapper.h" | 9 #include "src/bootstrapper.h" |
10 #include "src/code-stubs.h" | 10 #include "src/code-stubs.h" |
(...skipping 877 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
888 | 888 |
889 __ bind(&done); | 889 __ bind(&done); |
890 __ IncrementCounter(counters->math_pow(), 1); | 890 __ IncrementCounter(counters->math_pow(), 1); |
891 __ ret(0); | 891 __ ret(0); |
892 } | 892 } |
893 } | 893 } |
894 | 894 |
895 | 895 |
896 void FunctionPrototypeStub::Generate(MacroAssembler* masm) { | 896 void FunctionPrototypeStub::Generate(MacroAssembler* masm) { |
897 Label miss; | 897 Label miss; |
898 Register receiver = LoadIC::ReceiverRegister(); | 898 Register receiver = LoadConvention::ReceiverRegister(); |
899 | 899 |
900 NamedLoadHandlerCompiler::GenerateLoadFunctionPrototype(masm, receiver, eax, | 900 NamedLoadHandlerCompiler::GenerateLoadFunctionPrototype(masm, receiver, eax, |
901 ebx, &miss); | 901 ebx, &miss); |
902 __ bind(&miss); | 902 __ bind(&miss); |
903 PropertyAccessCompiler::TailCallBuiltin( | 903 PropertyAccessCompiler::TailCallBuiltin( |
904 masm, PropertyAccessCompiler::MissBuiltin(Code::LOAD_IC)); | 904 masm, PropertyAccessCompiler::MissBuiltin(Code::LOAD_IC)); |
905 } | 905 } |
906 | 906 |
907 | 907 |
908 void ArgumentsAccessStub::GenerateReadElement(MacroAssembler* masm) { | 908 void ArgumentsAccessStub::GenerateReadElement(MacroAssembler* masm) { |
(...skipping 4096 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5005 Operand(ebp, 7 * kPointerSize), | 5005 Operand(ebp, 7 * kPointerSize), |
5006 NULL); | 5006 NULL); |
5007 } | 5007 } |
5008 | 5008 |
5009 | 5009 |
5010 #undef __ | 5010 #undef __ |
5011 | 5011 |
5012 } } // namespace v8::internal | 5012 } } // namespace v8::internal |
5013 | 5013 |
5014 #endif // V8_TARGET_ARCH_IA32 | 5014 #endif // V8_TARGET_ARCH_IA32 |
OLD | NEW |