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 #ifndef V8_X87_LITHIUM_X87_H_ | 5 #ifndef V8_X87_LITHIUM_X87_H_ |
6 #define V8_X87_LITHIUM_X87_H_ | 6 #define V8_X87_LITHIUM_X87_H_ |
7 | 7 |
8 #include "src/hydrogen.h" | 8 #include "src/hydrogen.h" |
9 #include "src/lithium-allocator.h" | 9 #include "src/lithium-allocator.h" |
10 #include "src/lithium.h" | 10 #include "src/lithium.h" |
(...skipping 1859 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1870 | 1870 |
1871 virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE; | 1871 virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE; |
1872 | 1872 |
1873 int arity() const { return hydrogen()->argument_count() - 1; } | 1873 int arity() const { return hydrogen()->argument_count() - 1; } |
1874 }; | 1874 }; |
1875 | 1875 |
1876 | 1876 |
1877 class LCallWithDescriptor V8_FINAL : public LTemplateResultInstruction<1> { | 1877 class LCallWithDescriptor V8_FINAL : public LTemplateResultInstruction<1> { |
1878 public: | 1878 public: |
1879 LCallWithDescriptor(const CallInterfaceDescriptor* descriptor, | 1879 LCallWithDescriptor(const CallInterfaceDescriptor* descriptor, |
1880 ZoneList<LOperand*>& operands, | 1880 const ZoneList<LOperand*>& operands, |
1881 Zone* zone) | 1881 Zone* zone) |
1882 : inputs_(descriptor->environment_length() + 1, zone) { | 1882 : inputs_(descriptor->environment_length() + 1, zone) { |
1883 ASSERT(descriptor->environment_length() + 1 == operands.length()); | 1883 ASSERT(descriptor->environment_length() + 1 == operands.length()); |
1884 inputs_.AddAll(operands, zone); | 1884 inputs_.AddAll(operands, zone); |
1885 } | 1885 } |
1886 | 1886 |
1887 LOperand* target() const { return inputs_[0]; } | 1887 LOperand* target() const { return inputs_[0]; } |
1888 | 1888 |
1889 private: | 1889 private: |
1890 DECLARE_CONCRETE_INSTRUCTION(CallWithDescriptor, "call-with-descriptor") | 1890 DECLARE_CONCRETE_INSTRUCTION(CallWithDescriptor, "call-with-descriptor") |
(...skipping 957 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2848 | 2848 |
2849 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); | 2849 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); |
2850 }; | 2850 }; |
2851 | 2851 |
2852 #undef DECLARE_HYDROGEN_ACCESSOR | 2852 #undef DECLARE_HYDROGEN_ACCESSOR |
2853 #undef DECLARE_CONCRETE_INSTRUCTION | 2853 #undef DECLARE_CONCRETE_INSTRUCTION |
2854 | 2854 |
2855 } } // namespace v8::internal | 2855 } } // namespace v8::internal |
2856 | 2856 |
2857 #endif // V8_X87_LITHIUM_X87_H_ | 2857 #endif // V8_X87_LITHIUM_X87_H_ |
OLD | NEW |