Home
last modified time | relevance | path

Searched refs:flow_depth (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/amd/common/
Dac_llvm_build.c1910 if (ctx->flow_depth > 0) in get_current_flow()
1911 return &ctx->flow[ctx->flow_depth - 1]; in get_current_flow()
1918 for (unsigned i = ctx->flow_depth; i > 0; --i) { in get_innermost_loop()
1930 if (ctx->flow_depth >= ctx->flow_depth_max) { in push_flow()
1931 unsigned new_max = MAX2(ctx->flow_depth << 1, in push_flow()
1938 flow = &ctx->flow[ctx->flow_depth]; in push_flow()
1939 ctx->flow_depth++; in push_flow()
1959 assert(ctx->flow_depth >= 1); in append_basic_block()
1961 if (ctx->flow_depth >= 2) { in append_basic_block()
1962 struct ac_llvm_flow *flow = &ctx->flow[ctx->flow_depth - 2]; in append_basic_block()
[all …]
Dac_llvm_build.h76 unsigned flow_depth; member