HomeSort by: relevance | last modified time | path
    Searched defs:top_stmt (Results 1 - 2 of 2) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/
tree-ssa-math-opts.cc 5419 1) Find top_stmt which is trunc_div or trunc_mod stmt and dominates all
5421 2) Add top_stmt and all trunc_div and trunc_mod stmts dominated by top_stmt
5423 3) Insert DIVMOD call just before top_stmt and update entries in
5441 gimple *top_stmt = stmt; local
5444 /* Part 1: Try to set top_stmt to "topmost" stmt that dominates
5463 if (gimple_uid (use_stmt) < gimple_uid (top_stmt))
5464 top_stmt = use_stmt;
5469 top_stmt = use_stmt;
5474 tree top_op1 = gimple_assign_rhs1 (top_stmt);
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
tree-ssa-math-opts.cc 4430 1) Find top_stmt which is trunc_div or trunc_mod stmt and dominates all
4432 2) Add top_stmt and all trunc_div and trunc_mod stmts dominated by top_stmt
4434 3) Insert DIVMOD call just before top_stmt and update entries in
4452 gimple *top_stmt = stmt; local
4455 /* Part 1: Try to set top_stmt to "topmost" stmt that dominates
4474 if (gimple_uid (use_stmt) < gimple_uid (top_stmt))
4475 top_stmt = use_stmt;
4480 top_stmt = use_stmt;
4485 tree top_op1 = gimple_assign_rhs1 (top_stmt);
    [all...]

Completed in 19 milliseconds