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 5679 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5690 return HObjectAccess( | 5690 return HObjectAccess( |
5691 kInobject, | 5691 kInobject, |
5692 JSTypedArray::kLengthOffset, | 5692 JSTypedArray::kLengthOffset, |
5693 Representation::Tagged()); | 5693 Representation::Tagged()); |
5694 } | 5694 } |
5695 | 5695 |
5696 static HObjectAccess ForAllocationSiteTransitionInfo() { | 5696 static HObjectAccess ForAllocationSiteTransitionInfo() { |
5697 return HObjectAccess(kInobject, AllocationSite::kTransitionInfoOffset); | 5697 return HObjectAccess(kInobject, AllocationSite::kTransitionInfoOffset); |
5698 } | 5698 } |
5699 | 5699 |
| 5700 static HObjectAccess ForAllocationSiteNestedSite() { |
| 5701 return HObjectAccess(kInobject, AllocationSite::kNestedSiteOffset); |
| 5702 } |
| 5703 |
5700 static HObjectAccess ForAllocationSiteDependentCode() { | 5704 static HObjectAccess ForAllocationSiteDependentCode() { |
5701 return HObjectAccess(kInobject, AllocationSite::kDependentCodeOffset); | 5705 return HObjectAccess(kInobject, AllocationSite::kDependentCodeOffset); |
5702 } | 5706 } |
5703 | 5707 |
5704 static HObjectAccess ForAllocationSiteWeakNext() { | 5708 static HObjectAccess ForAllocationSiteWeakNext() { |
5705 return HObjectAccess(kInobject, AllocationSite::kWeakNextOffset); | 5709 return HObjectAccess(kInobject, AllocationSite::kWeakNextOffset); |
5706 } | 5710 } |
5707 | 5711 |
5708 static HObjectAccess ForAllocationSiteList() { | 5712 static HObjectAccess ForAllocationSiteList() { |
5709 return HObjectAccess(kExternalMemory, 0, Representation::Tagged()); | 5713 return HObjectAccess(kExternalMemory, 0, Representation::Tagged()); |
(...skipping 1352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
7062 virtual bool IsDeletable() const V8_OVERRIDE { return true; } | 7066 virtual bool IsDeletable() const V8_OVERRIDE { return true; } |
7063 }; | 7067 }; |
7064 | 7068 |
7065 | 7069 |
7066 #undef DECLARE_INSTRUCTION | 7070 #undef DECLARE_INSTRUCTION |
7067 #undef DECLARE_CONCRETE_INSTRUCTION | 7071 #undef DECLARE_CONCRETE_INSTRUCTION |
7068 | 7072 |
7069 } } // namespace v8::internal | 7073 } } // namespace v8::internal |
7070 | 7074 |
7071 #endif // V8_HYDROGEN_INSTRUCTIONS_H_ | 7075 #endif // V8_HYDROGEN_INSTRUCTIONS_H_ |
OLD | NEW |