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

Side by Side Diff: BUILD.gn

Issue 584573003: Add JSBuiltinReducer for inlining well-known builtins. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed comments by Ben Titzer. Created 6 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | src/compiler/js-builtin-reducer.h » ('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 Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium 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 # TODO(jochen): These will need to be user-settable to support standalone V8 5 # TODO(jochen): These will need to be user-settable to support standalone V8
6 # builds. 6 # builds.
7 v8_compress_startup_data = "off" 7 v8_compress_startup_data = "off"
8 v8_deprecation_warnings = false 8 v8_deprecation_warnings = false
9 v8_enable_disassembler = false 9 v8_enable_disassembler = false
10 v8_enable_gdbjit = false 10 v8_enable_gdbjit = false
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after
497 "src/compiler/graph-visualizer.cc", 497 "src/compiler/graph-visualizer.cc",
498 "src/compiler/graph-visualizer.h", 498 "src/compiler/graph-visualizer.h",
499 "src/compiler/graph.cc", 499 "src/compiler/graph.cc",
500 "src/compiler/graph.h", 500 "src/compiler/graph.h",
501 "src/compiler/instruction-codes.h", 501 "src/compiler/instruction-codes.h",
502 "src/compiler/instruction-selector-impl.h", 502 "src/compiler/instruction-selector-impl.h",
503 "src/compiler/instruction-selector.cc", 503 "src/compiler/instruction-selector.cc",
504 "src/compiler/instruction-selector.h", 504 "src/compiler/instruction-selector.h",
505 "src/compiler/instruction.cc", 505 "src/compiler/instruction.cc",
506 "src/compiler/instruction.h", 506 "src/compiler/instruction.h",
507 "src/compiler/js-builtin-reducer.cc",
508 "src/compiler/js-builtin-reducer.h",
507 "src/compiler/js-context-specialization.cc", 509 "src/compiler/js-context-specialization.cc",
508 "src/compiler/js-context-specialization.h", 510 "src/compiler/js-context-specialization.h",
509 "src/compiler/js-generic-lowering.cc", 511 "src/compiler/js-generic-lowering.cc",
510 "src/compiler/js-generic-lowering.h", 512 "src/compiler/js-generic-lowering.h",
511 "src/compiler/js-graph.cc", 513 "src/compiler/js-graph.cc",
512 "src/compiler/js-graph.h", 514 "src/compiler/js-graph.h",
513 "src/compiler/js-inlining.cc", 515 "src/compiler/js-inlining.cc",
514 "src/compiler/js-inlining.h", 516 "src/compiler/js-inlining.h",
515 "src/compiler/js-operator.h", 517 "src/compiler/js-operator.h",
516 "src/compiler/js-typed-lowering.cc", 518 "src/compiler/js-typed-lowering.cc",
(...skipping 871 matching lines...) Expand 10 before | Expand all | Expand 10 after
1388 deps = [ 1390 deps = [
1389 ":v8_base", 1391 ":v8_base",
1390 ":v8_nosnapshot", 1392 ":v8_nosnapshot",
1391 ] 1393 ]
1392 } 1394 }
1393 1395
1394 direct_dependent_configs = [ ":external_config" ] 1396 direct_dependent_configs = [ ":external_config" ]
1395 } 1397 }
1396 1398
1397 } 1399 }
OLDNEW
« no previous file with comments | « no previous file | src/compiler/js-builtin-reducer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698