Searched defs:loop_depth (Results 1 - 10 of 10) sorted by relevance

/external/mesa3d/src/gallium/drivers/radeon/
H A Dradeon_llvm.h107 unsigned loop_depth; member in struct:radeon_llvm_context
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_emulate_loops.c352 unsigned int loop_depth = 1; local
356 loop_depth++;
358 if (!--loop_depth) {
H A Dr3xx_vertprog.c364 unsigned loop_depth = 0; local
426 && loop_depth >= R300_VS_MAX_LOOP_DEPTH)
427 || loop_depth >= R500_PVS_MAX_LOOP_DEPTH) {
432 loops[loop_depth++] = ((compiler->code->length)/ 4) + 1;
441 ret_addr = loops[--loop_depth];
445 if (loop_depth >= R300_VS_MAX_FC_OPS) {
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_vec4.cpp273 int loop_depth = 0; local
289 if (loop_depth++ == 0)
292 loop_depth--;
294 if (loop_depth == 0) {
309 if (!loop_depth) {
325 if (!loop_depth) {
H A Dbrw_fs.cpp1553 int loop_depth = 0; local
1566 loop_depth++;
1569 loop_depth--;
1580 if (loop_depth || if_depth)
/external/v8/src/compiler/
H A Dschedule.cc66 void BasicBlock::set_loop_depth(int32_t loop_depth) { argument
67 loop_depth_ = loop_depth;
H A Dschedule.h131 int32_t loop_depth() const { return loop_depth_; } function in class:v8::internal::compiler::final
132 void set_loop_depth(int32_t loop_depth);
H A Dscheduler.cc794 // O(|B| + max(loop_depth) * max(|loop|))
881 int32_t loop_depth = entry->loop_depth(); local
882 if (entry->IsLoopHeader()) --loop_depth; // Entry might be a loop header.
897 --loop_depth;
903 ++loop_depth;
909 current->id().ToInt(), loop_depth);
912 current->set_loop_depth(loop_depth);
916 current->loop_depth());
920 current->loop_depth());
1055 int loop_depth = 0; local
[all...]
/external/v8/src/full-codegen/
H A Dfull-codegen.h699 int loop_depth() { return loop_depth_; } function in class:v8::internal::FullCodeGenerator
768 uint32_t loop_depth; member in struct:v8::internal::FullCodeGenerator::BackEdgeEntry
1007 uint32_t loop_depth(uint32_t index) { function in class:v8::internal::BackEdgeTable
H A Dfull-codegen.cc93 __ dd(back_edges_[i].loop_depth);
227 DCHECK(loop_depth() > 0);
228 uint8_t depth = Min(loop_depth(), Code::kMaxLoopNestingMarker);
1827 if (static_cast<int>(back_edges.loop_depth(i)) == loop_nesting_level) {
1849 if (static_cast<int>(back_edges.loop_depth(i)) <= loop_nesting_level) {
1869 uint32_t loop_depth = back_edges.loop_depth(i); local
1870 CHECK_LE(static_cast<int>(loop_depth), Code::kMaxLoopNestingMarker);
1873 CHECK_EQ((static_cast<int>(loop_depth) <= loop_nesting_level),

Completed in 371 milliseconds