Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(401)

Side by Side Diff: src/code-stubs.h

Issue 18612005: Implement truncated d-to-i with a stub on x86 (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Add support for all register combinations Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | src/ia32/code-stubs-ia32.cc » ('j') | src/ia32/code-stubs-ia32.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 V(FastNewClosure) \ 64 V(FastNewClosure) \
65 V(FastNewContext) \ 65 V(FastNewContext) \
66 V(FastNewBlockContext) \ 66 V(FastNewBlockContext) \
67 V(FastCloneShallowArray) \ 67 V(FastCloneShallowArray) \
68 V(FastCloneShallowObject) \ 68 V(FastCloneShallowObject) \
69 V(ToBoolean) \ 69 V(ToBoolean) \
70 V(ToNumber) \ 70 V(ToNumber) \
71 V(ArgumentsAccess) \ 71 V(ArgumentsAccess) \
72 V(RegExpConstructResult) \ 72 V(RegExpConstructResult) \
73 V(NumberToString) \ 73 V(NumberToString) \
74 V(DoubleToI) \
74 V(CEntry) \ 75 V(CEntry) \
75 V(JSEntry) \ 76 V(JSEntry) \
76 V(KeyedLoadElement) \ 77 V(KeyedLoadElement) \
77 V(ArrayNoArgumentConstructor) \ 78 V(ArrayNoArgumentConstructor) \
78 V(ArraySingleArgumentConstructor) \ 79 V(ArraySingleArgumentConstructor) \
79 V(ArrayNArgumentsConstructor) \ 80 V(ArrayNArgumentsConstructor) \
80 V(InternalArrayNoArgumentConstructor) \ 81 V(InternalArrayNoArgumentConstructor) \
81 V(InternalArraySingleArgumentConstructor) \ 82 V(InternalArraySingleArgumentConstructor) \
82 V(InternalArrayNArgumentsConstructor) \ 83 V(InternalArrayNArgumentsConstructor) \
83 V(KeyedStoreElement) \ 84 V(KeyedStoreElement) \
(...skipping 1534 matching lines...) Expand 10 before | Expand all | Expand 10 after
1618 void Generate(MacroAssembler* masm); 1619 void Generate(MacroAssembler* masm);
1619 1620
1620 private: 1621 private:
1621 Major MajorKey() { return KeyedLoadElement; } 1622 Major MajorKey() { return KeyedLoadElement; }
1622 int MinorKey() { return DICTIONARY_ELEMENTS; } 1623 int MinorKey() { return DICTIONARY_ELEMENTS; }
1623 1624
1624 DISALLOW_COPY_AND_ASSIGN(KeyedLoadDictionaryElementStub); 1625 DISALLOW_COPY_AND_ASSIGN(KeyedLoadDictionaryElementStub);
1625 }; 1626 };
1626 1627
1627 1628
1629 class DoubleToIStub : public PlatformCodeStub {
1630 public:
1631 DoubleToIStub(Register source,
1632 Register destination,
1633 int offset,
1634 bool is_truncating) : bit_field_(0) {
1635 bit_field_ = SourceRegisterBits::encode(source.code_) |
1636 DestinationRegisterBits::encode(destination.code_) |
1637 OffsetBits::encode(offset) |
1638 IsTruncatingBits::encode(is_truncating);
1639 }
1640
1641 Register source() {
1642 Register result = { SourceRegisterBits::decode(bit_field_) };
1643 return result;
1644 }
1645
1646 Register destination() {
1647 Register result = { DestinationRegisterBits::decode(bit_field_) };
1648 return result;
1649 }
1650
1651 bool is_truncating() {
1652 return IsTruncatingBits::decode(bit_field_);
1653 }
1654
1655 int offset() {
1656 return OffsetBits::decode(bit_field_);
1657 }
1658
1659 void Generate(MacroAssembler* masm);
1660
1661 private:
1662 static const int kBitsPerRegisterNumber = 6;
1663 STATIC_ASSERT((1L << kBitsPerRegisterNumber) >= Register::kNumRegisters);
1664 class SourceRegisterBits:
1665 public BitField<int, 0, kBitsPerRegisterNumber> {}; // NOLINT
1666 class DestinationRegisterBits:
1667 public BitField<int, kBitsPerRegisterNumber,
1668 kBitsPerRegisterNumber> {}; // NOLINT
1669 class IsTruncatingBits:
1670 public BitField<bool, 2 * kBitsPerRegisterNumber, 1> {}; // NOLINT
1671 class OffsetBits:
1672 public BitField<int, 2 * kBitsPerRegisterNumber + 1, 3> {}; // NOLINT
1673
1674 Major MajorKey() { return DoubleToI; }
1675 int MinorKey() { return bit_field_; }
1676
1677 int bit_field_;
1678
1679 DISALLOW_COPY_AND_ASSIGN(DoubleToIStub);
1680 };
1681
1682
1628 class KeyedLoadFastElementStub : public HydrogenCodeStub { 1683 class KeyedLoadFastElementStub : public HydrogenCodeStub {
1629 public: 1684 public:
1630 KeyedLoadFastElementStub(bool is_js_array, ElementsKind elements_kind) { 1685 KeyedLoadFastElementStub(bool is_js_array, ElementsKind elements_kind) {
1631 bit_field_ = ElementsKindBits::encode(elements_kind) | 1686 bit_field_ = ElementsKindBits::encode(elements_kind) |
1632 IsJSArrayBits::encode(is_js_array); 1687 IsJSArrayBits::encode(is_js_array);
1633 } 1688 }
1634 1689
1635 bool is_js_array() const { 1690 bool is_js_array() const {
1636 return IsJSArrayBits::decode(bit_field_); 1691 return IsJSArrayBits::decode(bit_field_);
1637 } 1692 }
(...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after
2176 int MinorKey() { return 0; } 2231 int MinorKey() { return 0; }
2177 2232
2178 void Generate(MacroAssembler* masm); 2233 void Generate(MacroAssembler* masm);
2179 2234
2180 DISALLOW_COPY_AND_ASSIGN(ProfileEntryHookStub); 2235 DISALLOW_COPY_AND_ASSIGN(ProfileEntryHookStub);
2181 }; 2236 };
2182 2237
2183 } } // namespace v8::internal 2238 } } // namespace v8::internal
2184 2239
2185 #endif // V8_CODE_STUBS_H_ 2240 #endif // V8_CODE_STUBS_H_
OLDNEW
« no previous file with comments | « no previous file | src/ia32/code-stubs-ia32.cc » ('j') | src/ia32/code-stubs-ia32.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698