Home
last modified time | relevance | path

Searched refs:LMoveOperands (Results 1 – 20 of 20) sorted by relevance

/external/v8/src/crankshaft/arm64/
Dlithium-gap-resolver-arm64.cc40 LMoveOperands move = moves_[i]; in Resolve()
54 LMoveOperands move = moves_[i]; in Resolve()
73 const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); in BuildInitialMoveList()
75 LMoveOperands move = moves->at(i); in BuildInitialMoveList()
87 LMoveOperands& current_move = moves_[index]; in PerformMove()
104 LMoveOperands other_move = moves_[i]; in PerformMove()
120 LMoveOperands other_move = moves_[root_index_]; in PerformMove()
Dlithium-gap-resolver-arm64.h90 ZoneList<LMoveOperands> moves_;
/external/v8/src/crankshaft/x64/
Dlithium-gap-resolver-x64.cc24 LMoveOperands move = moves_[i]; in Resolve()
50 const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); in BuildInitialMoveList()
52 LMoveOperands move = moves->at(i); in BuildInitialMoveList()
82 LMoveOperands other_move = moves_[i]; in PerformMove()
112 LMoveOperands other_move = moves_[i]; in PerformMove()
307 LMoveOperands other_move = moves_[i]; in EmitSwap()
Dlithium-gap-resolver-x64.h44 ZoneList<LMoveOperands> moves_;
/external/v8/src/crankshaft/ppc/
Dlithium-gap-resolver-ppc.cc28 LMoveOperands move = moves_[i]; in Resolve()
58 const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); in BuildInitialMoveList()
60 LMoveOperands move = moves->at(i); in BuildInitialMoveList()
97 LMoveOperands other_move = moves_[i]; in PerformMove()
113 LMoveOperands other_move = moves_[root_index_]; in PerformMove()
Dlithium-gap-resolver-ppc.h49 ZoneList<LMoveOperands> moves_;
/external/v8/src/crankshaft/s390/
Dlithium-gap-resolver-s390.cc27 LMoveOperands move = moves_[i]; in Resolve()
56 const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); in BuildInitialMoveList()
58 LMoveOperands move = moves->at(i); in BuildInitialMoveList()
94 LMoveOperands other_move = moves_[i]; in PerformMove()
110 LMoveOperands other_move = moves_[root_index_]; in PerformMove()
Dlithium-gap-resolver-s390.h49 ZoneList<LMoveOperands> moves_;
/external/v8/src/crankshaft/x87/
Dlithium-gap-resolver-x87.h36 void AddMove(LMoveOperands move);
72 ZoneList<LMoveOperands> moves_;
Dlithium-gap-resolver-x87.cc29 LMoveOperands move = moves_[i]; in Resolve()
56 const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); in BuildInitialMoveList()
58 LMoveOperands move = moves->at(i); in BuildInitialMoveList()
87 LMoveOperands other_move = moves_[i]; in PerformMove()
117 LMoveOperands other_move = moves_[i]; in PerformMove()
130 void LGapResolver::AddMove(LMoveOperands move) { in AddMove()
429 LMoveOperands other_move = moves_[i]; in EmitSwap()
/external/v8/src/crankshaft/ia32/
Dlithium-gap-resolver-ia32.h36 void AddMove(LMoveOperands move);
72 ZoneList<LMoveOperands> moves_;
Dlithium-gap-resolver-ia32.cc28 LMoveOperands move = moves_[i]; in Resolve()
55 const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); in BuildInitialMoveList()
57 LMoveOperands move = moves->at(i); in BuildInitialMoveList()
86 LMoveOperands other_move = moves_[i]; in PerformMove()
116 LMoveOperands other_move = moves_[i]; in PerformMove()
129 void LGapResolver::AddMove(LMoveOperands move) { in AddMove()
462 LMoveOperands other_move = moves_[i]; in EmitSwap()
/external/v8/src/crankshaft/mips64/
Dlithium-gap-resolver-mips64.cc26 LMoveOperands move = moves_[i]; in Resolve()
56 const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); in BuildInitialMoveList()
58 LMoveOperands move = moves->at(i); in BuildInitialMoveList()
95 LMoveOperands other_move = moves_[i]; in PerformMove()
111 LMoveOperands other_move = moves_[root_index_]; in PerformMove()
Dlithium-gap-resolver-mips64.h49 ZoneList<LMoveOperands> moves_;
/external/v8/src/crankshaft/arm/
Dlithium-gap-resolver-arm.cc35 LMoveOperands move = moves_[i]; in Resolve()
71 const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); in BuildInitialMoveList()
73 LMoveOperands move = moves->at(i); in BuildInitialMoveList()
110 LMoveOperands other_move = moves_[i]; in PerformMove()
126 LMoveOperands other_move = moves_[root_index_]; in PerformMove()
Dlithium-gap-resolver-arm.h49 ZoneList<LMoveOperands> moves_;
/external/v8/src/crankshaft/mips/
Dlithium-gap-resolver-mips.cc26 LMoveOperands move = moves_[i]; in Resolve()
56 const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); in BuildInitialMoveList()
58 LMoveOperands move = moves->at(i); in BuildInitialMoveList()
95 LMoveOperands other_move = moves_[i]; in PerformMove()
111 LMoveOperands other_move = moves_[root_index_]; in PerformMove()
Dlithium-gap-resolver-mips.h49 ZoneList<LMoveOperands> moves_;
/external/v8/src/crankshaft/
Dlithium.h270 class LMoveOperands final BASE_EMBEDDED {
272 LMoveOperands(LOperand* source, LOperand* destination) in LMoveOperands() function
353 move_operands_.Add(LMoveOperands(from, to), zone); in LITHIUM_OPERAND_LIST()
358 ZoneList<LMoveOperands>* move_operands() { return &move_operands_; } in LITHIUM_OPERAND_LIST()
363 ZoneList<LMoveOperands> move_operands_; in LITHIUM_OPERAND_LIST()
Dlithium-allocator.cc736 const ZoneList<LMoveOperands>* move_operands = move->move_operands(); in AddConstraintsGapMove()
738 LMoveOperands cur = move_operands->at(i); in AddConstraintsGapMove()
899 const ZoneList<LMoveOperands>* move_operands = move->move_operands(); in ProcessInstructions()
901 LMoveOperands* cur = &move_operands->at(i); in ProcessInstructions()