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

Side by Side Diff: src/disassembler.cc

Issue 1751863002: [serializer] split up src/snapshot/serialize.* (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix Created 4 years, 9 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
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 #include "src/disassembler.h" 5 #include "src/disassembler.h"
6 6
7 #include "src/code-stubs.h" 7 #include "src/code-stubs.h"
8 #include "src/codegen.h" 8 #include "src/codegen.h"
9 #include "src/debug/debug.h" 9 #include "src/debug/debug.h"
10 #include "src/deoptimizer.h" 10 #include "src/deoptimizer.h"
11 #include "src/disasm.h" 11 #include "src/disasm.h"
12 #include "src/macro-assembler.h" 12 #include "src/macro-assembler.h"
13 #include "src/snapshot/serialize.h" 13 #include "src/snapshot/serializer-common.h"
14 #include "src/string-stream.h" 14 #include "src/string-stream.h"
15 15
16 namespace v8 { 16 namespace v8 {
17 namespace internal { 17 namespace internal {
18 18
19 #ifdef ENABLE_DISASSEMBLER 19 #ifdef ENABLE_DISASSEMBLER
20 20
21 class V8NameConverter: public disasm::NameConverter { 21 class V8NameConverter: public disasm::NameConverter {
22 public: 22 public:
23 explicit V8NameConverter(Code* code) : code_(code) {} 23 explicit V8NameConverter(Code* code) : code_(code) {}
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 281
282 int Disassembler::Decode(Isolate* isolate, std::ostream* os, byte* begin, 282 int Disassembler::Decode(Isolate* isolate, std::ostream* os, byte* begin,
283 byte* end, Code* code) { 283 byte* end, Code* code) {
284 return 0; 284 return 0;
285 } 285 }
286 286
287 #endif // ENABLE_DISASSEMBLER 287 #endif // ENABLE_DISASSEMBLER
288 288
289 } // namespace internal 289 } // namespace internal
290 } // namespace v8 290 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler.cc ('k') | src/heap/heap.cc » ('j') | src/snapshot/deserializer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698