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

Side by Side Diff: src/compiler/opcodes.h

Issue 612043003: Add inlining for intrinsics. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Move decls. Created 6 years, 2 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/compiler/linkage.cc ('k') | src/compiler/simplified-lowering.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 // 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_COMPILER_OPCODES_H_ 5 #ifndef V8_COMPILER_OPCODES_H_
6 #define V8_COMPILER_OPCODES_H_ 6 #define V8_COMPILER_OPCODES_H_
7 7
8 // Opcodes for control operators. 8 // Opcodes for control operators.
9 #define INNER_CONTROL_OP_LIST(V) \ 9 #define INNER_CONTROL_OP_LIST(V) \
10 V(Dead) \ 10 V(Dead) \
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 V(ChangeTaggedToUint32) \ 151 V(ChangeTaggedToUint32) \
152 V(ChangeTaggedToFloat64) \ 152 V(ChangeTaggedToFloat64) \
153 V(ChangeInt32ToTagged) \ 153 V(ChangeInt32ToTagged) \
154 V(ChangeUint32ToTagged) \ 154 V(ChangeUint32ToTagged) \
155 V(ChangeFloat64ToTagged) \ 155 V(ChangeFloat64ToTagged) \
156 V(ChangeBoolToBit) \ 156 V(ChangeBoolToBit) \
157 V(ChangeBitToBool) \ 157 V(ChangeBitToBool) \
158 V(LoadField) \ 158 V(LoadField) \
159 V(LoadElement) \ 159 V(LoadElement) \
160 V(StoreField) \ 160 V(StoreField) \
161 V(StoreElement) 161 V(StoreElement) \
162 V(ObjectIsSmi) \
163 V(ObjectIsNonNegativeSmi)
162 164
163 // Opcodes for Machine-level operators. 165 // Opcodes for Machine-level operators.
164 #define MACHINE_OP_LIST(V) \ 166 #define MACHINE_OP_LIST(V) \
165 V(Load) \ 167 V(Load) \
166 V(Store) \ 168 V(Store) \
167 V(Word32And) \ 169 V(Word32And) \
168 V(Word32Or) \ 170 V(Word32Or) \
169 V(Word32Xor) \ 171 V(Word32Xor) \
170 V(Word32Shl) \ 172 V(Word32Shl) \
171 V(Word32Shr) \ 173 V(Word32Shr) \
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 return false; 317 return false;
316 } 318 }
317 } 319 }
318 }; 320 };
319 321
320 } // namespace compiler 322 } // namespace compiler
321 } // namespace internal 323 } // namespace internal
322 } // namespace v8 324 } // namespace v8
323 325
324 #endif // V8_COMPILER_OPCODES_H_ 326 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/linkage.cc ('k') | src/compiler/simplified-lowering.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698