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

Side by Side Diff: BUILD.gn

Issue 931623002: [turbofan] Optimize certain chains of Branch into a Switch. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addrssed comments. Created 5 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 | « no previous file | src/compiler/arm/code-generator-arm.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 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 # Because standalone V8 builds are not supported, assume this is part of a 5 # Because standalone V8 builds are not supported, assume this is part of a
6 # Chromium build. 6 # Chromium build.
7 import("//build/module_args/v8.gni") 7 import("//build/module_args/v8.gni")
8 8
9 # TODO(jochen): These will need to be user-settable to support standalone V8 9 # TODO(jochen): These will need to be user-settable to support standalone V8
10 # builds. 10 # builds.
(...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after
520 "src/compiler/code-generator.h", 520 "src/compiler/code-generator.h",
521 "src/compiler/common-node-cache.cc", 521 "src/compiler/common-node-cache.cc",
522 "src/compiler/common-node-cache.h", 522 "src/compiler/common-node-cache.h",
523 "src/compiler/common-operator-reducer.cc", 523 "src/compiler/common-operator-reducer.cc",
524 "src/compiler/common-operator-reducer.h", 524 "src/compiler/common-operator-reducer.h",
525 "src/compiler/common-operator.cc", 525 "src/compiler/common-operator.cc",
526 "src/compiler/common-operator.h", 526 "src/compiler/common-operator.h",
527 "src/compiler/control-builders.cc", 527 "src/compiler/control-builders.cc",
528 "src/compiler/control-builders.h", 528 "src/compiler/control-builders.h",
529 "src/compiler/control-equivalence.h", 529 "src/compiler/control-equivalence.h",
530 "src/compiler/control-flow-optimizer.cc",
531 "src/compiler/control-flow-optimizer.h",
530 "src/compiler/control-reducer.cc", 532 "src/compiler/control-reducer.cc",
531 "src/compiler/control-reducer.h", 533 "src/compiler/control-reducer.h",
532 "src/compiler/diamond.h", 534 "src/compiler/diamond.h",
533 "src/compiler/frame.h", 535 "src/compiler/frame.h",
534 "src/compiler/gap-resolver.cc", 536 "src/compiler/gap-resolver.cc",
535 "src/compiler/gap-resolver.h", 537 "src/compiler/gap-resolver.h",
536 "src/compiler/generic-algorithm.h", 538 "src/compiler/generic-algorithm.h",
537 "src/compiler/graph-builder.h", 539 "src/compiler/graph-builder.h",
538 "src/compiler/graph-inl.h", 540 "src/compiler/graph-inl.h",
539 "src/compiler/graph-reducer.cc", 541 "src/compiler/graph-reducer.cc",
(...skipping 1012 matching lines...) Expand 10 before | Expand all | Expand 10 after
1552 sources += [ 1554 sources += [
1553 "src/d8-debug.cc", 1555 "src/d8-debug.cc",
1554 "$target_gen_dir/d8-js.cc", 1556 "$target_gen_dir/d8-js.cc",
1555 ] 1557 ]
1556 } 1558 }
1557 if (v8_enable_i18n_support) { 1559 if (v8_enable_i18n_support) {
1558 deps += [ "//third_party/icu" ] 1560 deps += [ "//third_party/icu" ]
1559 } 1561 }
1560 } 1562 }
1561 } 1563 }
OLDNEW
« no previous file with comments | « no previous file | src/compiler/arm/code-generator-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698