HomeSort by relevance Sort by last modified time
    Searched defs:AddInstruction (Results 1 - 15 of 15) sorted by null

  /external/v8/src/compiler/
instruction-scheduler.cc 62 void InstructionScheduler::AddInstruction(Instruction* instr) {
151 sequence()->AddInstruction((*candidate)->instruction());
instruction.cc 680 AddInstruction(Instruction::New(zone(), kArchNop));
688 int InstructionSequence::AddInstruction(Instruction* instr) {
instruction-selector.cc 79 AddInstruction(instructions_[start]);
108 void InstructionSelector::AddInstruction(Instruction* instr) {
112 scheduler_->AddInstruction(instr);
114 sequence()->AddInstruction(instr);
    [all...]
  /external/v8/test/unittests/compiler/
instruction-sequence-unittest.cc 303 return AddInstruction(instruction);
309 return AddInstruction(instruction);
316 return AddInstruction(instruction);
500 return AddInstruction(instruction);
504 Instruction* InstructionSequenceTest::AddInstruction(Instruction* instruction) {
505 sequence()->AddInstruction(instruction);
  /external/v8/src/crankshaft/
lithium.cc 331 void LChunk::AddInstruction(LInstruction* instr, HBasicBlock* block) {
hydrogen.cc 132 void HBasicBlock::AddInstruction(HInstruction* instr, SourcePosition position) {
203 AddInstruction(end, position);
219 AddInstruction(new(zone())
240 AddInstruction(new(zone()) HLeaveInlined(state->entry(), argument_count),
    [all...]
  /art/compiler/optimizing/
nodes.cc 324 new_block->AddInstruction(new (arena_) HGoto(successor->GetDexPc()));
346 pre_header->AddInstruction(new (arena_) HGoto(header->GetDexPc()));
497 entry_block_->AddInstruction(constant);
528 entry_block_->AddInstruction(cached_current_method_);
814 instruction_list->AddInstruction(instruction);
817 void HBasicBlock::AddInstruction(HInstruction* instruction) {
    [all...]
  /external/v8/src/crankshaft/arm/
lithium-arm.cc 832 chunk_->AddInstruction(dummy, current_block_);
849 AddInstruction(instr, current);
856 void LChunkBuilder::AddInstruction(LInstruction* instr,
898 chunk_->AddInstruction(instr, current_block_);
909 chunk_->AddInstruction(bailout, current_block_);
1015 AddInstruction(new(zone()) LPushArgument(argument), instr);
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-arm64.cc 674 chunk_->AddInstruction(dummy, current_block_);
691 AddInstruction(instr, current);
698 void LChunkBuilder::AddInstruction(LInstruction* instr,
740 chunk_->AddInstruction(instr, current_block_);
751 chunk_->AddInstruction(bailout, current_block_);
    [all...]
  /external/v8/src/crankshaft/ia32/
lithium-ia32.cc 871 chunk_->AddInstruction(dummy, current_block_);
888 AddInstruction(instr, current);
895 void LChunkBuilder::AddInstruction(LInstruction* instr,
937 chunk_->AddInstruction(instr, current_block_);
948 chunk_->AddInstruction(bailout, current_block_);
1056 AddInstruction(new(zone()) LPushArgument(argument), instr);
    [all...]
  /external/v8/src/crankshaft/mips/
lithium-mips.cc 842 chunk_->AddInstruction(dummy, current_block_);
859 AddInstruction(instr, current);
866 void LChunkBuilder::AddInstruction(LInstruction* instr,
908 chunk_->AddInstruction(instr, current_block_);
919 chunk_->AddInstruction(bailout, current_block_);
1020 AddInstruction(new(zone()) LPushArgument(argument), instr);
    [all...]
  /external/v8/src/crankshaft/mips64/
lithium-mips64.cc 842 chunk_->AddInstruction(dummy, current_block_);
859 AddInstruction(instr, current);
866 void LChunkBuilder::AddInstruction(LInstruction* instr,
908 chunk_->AddInstruction(instr, current_block_);
919 chunk_->AddInstruction(bailout, current_block_);
1020 AddInstruction(new(zone()) LPushArgument(argument), instr);
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-ppc.cc 846 chunk_->AddInstruction(dummy, current_block_);
863 AddInstruction(instr, current);
870 void LChunkBuilder::AddInstruction(LInstruction* instr,
912 chunk_->AddInstruction(instr, current_block_);
923 chunk_->AddInstruction(bailout, current_block_);
1027 AddInstruction(new (zone()) LPushArgument(argument), instr);
    [all...]
  /external/v8/src/crankshaft/x64/
lithium-x64.cc 856 chunk_->AddInstruction(dummy, current_block_);
873 AddInstruction(instr, current);
880 void LChunkBuilder::AddInstruction(LInstruction* instr,
922 chunk_->AddInstruction(instr, current_block_);
933 chunk_->AddInstruction(bailout, current_block_);
1037 AddInstruction(new(zone()) LPushArgument(argument), instr);
    [all...]
  /external/v8/src/crankshaft/x87/
lithium-x87.cc 869 chunk_->AddInstruction(dummy, current_block_);
882 chunk_->AddInstruction(clobber, current_block_);
894 AddInstruction(instr, current);
901 void LChunkBuilder::AddInstruction(LInstruction* instr,
951 chunk_->AddInstruction(clobber, current_block_);
953 chunk_->AddInstruction(instr, current_block_);
964 chunk_->AddInstruction(bailout, current_block_);
    [all...]

Completed in 359 milliseconds