OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:prev_instr
(Results
1 - 3
of
3
) sorted by null
/external/v8/src/compiler/
move-optimizer.cc
154
Instruction*
prev_instr
= nullptr;
local
179
if (
prev_instr
!= nullptr) {
181
// Smash first into
prev_instr
, killing left.
182
ParallelMove* pred_moves =
prev_instr
->parallel_moves()[0];
185
// Slide
prev_instr
down so we always know where to look for it.
186
std::swap(
prev_instr
->parallel_moves()[0], instr->parallel_moves()[0]);
189
prev_instr
= instr->parallel_moves()[0] == nullptr ? nullptr : instr;
191
if (
prev_instr
!= nullptr) {
192
to_finalize_.push_back(
prev_instr
);
193
prev_instr
= nullptr
[
all
...]
/external/v8/src/crankshaft/
lithium-allocator.cc
759
LInstruction*
prev_instr
= NULL;
local
761
if (i > start)
prev_instr
= InstructionAt(i - 1);
762
MeetConstraintsBetween(
prev_instr
, instr, i);
[
all
...]
hydrogen.cc
9993
HInstruction*
prev_instr
= instr->previous();
local
[
all
...]
Completed in 2643 milliseconds