OLD | NEW |
---|---|
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 2900 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2911 | 2911 |
2912 | 2912 |
2913 void LCodeGen::DoAccessArgumentsAt(LAccessArgumentsAt* instr) { | 2913 void LCodeGen::DoAccessArgumentsAt(LAccessArgumentsAt* instr) { |
2914 Register arguments = ToRegister(instr->arguments()); | 2914 Register arguments = ToRegister(instr->arguments()); |
2915 Register result = ToRegister(instr->result()); | 2915 Register result = ToRegister(instr->result()); |
2916 | 2916 |
2917 if (instr->length()->IsConstantOperand() && | 2917 if (instr->length()->IsConstantOperand() && |
2918 instr->index()->IsConstantOperand()) { | 2918 instr->index()->IsConstantOperand()) { |
2919 int32_t const_index = ToInteger32(LConstantOperand::cast(instr->index())); | 2919 int32_t const_index = ToInteger32(LConstantOperand::cast(instr->index())); |
2920 int32_t const_length = ToInteger32(LConstantOperand::cast(instr->length())); | 2920 int32_t const_length = ToInteger32(LConstantOperand::cast(instr->length())); |
2921 StackArgumentsAccessor args(arguments, const_length, | 2921 if (const_index < const_length) { |
2922 ARGUMENTS_DONT_CONTAIN_RECEIVER); | 2922 StackArgumentsAccessor args(arguments, const_length, |
2923 __ movp(result, args.GetArgumentOperand(const_index)); | 2923 ARGUMENTS_DONT_CONTAIN_RECEIVER); |
2924 __ movp(result, args.GetArgumentOperand(const_index)); | |
2925 } else { | |
2926 // This code should never be executed; just emit an abort here. | |
2927 __ Abort(kInvalidArgumentIndex); | |
Igor Sheludko
2014/03/24 15:23:28
Abort() calls runtime which requires context to be
Jarin
2014/03/24 16:36:05
Done.
| |
2928 } | |
2924 } else { | 2929 } else { |
2925 Register length = ToRegister(instr->length()); | 2930 Register length = ToRegister(instr->length()); |
2926 // There are two words between the frame pointer and the last argument. | 2931 // There are two words between the frame pointer and the last argument. |
2927 // Subtracting from length accounts for one of them add one more. | 2932 // Subtracting from length accounts for one of them add one more. |
2928 if (instr->index()->IsRegister()) { | 2933 if (instr->index()->IsRegister()) { |
2929 __ subl(length, ToRegister(instr->index())); | 2934 __ subl(length, ToRegister(instr->index())); |
2930 } else { | 2935 } else { |
2931 __ subl(length, ToOperand(instr->index())); | 2936 __ subl(length, ToOperand(instr->index())); |
2932 } | 2937 } |
2933 StackArgumentsAccessor args(arguments, length, | 2938 StackArgumentsAccessor args(arguments, length, |
(...skipping 2725 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
5659 FixedArray::kHeaderSize - kPointerSize)); | 5664 FixedArray::kHeaderSize - kPointerSize)); |
5660 __ bind(&done); | 5665 __ bind(&done); |
5661 } | 5666 } |
5662 | 5667 |
5663 | 5668 |
5664 #undef __ | 5669 #undef __ |
5665 | 5670 |
5666 } } // namespace v8::internal | 5671 } } // namespace v8::internal |
5667 | 5672 |
5668 #endif // V8_TARGET_ARCH_X64 | 5673 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |