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

Side by Side Diff: src/compiler/instruction-codes.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/ia32/code-generator-ia32.cc ('k') | src/compiler/instruction-selector.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_COMPILER_INSTRUCTION_CODES_H_ 5 #ifndef V8_COMPILER_INSTRUCTION_CODES_H_
6 #define V8_COMPILER_INSTRUCTION_CODES_H_ 6 #define V8_COMPILER_INSTRUCTION_CODES_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 #if V8_TARGET_ARCH_ARM 10 #if V8_TARGET_ARCH_ARM
(...skipping 27 matching lines...) Expand all
38 V(ArchTailCallCodeObject) \ 38 V(ArchTailCallCodeObject) \
39 V(ArchCallJSFunction) \ 39 V(ArchCallJSFunction) \
40 V(ArchTailCallJSFunction) \ 40 V(ArchTailCallJSFunction) \
41 V(ArchJmp) \ 41 V(ArchJmp) \
42 V(ArchLookupSwitch) \ 42 V(ArchLookupSwitch) \
43 V(ArchTableSwitch) \ 43 V(ArchTableSwitch) \
44 V(ArchNop) \ 44 V(ArchNop) \
45 V(ArchDeoptimize) \ 45 V(ArchDeoptimize) \
46 V(ArchRet) \ 46 V(ArchRet) \
47 V(ArchStackPointer) \ 47 V(ArchStackPointer) \
48 V(ArchFramePointer) \
48 V(ArchTruncateDoubleToI) \ 49 V(ArchTruncateDoubleToI) \
49 V(CheckedLoadInt8) \ 50 V(CheckedLoadInt8) \
50 V(CheckedLoadUint8) \ 51 V(CheckedLoadUint8) \
51 V(CheckedLoadInt16) \ 52 V(CheckedLoadInt16) \
52 V(CheckedLoadUint16) \ 53 V(CheckedLoadUint16) \
53 V(CheckedLoadWord32) \ 54 V(CheckedLoadWord32) \
54 V(CheckedLoadFloat32) \ 55 V(CheckedLoadFloat32) \
55 V(CheckedLoadFloat64) \ 56 V(CheckedLoadFloat64) \
56 V(CheckedStoreWord8) \ 57 V(CheckedStoreWord8) \
57 V(CheckedStoreWord16) \ 58 V(CheckedStoreWord16) \
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 typedef BitField<AddressingMode, 8, 5> AddressingModeField; 134 typedef BitField<AddressingMode, 8, 5> AddressingModeField;
134 typedef BitField<FlagsMode, 13, 2> FlagsModeField; 135 typedef BitField<FlagsMode, 13, 2> FlagsModeField;
135 typedef BitField<FlagsCondition, 15, 4> FlagsConditionField; 136 typedef BitField<FlagsCondition, 15, 4> FlagsConditionField;
136 typedef BitField<int, 19, 13> MiscField; 137 typedef BitField<int, 19, 13> MiscField;
137 138
138 } // namespace compiler 139 } // namespace compiler
139 } // namespace internal 140 } // namespace internal
140 } // namespace v8 141 } // namespace v8
141 142
142 #endif // V8_COMPILER_INSTRUCTION_CODES_H_ 143 #endif // V8_COMPILER_INSTRUCTION_CODES_H_
OLDNEW
« no previous file with comments | « src/compiler/ia32/code-generator-ia32.cc ('k') | src/compiler/instruction-selector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698