Home
last modified time | relevance | path

Searched refs:InstructionBlockCount (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/compiler/
Djump-threading.cc62 state.Clear(code->InstructionBlockCount()); in ComputeForwarding()
114 if (next < code->InstructionBlockCount()) fw = RpoNumber::FromInt(next); in ComputeForwarding()
Dlive-range-separator.cc138 code->InstructionBlockCount()); in MarkRangesSpilledInDeferredBlocks()
Dcode-generator.cc40 labels_(zone()->NewArray<Label>(code->InstructionBlockCount())), in CodeGenerator()
56 for (int i = 0; i < code->InstructionBlockCount(); ++i) { in CodeGenerator()
Dinstruction.cc1019 for (int i = 0; i < code.InstructionBlockCount(); i++) { in operator <<()
Dregister-allocator.cc1368 live_in_sets_(code->InstructionBlockCount(), nullptr, allocation_zone()), in RegisterAllocationData()
1369 live_out_sets_(code->InstructionBlockCount(), nullptr, allocation_zone()), in RegisterAllocationData()
2268 for (int block_id = code()->InstructionBlockCount() - 1; block_id >= 0; in BuildLiveRanges()
Dinstruction.h1309 int InstructionBlockCount() const { in InstructionBlockCount() function
/external/v8/test/cctest/compiler/
Dtest-instruction.cc126 CHECK_EQ(static_cast<int>(blocks->size()), R.code->InstructionBlockCount()); in TEST()