Home
last modified time | relevance | path

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

/external/v8/src/compiler/
Djump-threading.cc62 state.Clear(code->InstructionBlockCount()); in ComputeForwarding()
105 if (next < code->InstructionBlockCount()) fw = RpoNumber::FromInt(next); in ComputeForwarding()
Dcode-generator.cc41 labels_(zone()->NewArray<Label>(code->InstructionBlockCount())), in CodeGenerator()
56 for (int i = 0; i < code->InstructionBlockCount(); ++i) { in CodeGenerator()
Dinstruction.cc903 for (int i = 0; i < code.InstructionBlockCount(); i++) { in operator <<()
Dregister-allocator.cc1285 live_in_sets_(code->InstructionBlockCount(), nullptr, allocation_zone()), in RegisterAllocationData()
1286 live_out_sets_(code->InstructionBlockCount(), nullptr, allocation_zone()), in RegisterAllocationData()
2124 for (int block_id = code()->InstructionBlockCount() - 1; block_id >= 0; in BuildLiveRanges()
Dinstruction.h1194 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()