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

Side by Side Diff: src/compiler/code-stub-assembler.h

Issue 1707693003: [Interpreter] Enable runtime profiler support for Ignition. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Really fix --debug-code Created 4 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
« no previous file with comments | « src/arm64/builtins-arm64.cc ('k') | src/execution.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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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_CODE_STUB_ASSEMBLER_H_ 5 #ifndef V8_COMPILER_CODE_STUB_ASSEMBLER_H_
6 #define V8_COMPILER_CODE_STUB_ASSEMBLER_H_ 6 #define V8_COMPILER_CODE_STUB_ASSEMBLER_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 // Clients of this interface shouldn't depend on lots of compiler internals. 10 // Clients of this interface shouldn't depend on lots of compiler internals.
(...skipping 21 matching lines...) Expand all
32 class RawMachineAssembler; 32 class RawMachineAssembler;
33 class RawMachineLabel; 33 class RawMachineLabel;
34 class Schedule; 34 class Schedule;
35 35
36 #define CODE_STUB_ASSEMBLER_BINARY_OP_LIST(V) \ 36 #define CODE_STUB_ASSEMBLER_BINARY_OP_LIST(V) \
37 V(IntPtrAdd) \ 37 V(IntPtrAdd) \
38 V(IntPtrSub) \ 38 V(IntPtrSub) \
39 V(Int32Add) \ 39 V(Int32Add) \
40 V(Int32Sub) \ 40 V(Int32Sub) \
41 V(Int32Mul) \ 41 V(Int32Mul) \
42 V(Int32GreaterThanOrEqual) \
42 V(WordEqual) \ 43 V(WordEqual) \
43 V(WordNotEqual) \ 44 V(WordNotEqual) \
44 V(WordOr) \ 45 V(WordOr) \
45 V(WordAnd) \ 46 V(WordAnd) \
46 V(WordXor) \ 47 V(WordXor) \
47 V(WordShl) \ 48 V(WordShl) \
48 V(WordShr) \ 49 V(WordShr) \
49 V(WordSar) \ 50 V(WordSar) \
50 V(WordRor) \ 51 V(WordRor) \
51 V(Word32Equal) \ 52 V(Word32Equal) \
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 // Map of variables to the list of value nodes that have been added from each 263 // Map of variables to the list of value nodes that have been added from each
263 // merge path in their order of merging. 264 // merge path in their order of merging.
264 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_; 265 std::map<Variable::Impl*, std::vector<Node*>> variable_merges_;
265 }; 266 };
266 267
267 } // namespace compiler 268 } // namespace compiler
268 } // namespace internal 269 } // namespace internal
269 } // namespace v8 270 } // namespace v8
270 271
271 #endif // V8_COMPILER_CODE_STUB_ASSEMBLER_H_ 272 #endif // V8_COMPILER_CODE_STUB_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/arm64/builtins-arm64.cc ('k') | src/execution.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698