HomeSort by relevance Sort by last modified time
    Searched refs:loop_depth (Results 1 - 25 of 28) sorted by null

1 2

  /external/mesa3d/src/compiler/nir/
nir_opt_gcm.c 42 unsigned loop_depth; member in struct:gcm_block_info
76 unsigned loop_depth)
82 state->blocks[block->index].loop_depth = loop_depth;
87 gcm_build_block_info(&if_stmt->then_list, state, loop_depth);
88 gcm_build_block_info(&if_stmt->else_list, state, loop_depth);
93 gcm_build_block_info(&loop->body, state, loop_depth + 1);
330 if (state->blocks[block->index].loop_depth <
331 state->blocks[best->index].loop_depth)
  /external/v8/src/interpreter/
control-flow-builders.cc 66 void LoopBuilder::JumpToHeader(int loop_depth) {
69 int level = Min(loop_depth, AbstractCode::kMaxLoopNestingMarker - 1);
control-flow-builders.h 91 void JumpToHeader(int loop_depth);
bytecode-array-builder.h 327 BytecodeArrayBuilder& JumpLoop(BytecodeLabel* label, int loop_depth);
bytecode-array-builder.cc 881 int loop_depth) {
883 OutputJumpLoop(label, 0, loop_depth);
    [all...]
  /external/v8/src/compiler/
scheduler.cc 794 // 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;
1055 int loop_depth = 0; local
    [all...]
schedule.h 134 int32_t loop_depth() const { return loop_depth_; } function in class:v8::internal::compiler::final
135 void set_loop_depth(int32_t loop_depth);
schedule.cc 66 void BasicBlock::set_loop_depth(int32_t loop_depth) {
67 loop_depth_ = loop_depth;
graph-visualizer.cc 450 PrintIntProperty("loop_depth", current->loop_depth());
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_emulate_loops.c 353 unsigned int loop_depth = 1; local
357 loop_depth++;
359 if (!--loop_depth) {
r3xx_vertprog.c 371 unsigned loop_depth = 0; local
434 && loop_depth >= R300_VS_MAX_LOOP_DEPTH)
435 || loop_depth >= R500_PVS_MAX_LOOP_DEPTH) {
440 loops[loop_depth++] = ((compiler->code->length)/ 4) + 1;
449 ret_addr = loops[--loop_depth];
453 if (loop_depth >= R300_VS_MAX_FC_OPS) {
  /external/v8/src/full-codegen/
full-codegen.cc 151 __ dd(back_edges_[i].loop_depth);
304 DCHECK(loop_depth() > 0);
305 uint8_t depth = Min(loop_depth(), AbstractCode::kMaxLoopNestingMarker);
1524 uint32_t loop_depth = back_edges.loop_depth(i); local
    [all...]
full-codegen.h 553 int loop_depth() { return loop_depth_; } function in class:v8::internal::final
618 uint32_t loop_depth; member in struct:v8::internal::final::BackEdgeEntry
846 uint32_t loop_depth(uint32_t index) { function in class:v8::internal::BackEdgeTable
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_reg_allocate.cpp 322 int loop_depth = 0; local
332 loop_depth++;
339 if (loop_depth == 1)
343 loop_depth--;
350 if (loop_depth > 0)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
cfgloop.h 444 loop_depth (const struct loop *loop) function
454 return bb->loop_father ? loop_depth (bb->loop_father) : 0;
  /external/mesa3d/src/gallium/state_trackers/nine/
nine_shader.c 494 unsigned loop_depth; member in struct:shader_translator
807 tx->loop_depth++;
808 if (tx->loop_depth_max < tx->loop_depth)
809 tx->loop_depth_max = tx->loop_depth;
810 assert(tx->loop_depth < NINE_MAX_LOOP_DEPTH);
811 return &tx->loop_labels[tx->loop_depth - 1];
817 assert(tx->loop_depth);
818 tx->loop_depth--;
819 ureg_fixup_label(tx->ureg, tx->loop_labels[tx->loop_depth],
821 return &tx->loop_labels[tx->loop_depth];
    [all...]
  /art/compiler/optimizing/
register_allocator_graph_color.cc 86 for (size_t loop_depth = LoopDepthAt(block); loop_depth > 0; --loop_depth) {
    [all...]
  /external/v8/src/full-codegen/arm/
full-codegen-arm.cc 324 DCHECK(loop_depth() == 0);
326 DCHECK(loop_depth() == 0);
    [all...]
  /external/v8/src/full-codegen/arm64/
full-codegen-arm64.cc 324 DCHECK(loop_depth() == 0);
326 DCHECK(loop_depth() == 0);
    [all...]
  /external/v8/src/full-codegen/ia32/
full-codegen-ia32.cc 313 DCHECK(loop_depth() == 0);
315 DCHECK(loop_depth() == 0);
    [all...]
  /external/v8/src/full-codegen/mips/
full-codegen-mips.cc 333 DCHECK(loop_depth() == 0);
335 DCHECK(loop_depth() == 0);
    [all...]
  /external/v8/src/full-codegen/mips64/
full-codegen-mips64.cc 331 DCHECK(loop_depth() == 0);
335 DCHECK(loop_depth() == 0);
    [all...]
  /external/v8/src/full-codegen/ppc/
full-codegen-ppc.cc 327 DCHECK(loop_depth() == 0);
329 DCHECK(loop_depth() == 0);
    [all...]
  /external/v8/src/full-codegen/s390/
full-codegen-s390.cc 331 DCHECK(loop_depth() == 0);
333 DCHECK(loop_depth() == 0);
    [all...]
  /external/v8/src/full-codegen/x64/
full-codegen-x64.cc 312 DCHECK(loop_depth() == 0);
314 DCHECK(loop_depth() == 0);
    [all...]

Completed in 2408 milliseconds

1 2