HomeSort by relevance Sort by last modified time
    Searched refs:instructions_ (Results 1 - 25 of 27) sorted by null

1 2

  /external/v8/src/compiler/
graph-visualizer.h 54 instructions_(instructions),
58 const InstructionSequence* instructions_; member in struct:v8::internal::compiler::AsC1V
instruction-selector.cc 34 instructions_(zone),
40 instructions_.reserve(node_count);
79 AddInstruction(instructions_[start]);
213 instructions_.push_back(instr);
657 int current_block_end = static_cast<int>(instructions_.size());
662 std::reverse(instructions_.begin() + current_block_end, instructions_.end());
671 size_t current_node_end = instructions_.size();
673 std::reverse(instructions_.begin() + current_node_end, instructions_.end())
    [all...]
instruction.cc 645 instructions_(zone()),
670 int code_start = static_cast<int>(instructions_.size());
677 int end = static_cast<int>(instructions_.size());
681 end = static_cast<int>(instructions_.size());
689 int index = static_cast<int>(instructions_.size());
690 instructions_.push_back(instr);
instruction.h 1339 InstructionDeque instructions_; local
    [all...]
instruction-selector.h 269 ZoneVector<Instruction*> instructions_; member in class:v8::internal::compiler::final
graph-visualizer.cc 596 .PrintSchedule(ac.phase_, ac.schedule_, ac.positions_, ac.instructions_);
  /external/v8/src/crankshaft/
lithium.cc 267 instructions_(32, info->zone()),
277 return LLabel::cast(instructions_[first_instruction]);
336 instructions_.Add(gap, zone());
337 index = instructions_.length();
338 instructions_.Add(instr, zone());
340 index = instructions_.length();
341 instructions_.Add(instr, zone());
342 instructions_.Add(gap, zone());
377 return LGap::cast(instructions_[index]);
382 return instructions_[index]->IsGap()
    [all...]
lithium-codegen.h 79 const ZoneList<LInstruction*>* instructions_; member in class:v8::internal::BASE_EMBEDDED
lithium-codegen.cc 55 instructions_(chunk->instructions()),
69 !is_aborted() && current_instruction_ < instructions_->length();
71 LInstruction* instr = instructions_->at(current_instruction_);
117 for (int i = 0; i < instructions_->length(); i++) {
118 LInstruction* instr = instructions_->at(i);
lithium.h 645 const ZoneList<LInstruction*>* instructions() const { return &instructions_; }
698 ZoneList<LInstruction*> instructions_; member in class:v8::internal::LChunk
  /art/compiler/optimizing/
nodes.cc 781 instructions_.InsertInstructionBefore(replacement, initial);
803 to_block->instructions_.InsertInstructionBefore(insn, cursor);
818 Add(&instructions_, this, instruction);
835 instructions_.InsertInstructionBefore(instruction, cursor);
849 instructions_.InsertInstructionAfter(instruction, cursor);
    [all...]
nodes.h 903 HInstruction* GetFirstInstruction() const { return instructions_.first_instruction_; }
904 HInstruction* GetLastInstruction() const { return instructions_.last_instruction_; }
905 const HInstructionList& GetInstructions() const { return instructions_; }
1145 HInstructionList instructions_; member in class:art::HBasicBlock
    [all...]
  /external/v8/test/unittests/compiler/
instruction-selector-unittest.h 134 size_t size() const { return instructions_.size(); }
137 return instructions_[index];
242 std::deque<Instruction*> instructions_; member in class:v8::internal::compiler::InstructionSelectorTest::final
instruction-sequence-unittest.h 239 Instructions instructions_; member in class:v8::internal::compiler::InstructionSequenceTest
instruction-sequence-unittest.cc 60 CHECK(instructions_.empty());
instruction-selector-unittest.cc 93 s.instructions_.push_back(instr);
  /external/v8/src/ia32/
disasm-ia32.cc 156 const InstructionDesc& Get(byte x) const { return instructions_[x]; }
163 InstructionDesc instructions_[256]; member in class:disasm::InstructionTable
183 instructions_[i].mnem = "";
184 instructions_[i].type = NO_INSTR;
185 instructions_[i].op_order_ = UNSET_OP_ORDER;
209 InstructionDesc* id = &instructions_[bm[i].b];
223 InstructionDesc* id = &instructions_[b];
233 InstructionDesc* id = &instructions_[b];
    [all...]
  /external/v8/src/x87/
disasm-x87.cc 156 const InstructionDesc& Get(byte x) const { return instructions_[x]; }
163 InstructionDesc instructions_[256]; member in class:disasm::InstructionTable
183 instructions_[i].mnem = "";
184 instructions_[i].type = NO_INSTR;
185 instructions_[i].op_order_ = UNSET_OP_ORDER;
209 InstructionDesc* id = &instructions_[bm[i].b];
223 InstructionDesc* id = &instructions_[b];
233 InstructionDesc* id = &instructions_[b];
    [all...]
  /external/v8/src/x64/
disasm-x64.cc 169 return instructions_[x];
173 InstructionDesc instructions_[256]; member in class:disasm::InstructionTable
191 instructions_[i].mnem = "(bad)";
192 instructions_[i].type = NO_INSTR;
193 instructions_[i].op_order_ = UNSET_OP_ORDER;
194 instructions_[i].byte_size_operation = false;
214 InstructionDesc* id = &instructions_[bm[i].b];
232 InstructionDesc* id = &instructions_[b];
243 InstructionDesc* id = &instructions_[b];
    [all...]
  /external/v8/src/crankshaft/arm/
lithium-codegen-arm.cc 258 instructions_->at(code->instruction_index())->hydrogen_value();
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-codegen-arm64.cc 738 instructions_->at(code->instruction_index())->hydrogen_value();
    [all...]
  /external/v8/src/crankshaft/ia32/
lithium-codegen-ia32.cc 440 instructions_->at(code->instruction_index())->hydrogen_value();
    [all...]
  /external/v8/src/crankshaft/mips/
lithium-codegen-mips.cc 273 instructions_->at(code->instruction_index())->hydrogen_value();
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-codegen-ppc.cc 259 instructions_->at(code->instruction_index())->hydrogen_value();
    [all...]
  /external/v8/src/crankshaft/x64/
lithium-codegen-x64.cc 372 instructions_->at(code->instruction_index())->hydrogen_value();
    [all...]

Completed in 1120 milliseconds

1 2