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

  /external/v8/src/compiler/
greedy-allocator.cc 504 for (int instruction_index = first_full_instruction;
505 instruction_index <= last_full_instruction; ++instruction_index) {
506 if (!code()->InstructionAt(instruction_index)->IsCall()) continue;
509 GetSplitPositionForInstruction(range, instruction_index);
516 FindSplitPositionAfterCall(second_part, instruction_index);
instruction.cc 703 int instruction_index) const {
706 auto end = std::lower_bound(begin, block_starts_.end(), instruction_index);
708 DCHECK(end == block_starts_.end() || *end >= instruction_index);
709 if (end == block_starts_.end() || *end > instruction_index) --end;
710 DCHECK(*end <= instruction_index);
713 DCHECK(block->code_start() <= instruction_index &&
714 instruction_index < block->code_end());
register-allocator.h     [all...]
instruction.h     [all...]
register-allocator.cc     [all...]
  /external/v8/test/cctest/compiler/
test-instruction.cc 95 BasicBlock* GetBasicBlock(int instruction_index) {
97 code->GetInstructionBlock(instruction_index);
  /external/v8/src/crankshaft/arm/
lithium-codegen-arm.h 371 int instruction_index() const { return instruction_index_; } function in class:v8::internal::LDeferredCode
lithium-codegen-arm.cc 258 instructions_->at(code->instruction_index())->hydrogen_value();
264 code->instruction_index(),
    [all...]
  /external/v8/src/crankshaft/ia32/
lithium-codegen-ia32.h 375 int instruction_index() const { return instruction_index_; } function in class:v8::internal::LDeferredCode
lithium-codegen-ia32.cc 440 instructions_->at(code->instruction_index())->hydrogen_value();
446 code->instruction_index(),
    [all...]
  /external/v8/src/crankshaft/x64/
lithium-codegen-x64.h 365 int instruction_index() const { return instruction_index_; } function in class:v8::internal::LDeferredCode
lithium-codegen-x64.cc 372 instructions_->at(code->instruction_index())->hydrogen_value();
378 code->instruction_index(),
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-codegen-arm64.h 419 int instruction_index() const { return instruction_index_; } function in class:v8::internal::LDeferredCode
lithium-codegen-arm64.cc 738 instructions_->at(code->instruction_index())->hydrogen_value();
744 code->instruction_index(),
    [all...]
  /external/v8/src/crankshaft/mips/
lithium-codegen-mips.h 405 int instruction_index() const { return instruction_index_; } function in class:v8::internal::LDeferredCode
lithium-codegen-mips.cc 273 instructions_->at(code->instruction_index())->hydrogen_value();
279 code->instruction_index(),
    [all...]
  /external/v8/src/crankshaft/mips64/
lithium-codegen-mips64.h 408 int instruction_index() const { return instruction_index_; } function in class:v8::internal::LDeferredCode
lithium-codegen-mips64.cc 248 instructions_->at(code->instruction_index())->hydrogen_value();
254 code->instruction_index(),
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-codegen-ppc.h 337 int instruction_index() const { return instruction_index_; } function in class:v8::internal::LDeferredCode
lithium-codegen-ppc.cc 259 instructions_->at(code->instruction_index())->hydrogen_value();
266 code->instruction_index(), code->instr()->hydrogen_value()->id(),
    [all...]
  /external/v8/src/crankshaft/x87/
lithium-codegen-x87.h 475 int instruction_index() const { return instruction_index_; } function in class:v8::internal::LDeferredCode
lithium-codegen-x87.cc 443 instructions_->at(code->instruction_index())->hydrogen_value();
449 code->instruction_index(),
    [all...]

Completed in 861 milliseconds