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

Side by Side Diff: BUILD.gn

Issue 539503002: [turbofan] Initial version of ValueNumberingReducer. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Nit and clang-format. 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/compiler.gyp » ('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 536 matching lines...) Expand 10 before | Expand all | Expand 10 after
547 "src/compiler/simplified-lowering.cc", 547 "src/compiler/simplified-lowering.cc",
548 "src/compiler/simplified-lowering.h", 548 "src/compiler/simplified-lowering.h",
549 "src/compiler/simplified-operator-reducer.cc", 549 "src/compiler/simplified-operator-reducer.cc",
550 "src/compiler/simplified-operator-reducer.h", 550 "src/compiler/simplified-operator-reducer.h",
551 "src/compiler/simplified-operator.cc", 551 "src/compiler/simplified-operator.cc",
552 "src/compiler/simplified-operator.h", 552 "src/compiler/simplified-operator.h",
553 "src/compiler/source-position.cc", 553 "src/compiler/source-position.cc",
554 "src/compiler/source-position.h", 554 "src/compiler/source-position.h",
555 "src/compiler/typer.cc", 555 "src/compiler/typer.cc",
556 "src/compiler/typer.h", 556 "src/compiler/typer.h",
557 "src/compiler/value-numbering-reducer.cc",
558 "src/compiler/value-numbering-reducer.h",
557 "src/compiler/verifier.cc", 559 "src/compiler/verifier.cc",
558 "src/compiler/verifier.h", 560 "src/compiler/verifier.h",
559 "src/compiler.cc", 561 "src/compiler.cc",
560 "src/compiler.h", 562 "src/compiler.h",
561 "src/contexts.cc", 563 "src/contexts.cc",
562 "src/contexts.h", 564 "src/contexts.h",
563 "src/conversions-inl.h", 565 "src/conversions-inl.h",
564 "src/conversions.cc", 566 "src/conversions.cc",
565 "src/conversions.h", 567 "src/conversions.h",
566 "src/counters.cc", 568 "src/counters.cc",
(...skipping 787 matching lines...) Expand 10 before | Expand all | Expand 10 after
1354 deps = [ 1356 deps = [
1355 ":v8_base", 1357 ":v8_base",
1356 ":v8_nosnapshot", 1358 ":v8_nosnapshot",
1357 ] 1359 ]
1358 } 1360 }
1359 1361
1360 direct_dependent_configs = [ ":external_config" ] 1362 direct_dependent_configs = [ ":external_config" ]
1361 } 1363 }
1362 1364
1363 } 1365 }
OLDNEW
« no previous file with comments | « no previous file | src/compiler/compiler.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698