/external/v8/src/compiler/ |
D | scheduler.cc | 881 int32_t loop_depth = entry->loop_depth(); in ComputeAndInsertSpecialRPO() local 882 if (entry->IsLoopHeader()) --loop_depth; // Entry might be a loop header. in ComputeAndInsertSpecialRPO() 897 --loop_depth; in ComputeAndInsertSpecialRPO() 903 ++loop_depth; in ComputeAndInsertSpecialRPO() 909 current->id().ToInt(), loop_depth); in ComputeAndInsertSpecialRPO() 912 current->set_loop_depth(loop_depth); in ComputeAndInsertSpecialRPO() 916 current->loop_depth()); in ComputeAndInsertSpecialRPO() 920 current->loop_depth()); in ComputeAndInsertSpecialRPO() 1009 if (block->loop_depth() > 0) { in PrintRPO() 1010 os << " depth: " << block->loop_depth(); in PrintRPO() [all …]
|
D | schedule.h | 131 int32_t loop_depth() const { return loop_depth_; } in loop_depth() function 132 void set_loop_depth(int32_t loop_depth);
|
D | schedule.cc | 66 void BasicBlock::set_loop_depth(int32_t loop_depth) { in set_loop_depth() argument 67 loop_depth_ = loop_depth; in set_loop_depth()
|
D | graph-visualizer.cc | 428 PrintIntProperty("loop_depth", current->loop_depth()); in PrintSchedule()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_vec4.cpp | 273 int loop_depth = 0; in calculate_live_intervals() local 289 if (loop_depth++ == 0) in calculate_live_intervals() 292 loop_depth--; in calculate_live_intervals() 294 if (loop_depth == 0) { in calculate_live_intervals() 309 if (!loop_depth) { in calculate_live_intervals() 325 if (!loop_depth) { in calculate_live_intervals()
|
D | brw_fs.cpp | 1553 int loop_depth = 0; in register_coalesce() local 1566 loop_depth++; in register_coalesce() 1569 loop_depth--; in register_coalesce() 1580 if (loop_depth || if_depth) in register_coalesce()
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
D | radeon_emulate_loops.c | 352 unsigned int loop_depth = 1; in build_loop_info() local 356 loop_depth++; in build_loop_info() 358 if (!--loop_depth) { in build_loop_info()
|
D | r3xx_vertprog.c | 364 unsigned loop_depth = 0; in translate_vertex_program() local 426 && loop_depth >= R300_VS_MAX_LOOP_DEPTH) in translate_vertex_program() 427 || loop_depth >= R500_PVS_MAX_LOOP_DEPTH) { in translate_vertex_program() 432 loops[loop_depth++] = ((compiler->code->length)/ 4) + 1; in translate_vertex_program() 441 ret_addr = loops[--loop_depth]; in translate_vertex_program() 445 if (loop_depth >= R300_VS_MAX_FC_OPS) { in translate_vertex_program()
|
/external/mesa3d/src/gallium/drivers/radeon/ |
D | radeon_llvm.h | 107 unsigned loop_depth; member
|
D | radeon_setup_tgsi_llvm.c | 45 return ctx->loop_depth > 0 ? ctx->loop + (ctx->loop_depth - 1) : NULL; in get_current_loop() 360 ctx->loop_depth++; in bgnloop_emit() 361 ctx->loop[ctx->loop_depth - 1].loop_block = loop_block; in bgnloop_emit() 362 ctx->loop[ctx->loop_depth - 1].endloop_block = endloop_block; in bgnloop_emit() 469 ctx->loop_depth--; in endloop_emit()
|
/external/v8/src/full-codegen/ |
D | full-codegen.cc | 93 __ dd(back_edges_[i].loop_depth); in EmitBackEdgeTable() 227 DCHECK(loop_depth() > 0); in RecordBackEdge() 228 uint8_t depth = Min(loop_depth(), Code::kMaxLoopNestingMarker); in RecordBackEdge() 1827 if (static_cast<int>(back_edges.loop_depth(i)) == loop_nesting_level) { in Patch() 1849 if (static_cast<int>(back_edges.loop_depth(i)) <= loop_nesting_level) { in Revert() 1869 uint32_t loop_depth = back_edges.loop_depth(i); in Verify() local 1870 CHECK_LE(static_cast<int>(loop_depth), Code::kMaxLoopNestingMarker); in Verify() 1873 CHECK_EQ((static_cast<int>(loop_depth) <= loop_nesting_level), in Verify()
|
D | full-codegen.h | 699 int loop_depth() { return loop_depth_; } in loop_depth() function 768 uint32_t loop_depth; member 1007 uint32_t loop_depth(uint32_t index) { in loop_depth() function
|
/external/v8/src/full-codegen/ia32/ |
D | full-codegen-ia32.cc | 321 DCHECK(loop_depth() == 0); in Generate() 323 DCHECK(loop_depth() == 0); in Generate()
|
/external/v8/src/full-codegen/x87/ |
D | full-codegen-x87.cc | 318 DCHECK(loop_depth() == 0); in Generate() 320 DCHECK(loop_depth() == 0); in Generate()
|
/external/v8/src/full-codegen/arm64/ |
D | full-codegen-arm64.cc | 330 DCHECK(loop_depth() == 0); in Generate() 332 DCHECK(loop_depth() == 0); in Generate()
|
/external/v8/src/full-codegen/x64/ |
D | full-codegen-x64.cc | 316 DCHECK(loop_depth() == 0); in Generate() 318 DCHECK(loop_depth() == 0); in Generate()
|
/external/v8/src/full-codegen/mips64/ |
D | full-codegen-mips64.cc | 335 DCHECK(loop_depth() == 0); in Generate() 339 DCHECK(loop_depth() == 0); in Generate()
|
/external/v8/src/full-codegen/arm/ |
D | full-codegen-arm.cc | 329 DCHECK(loop_depth() == 0); in Generate() 331 DCHECK(loop_depth() == 0); in Generate()
|
/external/v8/src/full-codegen/s390/ |
D | full-codegen-s390.cc | 338 DCHECK(loop_depth() == 0); in Generate() 340 DCHECK(loop_depth() == 0); in Generate()
|
/external/v8/src/full-codegen/ppc/ |
D | full-codegen-ppc.cc | 331 DCHECK(loop_depth() == 0); in Generate() 333 DCHECK(loop_depth() == 0); in Generate()
|
/external/v8/src/full-codegen/mips/ |
D | full-codegen-mips.cc | 338 DCHECK(loop_depth() == 0); in Generate() 340 DCHECK(loop_depth() == 0); in Generate()
|
/external/v8/src/ |
D | objects.cc | 14395 << back_edges.loop_depth(i) << "\n"; in Disassemble()
|