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

Side by Side Diff: src/interpreter/setup-interpreter-deserialize.cc

Issue 2760233005: [snapshot] Move builtins generation into mksnapshot (Closed)
Patch Set: Created 3 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
(Empty)
1 // Copyright 2017 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "src/interpreter/interpreter.h"
6
7 #include "src/flags.h"
8 #include "src/ostreams.h"
9
10 namespace v8 {
11 namespace internal {
12 namespace interpreter {
13
14 void Interpreter::Initialize() {
15 #ifdef V8_USE_SNAPSHOT
16 if (FLAG_trace_ignition || FLAG_trace_ignition_codegen ||
17 FLAG_trace_ignition_dispatches) {
18 OFStream os(stdout);
19 os << "Warning: --trace-ignition-* flags must be passed at mksnapshot "
20 << "time or used with nosnapshot builds." << std::endl;
21 }
22 #endif
23 DCHECK(IsDispatchTableInitialized());
24 }
25
26 } // namespace interpreter
27 } // namespace internal
28 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698