HomeSort by relevance Sort by last modified time
    Searched refs:moves_ (Results 1 - 21 of 21) sorted by null

  /art/compiler/optimizing/
parallel_move_resolver.cc 24 DCHECK(moves_.IsEmpty());
28 for (size_t i = 0; i < moves_.Size(); ++i) {
29 const MoveOperands& move = *moves_.Get(i);
39 for (size_t i = 0; i < moves_.Size(); ++i) {
40 const MoveOperands& move = *moves_.Get(i);
47 moves_.Reset();
59 moves_.Add(move);
73 DCHECK(!moves_.Get(index)->IsPending());
74 DCHECK(!moves_.Get(index)->IsRedundant());
79 DCHECK(!moves_.Get(index)->GetSource().IsInvalid())
    [all...]
parallel_move_resolver.h 36 explicit ParallelMoveResolver(ArenaAllocator* allocator) : moves_(allocator, 32) {}
73 GrowableArray<MoveOperands*> moves_; member in class:art::ParallelMoveResolver
81 // Perform the move at the moves_ index in question (possibly requiring
parallel_move_test.cc 30 MoveOperands* move = moves_.Get(index);
42 MoveOperands* move = moves_.Get(index);
nodes.h 1546 GrowableArray<MoveOperands*> moves_; member in class:art::HParallelMove
    [all...]
code_generator_x86_64.cc     [all...]
code_generator_arm.cc     [all...]
code_generator_x86.cc     [all...]
  /external/chromium_org/v8/src/x64/
lithium-gap-resolver-x64.cc 16 : cgen_(owner), moves_(32, owner->zone()) {}
20 DCHECK(moves_.is_empty());
24 for (int i = 0; i < moves_.length(); ++i) {
25 LMoveOperands move = moves_[i];
35 for (int i = 0; i < moves_.length(); ++i) {
36 if (!moves_[i].IsEliminated()) {
37 DCHECK(moves_[i].source()->IsConstantOperand());
42 moves_.Rewind(0);
54 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
68 DCHECK(!moves_[index].IsPending())
    [all...]
lithium-gap-resolver-x64.h 29 // Perform the move at the moves_ index in question (possibly requiring
46 ZoneList<LMoveOperands> moves_; member in class:v8::internal::BASE_EMBEDDED
  /external/chromium_org/v8/src/arm/
lithium-gap-resolver-arm.cc 24 : cgen_(owner), moves_(32, owner->zone()), root_index_(0), in_cycle_(false),
32 DCHECK(moves_.is_empty());
36 for (int i = 0; i < moves_.length(); ++i) {
37 LMoveOperands move = moves_[i];
51 for (int i = 0; i < moves_.length(); ++i) {
52 if (!moves_[i].IsEliminated()) {
53 DCHECK(moves_[i].source()->IsConstantOperand());
64 moves_.Rewind(0);
76 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
97 DCHECK(!moves_[index].IsPending())
    [all...]
lithium-gap-resolver-arm.h 29 // Perform the move at the moves_ index in question (possibly requiring
51 ZoneList<LMoveOperands> moves_; member in class:v8::internal::BASE_EMBEDDED
  /external/chromium_org/v8/src/mips/
lithium-gap-resolver-mips.cc 15 moves_(32, owner->zone()),
22 DCHECK(moves_.is_empty());
26 for (int i = 0; i < moves_.length(); ++i) {
27 LMoveOperands move = moves_[i];
41 for (int i = 0; i < moves_.length(); ++i) {
42 if (!moves_[i].IsEliminated()) {
43 DCHECK(moves_[i].source()->IsConstantOperand());
48 moves_.Rewind(0);
60 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
81 DCHECK(!moves_[index].IsPending())
    [all...]
lithium-gap-resolver-mips.h 29 // Perform the move at the moves_ index in question (possibly requiring
51 ZoneList<LMoveOperands> moves_; member in class:v8::internal::BASE_EMBEDDED
  /external/chromium_org/v8/src/mips64/
lithium-gap-resolver-mips64.cc 15 moves_(32, owner->zone()),
22 DCHECK(moves_.is_empty());
26 for (int i = 0; i < moves_.length(); ++i) {
27 LMoveOperands move = moves_[i];
41 for (int i = 0; i < moves_.length(); ++i) {
42 if (!moves_[i].IsEliminated()) {
43 DCHECK(moves_[i].source()->IsConstantOperand());
48 moves_.Rewind(0);
60 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
81 DCHECK(!moves_[index].IsPending())
    [all...]
lithium-gap-resolver-mips64.h 29 // Perform the move at the moves_ index in question (possibly requiring
51 ZoneList<LMoveOperands> moves_; member in class:v8::internal::BASE_EMBEDDED
  /external/chromium_org/v8/src/x87/
lithium-gap-resolver-x87.cc 17 moves_(32, owner->zone()),
28 for (int i = 0; i < moves_.length(); ++i) {
29 LMoveOperands move = moves_[i];
39 for (int i = 0; i < moves_.length(); ++i) {
40 if (!moves_[i].IsEliminated()) {
41 DCHECK(moves_[i].source()->IsConstantOperand());
73 DCHECK(!moves_[index].IsPending());
74 DCHECK(!moves_[index].IsRedundant());
78 DCHECK(moves_[index].source() != NULL); // Or else it will look eliminated.
79 LOperand* destination = moves_[index].destination()
    [all...]
lithium-gap-resolver-x87.h 29 // Perform the move at the moves_ index in question (possibly requiring
74 ZoneList<LMoveOperands> moves_; member in class:v8::internal::BASE_EMBEDDED
  /external/chromium_org/v8/src/arm64/
lithium-gap-resolver-arm64.h 45 // Perform the move at the moves_ index in question (possibly requiring
63 masm_.StackSlotMove(moves_[index].source(), moves_[index].destination());
90 ZoneList<LMoveOperands> moves_; member in class:v8::internal::BASE_EMBEDDED
lithium-gap-resolver-arm64.cc 29 : cgen_(owner), masm_(owner, owner->masm()), moves_(32, owner->zone()),
35 DCHECK(moves_.is_empty());
41 for (int i = 0; i < moves_.length(); ++i) {
42 LMoveOperands move = moves_[i];
55 for (int i = 0; i < moves_.length(); ++i) {
56 LMoveOperands move = moves_[i];
66 moves_.Rewind(0);
78 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
89 LMoveOperands& current_move = moves_[index];
105 for (int i = 0; i < moves_.length(); ++i)
    [all...]
  /external/chromium_org/v8/src/ia32/
lithium-gap-resolver-ia32.cc 17 moves_(32, owner->zone()),
28 for (int i = 0; i < moves_.length(); ++i) {
29 LMoveOperands move = moves_[i];
39 for (int i = 0; i < moves_.length(); ++i) {
40 if (!moves_[i].IsEliminated()) {
41 DCHECK(moves_[i].source()->IsConstantOperand());
73 DCHECK(!moves_[index].IsPending());
74 DCHECK(!moves_[index].IsRedundant());
78 DCHECK(moves_[index].source() != NULL); // Or else it will look eliminated.
79 LOperand* destination = moves_[index].destination()
    [all...]
lithium-gap-resolver-ia32.h 29 // Perform the move at the moves_ index in question (possibly requiring
74 ZoneList<LMoveOperands> moves_; member in class:v8::internal::BASE_EMBEDDED

Completed in 383 milliseconds