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

Side by Side Diff: src/v8.gyp

Issue 2523893003: Reland of [ignition/turbo] Perform liveness analysis on the bytecodes (Closed)
Patch Set: Add a test case for the nested loop with register killing Created 4 years 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 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 530 matching lines...) Expand 10 before | Expand all | Expand 10 after
541 'compiler/all-nodes.cc', 541 'compiler/all-nodes.cc',
542 'compiler/all-nodes.h', 542 'compiler/all-nodes.h',
543 'compiler/ast-graph-builder.cc', 543 'compiler/ast-graph-builder.cc',
544 'compiler/ast-graph-builder.h', 544 'compiler/ast-graph-builder.h',
545 'compiler/ast-loop-assignment-analyzer.cc', 545 'compiler/ast-loop-assignment-analyzer.cc',
546 'compiler/ast-loop-assignment-analyzer.h', 546 'compiler/ast-loop-assignment-analyzer.h',
547 'compiler/basic-block-instrumentor.cc', 547 'compiler/basic-block-instrumentor.cc',
548 'compiler/basic-block-instrumentor.h', 548 'compiler/basic-block-instrumentor.h',
549 'compiler/branch-elimination.cc', 549 'compiler/branch-elimination.cc',
550 'compiler/branch-elimination.h', 550 'compiler/branch-elimination.h',
551 'compiler/bytecode-analysis.cc',
552 'compiler/bytecode-analysis.h',
551 'compiler/bytecode-graph-builder.cc', 553 'compiler/bytecode-graph-builder.cc',
552 'compiler/bytecode-graph-builder.h', 554 'compiler/bytecode-graph-builder.h',
553 'compiler/bytecode-analysis.cc', 555 'compiler/bytecode-liveness-map.cc',
554 'compiler/bytecode-analysis.h', 556 'compiler/bytecode-liveness-map.h',
555 'compiler/c-linkage.cc', 557 'compiler/c-linkage.cc',
556 'compiler/checkpoint-elimination.cc', 558 'compiler/checkpoint-elimination.cc',
557 'compiler/checkpoint-elimination.h', 559 'compiler/checkpoint-elimination.h',
558 'compiler/code-generator-impl.h', 560 'compiler/code-generator-impl.h',
559 'compiler/code-generator.cc', 561 'compiler/code-generator.cc',
560 'compiler/code-generator.h', 562 'compiler/code-generator.h',
561 'compiler/code-assembler.cc', 563 'compiler/code-assembler.cc',
562 'compiler/code-assembler.h', 564 'compiler/code-assembler.h',
563 'compiler/common-node-cache.cc', 565 'compiler/common-node-cache.cc',
564 'compiler/common-node-cache.h', 566 'compiler/common-node-cache.h',
(...skipping 1902 matching lines...) Expand 10 before | Expand all | Expand 10 after
2467 'conditions': [ 2469 'conditions': [
2468 ['want_separate_host_toolset_mkpeephole==1', { 2470 ['want_separate_host_toolset_mkpeephole==1', {
2469 'toolsets': ['host'], 2471 'toolsets': ['host'],
2470 }, { 2472 }, {
2471 'toolsets': ['target'], 2473 'toolsets': ['target'],
2472 }], 2474 }],
2473 ], 2475 ],
2474 }, 2476 },
2475 ], 2477 ],
2476 } 2478 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698