Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Keyboard Shortcuts
File
u
:
up to issue
j
/
k
:
jump to file after / before current file
J
/
K
:
jump to next file with a comment after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Up>
/
<Down>
:
next / previous line
Issue
u
:
up to list of issues
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr)
|
Please choose your nickname with
Settings
|
Help
|
Chromium Project
|
Gerrit Changes
|
Sign out
(535)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: src/compiler/ppc/instruction-scheduler-ppc.cc
Issue
1526913003
:
Reland "[turbofan] Instruction scheduler for Turbofan." (Closed)
Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set:
Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
BUILD.gn
src/compiler/arm/code-generator-arm.cc
src/compiler/arm/instruction-scheduler-arm.cc
src/compiler/arm64/code-generator-arm64.cc
src/compiler/arm64/instruction-scheduler-arm64.cc
src/compiler/ia32/code-generator-ia32.cc
src/compiler/ia32/instruction-scheduler-ia32.cc
src/compiler/instruction-codes.h
src/compiler/instruction-scheduler.h
src/compiler/instruction-scheduler.cc
src/compiler/instruction-selector.h
src/compiler/instruction-selector.cc
src/compiler/mips/code-generator-mips.cc
src/compiler/mips/instruction-scheduler-mips.cc
src/compiler/mips64/code-generator-mips64.cc
src/compiler/mips64/instruction-scheduler-mips64.cc
src/compiler/ppc/code-generator-ppc.cc
src/compiler/ppc/instruction-scheduler-ppc.cc
src/compiler/x64/code-generator-x64.cc
src/compiler/x64/instruction-scheduler-x64.cc
src/compiler/x87/code-generator-x87.cc
src/compiler/x87/instruction-scheduler-x87.cc
src/flag-definitions.h
tools/gyp/v8.gyp
View unified diff
|
Download patch
« no previous file with comments
|
« src/compiler/ppc/code-generator-ppc.cc
('k') |
src/compiler/x64/code-generator-x64.cc »
('j') |
no next file with comments »
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
1
// Copyright 2015 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/compiler/instruction-scheduler.h"
6
7
namespace v8 {
8
namespace internal {
9
namespace compiler {
10
11
bool InstructionScheduler::SchedulerSupported() { return false; }
12
13
14
int InstructionScheduler::GetTargetInstructionFlags(
15
const Instruction* instr) const {
16
UNIMPLEMENTED();
17
}
18
19
20
int InstructionScheduler::GetInstructionLatency(const Instruction* instr) {
21
UNIMPLEMENTED();
22
}
23
24
} // namespace compiler
25
} // namespace internal
26
} // namespace v8
OLD
NEW
« no previous file with comments
|
« src/compiler/ppc/code-generator-ppc.cc
('k') |
src/compiler/x64/code-generator-x64.cc »
('j') |
no next file with comments »
Issue 1526913003: Reland "[turbofan] Instruction scheduler for Turbofan." (Closed)
Created 5 years ago by baptiste.afsa1
Modified 5 years ago
Reviewers: Benedikt Meurer, Jarin
Base URL: https://chromium.googlesource.com/v8/v8.git@master
Comments: 0
This is Rietveld
408576698