Home
last modified time | relevance | path

Searched refs:MoveOptimizer (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/compiler/
Dmove-optimizer.h16 class V8_EXPORT_PRIVATE MoveOptimizer final {
18 MoveOptimizer(Zone* local_zone, InstructionSequence* code);
61 DISALLOW_COPY_AND_ASSIGN(MoveOptimizer);
Dmove-optimizer.cc131 MoveOptimizer::MoveOptimizer(Zone* local_zone, InstructionSequence* code) in MoveOptimizer() function in v8::internal::compiler::MoveOptimizer
138 void MoveOptimizer::Run() { in Run()
168 void MoveOptimizer::RemoveClobberedDestinations(Instruction* instruction) { in RemoveClobberedDestinations()
212 void MoveOptimizer::MigrateMoves(Instruction* to, Instruction* from) { in MigrateMoves()
296 void MoveOptimizer::CompressMoves(ParallelMove* left, MoveOpVector* right) { in CompressMoves()
325 void MoveOptimizer::CompressGaps(Instruction* instruction) { in CompressGaps()
352 void MoveOptimizer::CompressBlock(InstructionBlock* block) { in CompressBlock()
372 const Instruction* MoveOptimizer::LastInstruction( in LastInstruction()
378 void MoveOptimizer::OptimizeMerge(InstructionBlock* block) { in OptimizeMerge()
524 void MoveOptimizer::FinalizeMoves(Instruction* instr) { in FinalizeMoves()
Dpipeline.cc1395 MoveOptimizer move_optimizer(temp_zone, data->sequence()); in Run()