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

Side by Side Diff: src/ppc/lithium-codegen-ppc.h

Issue 1132743004: PPC: New hydrogen instruction to reduce cost of growing an array on keyed stores. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 7 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
« no previous file with comments | « src/ppc/interface-descriptors-ppc.cc ('k') | src/ppc/lithium-codegen-ppc.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_PPC_LITHIUM_CODEGEN_PPC_H_ 5 #ifndef V8_PPC_LITHIUM_CODEGEN_PPC_H_
6 #define V8_PPC_LITHIUM_CODEGEN_PPC_H_ 6 #define V8_PPC_LITHIUM_CODEGEN_PPC_H_
7 7
8 #include "src/ppc/lithium-ppc.h" 8 #include "src/ppc/lithium-ppc.h"
9 9
10 #include "src/ppc/lithium-gap-resolver-ppc.h" 10 #include "src/ppc/lithium-gap-resolver-ppc.h"
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 void DoDeferredNumberTagD(LNumberTagD* instr); 101 void DoDeferredNumberTagD(LNumberTagD* instr);
102 102
103 enum IntegerSignedness { SIGNED_INT32, UNSIGNED_INT32 }; 103 enum IntegerSignedness { SIGNED_INT32, UNSIGNED_INT32 };
104 void DoDeferredNumberTagIU(LInstruction* instr, LOperand* value, 104 void DoDeferredNumberTagIU(LInstruction* instr, LOperand* value,
105 LOperand* temp1, LOperand* temp2, 105 LOperand* temp1, LOperand* temp2,
106 IntegerSignedness signedness); 106 IntegerSignedness signedness);
107 107
108 void DoDeferredTaggedToI(LTaggedToI* instr); 108 void DoDeferredTaggedToI(LTaggedToI* instr);
109 void DoDeferredMathAbsTaggedHeapNumber(LMathAbs* instr); 109 void DoDeferredMathAbsTaggedHeapNumber(LMathAbs* instr);
110 void DoDeferredStackCheck(LStackCheck* instr); 110 void DoDeferredStackCheck(LStackCheck* instr);
111 void DoDeferredMaybeGrowElements(LMaybeGrowElements* instr);
111 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr); 112 void DoDeferredStringCharCodeAt(LStringCharCodeAt* instr);
112 void DoDeferredStringCharFromCode(LStringCharFromCode* instr); 113 void DoDeferredStringCharFromCode(LStringCharFromCode* instr);
113 void DoDeferredAllocate(LAllocate* instr); 114 void DoDeferredAllocate(LAllocate* instr);
114 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr, 115 void DoDeferredInstanceOfKnownGlobal(LInstanceOfKnownGlobal* instr,
115 Label* map_check); 116 Label* map_check);
116 void DoDeferredInstanceMigration(LCheckMaps* instr, Register object); 117 void DoDeferredInstanceMigration(LCheckMaps* instr, Register object);
117 void DoDeferredLoadMutableDouble(LLoadFieldByIndex* instr, Register result, 118 void DoDeferredLoadMutableDouble(LLoadFieldByIndex* instr, Register result,
118 Register object, Register index); 119 Register object, Register index);
119 120
120 // Parallel move support. 121 // Parallel move support.
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 LCodeGen* codegen_; 362 LCodeGen* codegen_;
362 Label entry_; 363 Label entry_;
363 Label exit_; 364 Label exit_;
364 Label* external_exit_; 365 Label* external_exit_;
365 int instruction_index_; 366 int instruction_index_;
366 }; 367 };
367 } 368 }
368 } // namespace v8::internal 369 } // namespace v8::internal
369 370
370 #endif // V8_PPC_LITHIUM_CODEGEN_PPC_H_ 371 #endif // V8_PPC_LITHIUM_CODEGEN_PPC_H_
OLDNEW
« no previous file with comments | « src/ppc/interface-descriptors-ppc.cc ('k') | src/ppc/lithium-codegen-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698