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

Side by Side Diff: src/a64/lithium-a64.h

Issue 139973004: A64: Synchronize with r15814. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 10 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 | « src/a64/ic-a64.cc ('k') | src/a64/lithium-a64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 V(Integer32ToSmi) \ 115 V(Integer32ToSmi) \
116 V(InvokeFunction) \ 116 V(InvokeFunction) \
117 V(IsConstructCallAndBranch) \ 117 V(IsConstructCallAndBranch) \
118 V(IsNumberAndBranch) \ 118 V(IsNumberAndBranch) \
119 V(IsObjectAndBranch) \ 119 V(IsObjectAndBranch) \
120 V(IsStringAndBranch) \ 120 V(IsStringAndBranch) \
121 V(IsSmiAndBranch) \ 121 V(IsSmiAndBranch) \
122 V(IsUndetectableAndBranch) \ 122 V(IsUndetectableAndBranch) \
123 V(Label) \ 123 V(Label) \
124 V(LazyBailout) \ 124 V(LazyBailout) \
125 V(LinkObjectInList) \
125 V(LoadContextSlot) \ 126 V(LoadContextSlot) \
126 V(LoadExternalArrayPointer) \ 127 V(LoadExternalArrayPointer) \
127 V(LoadFunctionPrototype) \ 128 V(LoadFunctionPrototype) \
128 V(LoadGlobalCell) \ 129 V(LoadGlobalCell) \
129 V(LoadGlobalGeneric) \ 130 V(LoadGlobalGeneric) \
130 V(LoadKeyedExternal) \ 131 V(LoadKeyedExternal) \
131 V(LoadKeyedFixed) \ 132 V(LoadKeyedFixed) \
132 V(LoadKeyedFixedDouble) \ 133 V(LoadKeyedFixedDouble) \
133 V(LoadKeyedGeneric) \ 134 V(LoadKeyedGeneric) \
134 V(LoadNamedField) \ 135 V(LoadNamedField) \
(...skipping 1388 matching lines...) Expand 10 before | Expand all | Expand 10 after
1523 LOperand* temp() { return temps_[0]; } 1524 LOperand* temp() { return temps_[0]; }
1524 1525
1525 DECLARE_CONCRETE_INSTRUCTION(IsUndetectableAndBranch, 1526 DECLARE_CONCRETE_INSTRUCTION(IsUndetectableAndBranch,
1526 "is-undetectable-and-branch") 1527 "is-undetectable-and-branch")
1527 DECLARE_HYDROGEN_ACCESSOR(IsUndetectableAndBranch) 1528 DECLARE_HYDROGEN_ACCESSOR(IsUndetectableAndBranch)
1528 1529
1529 virtual void PrintDataTo(StringStream* stream); 1530 virtual void PrintDataTo(StringStream* stream);
1530 }; 1531 };
1531 1532
1532 1533
1534 class LLinkObjectInList: public LTemplateInstruction<0, 1, 1> {
1535 public:
1536 explicit LLinkObjectInList(LOperand* object, LOperand* temp) {
1537 inputs_[0] = object;
1538 temps_[0] = temp;
1539 }
1540
1541 LOperand* object() { return inputs_[0]; }
1542 LOperand* temp() { return temps_[0]; }
1543
1544 ExternalReference GetReference(Isolate* isolate);
1545
1546 DECLARE_CONCRETE_INSTRUCTION(LinkObjectInList, "link-object-in-list")
1547 DECLARE_HYDROGEN_ACCESSOR(LinkObjectInList)
1548
1549 virtual void PrintDataTo(StringStream* stream);
1550 };
1551
1552
1533 class LLoadContextSlot: public LTemplateInstruction<1, 1, 0> { 1553 class LLoadContextSlot: public LTemplateInstruction<1, 1, 0> {
1534 public: 1554 public:
1535 explicit LLoadContextSlot(LOperand* context) { 1555 explicit LLoadContextSlot(LOperand* context) {
1536 inputs_[0] = context; 1556 inputs_[0] = context;
1537 } 1557 }
1538 1558
1539 LOperand* context() { return inputs_[0]; } 1559 LOperand* context() { return inputs_[0]; }
1540 1560
1541 DECLARE_CONCRETE_INSTRUCTION(LoadContextSlot, "load-context-slot") 1561 DECLARE_CONCRETE_INSTRUCTION(LoadContextSlot, "load-context-slot")
1542 DECLARE_HYDROGEN_ACCESSOR(LoadContextSlot) 1562 DECLARE_HYDROGEN_ACCESSOR(LoadContextSlot)
(...skipping 1319 matching lines...) Expand 10 before | Expand all | Expand 10 after
2862 2882
2863 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2883 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2864 }; 2884 };
2865 2885
2866 #undef DECLARE_HYDROGEN_ACCESSOR 2886 #undef DECLARE_HYDROGEN_ACCESSOR
2867 #undef DECLARE_CONCRETE_INSTRUCTION 2887 #undef DECLARE_CONCRETE_INSTRUCTION
2868 2888
2869 } } // namespace v8::internal 2889 } } // namespace v8::internal
2870 2890
2871 #endif // V8_A64_LITHIUM_A64_H_ 2891 #endif // V8_A64_LITHIUM_A64_H_
OLDNEW
« no previous file with comments | « src/a64/ic-a64.cc ('k') | src/a64/lithium-a64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698