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

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

Issue 1146963002: Add %GetCallerJSFunction intrinsic (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Review feedback Created 5 years, 6 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/compiler/mips64/code-generator-mips64.cc ('k') | src/compiler/ppc/code-generator-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 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 #include <iosfwd> 8 #include <iosfwd>
9 9
10 // Opcodes for control operators. 10 // Opcodes for control operators.
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 V(Float64Abs) \ 273 V(Float64Abs) \
274 V(Float64Sqrt) \ 274 V(Float64Sqrt) \
275 V(Float64RoundDown) \ 275 V(Float64RoundDown) \
276 V(Float64RoundTruncate) \ 276 V(Float64RoundTruncate) \
277 V(Float64RoundTiesAway) \ 277 V(Float64RoundTiesAway) \
278 V(Float64ExtractLowWord32) \ 278 V(Float64ExtractLowWord32) \
279 V(Float64ExtractHighWord32) \ 279 V(Float64ExtractHighWord32) \
280 V(Float64InsertLowWord32) \ 280 V(Float64InsertLowWord32) \
281 V(Float64InsertHighWord32) \ 281 V(Float64InsertHighWord32) \
282 V(LoadStackPointer) \ 282 V(LoadStackPointer) \
283 V(LoadFramePointer) \
283 V(CheckedLoad) \ 284 V(CheckedLoad) \
284 V(CheckedStore) 285 V(CheckedStore)
285 286
286 #define VALUE_OP_LIST(V) \ 287 #define VALUE_OP_LIST(V) \
287 COMMON_OP_LIST(V) \ 288 COMMON_OP_LIST(V) \
288 SIMPLIFIED_OP_LIST(V) \ 289 SIMPLIFIED_OP_LIST(V) \
289 MACHINE_OP_LIST(V) \ 290 MACHINE_OP_LIST(V) \
290 JS_OP_LIST(V) 291 JS_OP_LIST(V)
291 292
292 // The combination of all operators at all levels and the common operators. 293 // The combination of all operators at all levels and the common operators.
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 } 356 }
356 }; 357 };
357 358
358 std::ostream& operator<<(std::ostream&, IrOpcode::Value); 359 std::ostream& operator<<(std::ostream&, IrOpcode::Value);
359 360
360 } // namespace compiler 361 } // namespace compiler
361 } // namespace internal 362 } // namespace internal
362 } // namespace v8 363 } // namespace v8
363 364
364 #endif // V8_COMPILER_OPCODES_H_ 365 #endif // V8_COMPILER_OPCODES_H_
OLDNEW
« no previous file with comments | « src/compiler/mips64/code-generator-mips64.cc ('k') | src/compiler/ppc/code-generator-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698