Home
last modified time | relevance | path

Searched refs:loop_depth (Results 1 – 22 of 22) sorted by relevance

/external/v8/src/compiler/
Dscheduler.cc881 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 …]
Dschedule.h131 int32_t loop_depth() const { return loop_depth_; } in loop_depth() function
132 void set_loop_depth(int32_t loop_depth);
Dschedule.cc66 void BasicBlock::set_loop_depth(int32_t loop_depth) { in set_loop_depth() argument
67 loop_depth_ = loop_depth; in set_loop_depth()
Dgraph-visualizer.cc428 PrintIntProperty("loop_depth", current->loop_depth()); in PrintSchedule()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_vec4.cpp273 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()
Dbrw_fs.cpp1553 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/
Dradeon_emulate_loops.c352 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()
Dr3xx_vertprog.c364 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/
Dradeon_llvm.h107 unsigned loop_depth; member
Dradeon_setup_tgsi_llvm.c45 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/
Dfull-codegen.cc93 __ 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()
Dfull-codegen.h699 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/
Dfull-codegen-ia32.cc321 DCHECK(loop_depth() == 0); in Generate()
323 DCHECK(loop_depth() == 0); in Generate()
/external/v8/src/full-codegen/x87/
Dfull-codegen-x87.cc318 DCHECK(loop_depth() == 0); in Generate()
320 DCHECK(loop_depth() == 0); in Generate()
/external/v8/src/full-codegen/arm64/
Dfull-codegen-arm64.cc330 DCHECK(loop_depth() == 0); in Generate()
332 DCHECK(loop_depth() == 0); in Generate()
/external/v8/src/full-codegen/x64/
Dfull-codegen-x64.cc316 DCHECK(loop_depth() == 0); in Generate()
318 DCHECK(loop_depth() == 0); in Generate()
/external/v8/src/full-codegen/mips64/
Dfull-codegen-mips64.cc335 DCHECK(loop_depth() == 0); in Generate()
339 DCHECK(loop_depth() == 0); in Generate()
/external/v8/src/full-codegen/arm/
Dfull-codegen-arm.cc329 DCHECK(loop_depth() == 0); in Generate()
331 DCHECK(loop_depth() == 0); in Generate()
/external/v8/src/full-codegen/s390/
Dfull-codegen-s390.cc338 DCHECK(loop_depth() == 0); in Generate()
340 DCHECK(loop_depth() == 0); in Generate()
/external/v8/src/full-codegen/ppc/
Dfull-codegen-ppc.cc331 DCHECK(loop_depth() == 0); in Generate()
333 DCHECK(loop_depth() == 0); in Generate()
/external/v8/src/full-codegen/mips/
Dfull-codegen-mips.cc338 DCHECK(loop_depth() == 0); in Generate()
340 DCHECK(loop_depth() == 0); in Generate()
/external/v8/src/
Dobjects.cc14395 << back_edges.loop_depth(i) << "\n"; in Disassemble()