HomeSort by: relevance | last modified time | path
    Searched defs:asm_stmt (Results 1 - 25 of 28) sorted by relevancy

1 2

  /src/external/gpl3/gcc/dist/gcc/
gimple-streamer-out.cc 112 gasm *asm_stmt = as_a <gasm *> (stmt); local
113 streamer_write_uhwi (ob, gimple_asm_ninputs (asm_stmt));
114 streamer_write_uhwi (ob, gimple_asm_noutputs (asm_stmt));
115 streamer_write_uhwi (ob, gimple_asm_nclobbers (asm_stmt));
116 streamer_write_uhwi (ob, gimple_asm_nlabels (asm_stmt));
118 gimple_asm_string (asm_stmt), true);
gimple-streamer-in.cc 135 gasm *asm_stmt = as_a <gasm *> (stmt); local
137 asm_stmt->ni = streamer_read_uhwi (ib);
138 asm_stmt->no = streamer_read_uhwi (ib);
139 asm_stmt->nc = streamer_read_uhwi (ib);
140 asm_stmt->nl = streamer_read_uhwi (ib);
142 asm_stmt->string = TREE_STRING_POINTER (str);
221 gasm *asm_stmt = as_a <gasm *> (stmt); local
224 for (i = 0; i < gimple_asm_noutputs (asm_stmt); i++)
226 tree op = TREE_VALUE (gimple_asm_output_op (asm_stmt, i));
gimplify-me.cc 184 gasm *asm_stmt = as_a <gasm *> (stmt); local
185 size_t i, noutputs = gimple_asm_noutputs (asm_stmt);
193 tree op = gimple_asm_output_op (asm_stmt, i);
202 for (i = 0; i < gimple_asm_ninputs (asm_stmt); i++)
204 tree op = gimple_asm_input_op (asm_stmt, i);
sanopt.cc 288 gasm *asm_stmt; local
291 || ((asm_stmt = dyn_cast <gasm *> (stmt))
292 && (gimple_asm_clobbers_memory_p (asm_stmt)
293 || gimple_asm_volatile_p (asm_stmt))))
818 gasm *asm_stmt = dyn_cast <gasm *> (stmt); local
819 if (asm_stmt
821 && (gimple_asm_clobbers_memory_p (asm_stmt)
822 || gimple_asm_volatile_p (asm_stmt)))
tree-ssa-coalesce.cc 1162 gasm *asm_stmt = as_a <gasm *> (stmt); local
1166 noutputs = gimple_asm_noutputs (asm_stmt);
1167 ninputs = gimple_asm_ninputs (asm_stmt);
1171 link = gimple_asm_output_op (asm_stmt, i);
1182 link = gimple_asm_input_op (asm_stmt, i);
tree-ssa.cc 1943 gasm *asm_stmt = as_a <gasm *> (stmt); local
1944 for (i = 0; i < gimple_asm_noutputs (asm_stmt); ++i)
1946 tree link = gimple_asm_output_op (asm_stmt, i);
1961 for (i = 0; i < gimple_asm_ninputs (asm_stmt); ++i)
1963 tree link = gimple_asm_input_op (asm_stmt, i);
2252 gasm *asm_stmt = as_a <gasm *> (stmt); local
2254 for (i = 0; i < gimple_asm_noutputs (asm_stmt); ++i)
2256 tree link = gimple_asm_output_op (asm_stmt, i);
2260 for (i = 0; i < gimple_asm_ninputs (asm_stmt); ++i)
2262 tree link = gimple_asm_input_op (asm_stmt, i)
    [all...]
ipa-param-manipulation.cc 2398 gasm *asm_stmt = as_a <gasm *> (*stmt); local
2399 for (unsigned i = 0; i < gimple_asm_ninputs (asm_stmt); i++)
2401 t = &TREE_VALUE (gimple_asm_input_op (asm_stmt, i));
2404 for (unsigned i = 0; i < gimple_asm_noutputs (asm_stmt); i++)
2406 t = &TREE_VALUE (gimple_asm_output_op (asm_stmt, i));
ipa-sra.cc 2087 gasm *asm_stmt = as_a <gasm *> (stmt); local
2088 walk_stmt_load_store_addr_ops (asm_stmt, NULL, NULL, NULL,
2093 for (unsigned i = 0; i < gimple_asm_ninputs (asm_stmt); i++)
2095 tree t = TREE_VALUE (gimple_asm_input_op (asm_stmt, i));
2098 for (unsigned i = 0; i < gimple_asm_noutputs (asm_stmt); i++)
2100 tree t = TREE_VALUE (gimple_asm_output_op (asm_stmt, i));
tree-sra.cc 1691 gasm *asm_stmt = as_a <gasm *> (stmt); local
1692 if (stmt_ends_bb_p (asm_stmt)
1693 && !single_succ_p (gimple_bb (asm_stmt)))
1695 for (i = 0; i < gimple_asm_ninputs (asm_stmt); i++)
1697 t = TREE_VALUE (gimple_asm_input_op (asm_stmt, i));
1700 for (i = 0; i < gimple_asm_noutputs (asm_stmt); i++)
1702 t = TREE_VALUE (gimple_asm_output_op (asm_stmt, i));
1708 for (i = 0; i < gimple_asm_ninputs (asm_stmt); i++)
1710 t = TREE_VALUE (gimple_asm_input_op (asm_stmt, i));
1711 ret |= build_access_from_expr (t, asm_stmt, false)
5033 gasm *asm_stmt = as_a <gasm *> (stmt); local
    [all...]
gimple-fold.cc 6308 gasm *asm_stmt = as_a <gasm *> (stmt); local
6309 for (i = 0; i < gimple_asm_noutputs (asm_stmt); ++i)
6311 tree link = gimple_asm_output_op (asm_stmt, i);
6317 for (i = 0; i < gimple_asm_ninputs (asm_stmt); ++i)
6319 tree link = gimple_asm_input_op (asm_stmt, i);
tree-cfg.cc 1700 gasm *asm_stmt = as_a <gasm *> (stmt); local
1701 int i, n = gimple_asm_nlabels (asm_stmt);
1705 tree cons = gimple_asm_label_op (asm_stmt, i);
6266 gasm *asm_stmt = as_a <gasm *> (stmt); local
6267 int i, n = gimple_asm_nlabels (asm_stmt);
6272 tree cons = gimple_asm_label_op (asm_stmt, i);
8870 if (gasm *asm_stmt = dyn_cast <gasm *> (t))
8871 if (gimple_asm_volatile_p (asm_stmt) || gimple_asm_input_p (asm_stmt))
  /src/external/gpl3/gcc.old/dist/gcc/
gimple-streamer-out.cc 112 gasm *asm_stmt = as_a <gasm *> (stmt); local
113 streamer_write_uhwi (ob, gimple_asm_ninputs (asm_stmt));
114 streamer_write_uhwi (ob, gimple_asm_noutputs (asm_stmt));
115 streamer_write_uhwi (ob, gimple_asm_nclobbers (asm_stmt));
116 streamer_write_uhwi (ob, gimple_asm_nlabels (asm_stmt));
118 gimple_asm_string (asm_stmt), true);
gimple-streamer-in.cc 135 gasm *asm_stmt = as_a <gasm *> (stmt); local
137 asm_stmt->ni = streamer_read_uhwi (ib);
138 asm_stmt->no = streamer_read_uhwi (ib);
139 asm_stmt->nc = streamer_read_uhwi (ib);
140 asm_stmt->nl = streamer_read_uhwi (ib);
142 asm_stmt->string = TREE_STRING_POINTER (str);
221 gasm *asm_stmt = as_a <gasm *> (stmt); local
224 for (i = 0; i < gimple_asm_noutputs (asm_stmt); i++)
226 tree op = TREE_VALUE (gimple_asm_output_op (asm_stmt, i));
gimplify-me.cc 184 gasm *asm_stmt = as_a <gasm *> (stmt); local
185 size_t i, noutputs = gimple_asm_noutputs (asm_stmt);
193 tree op = gimple_asm_output_op (asm_stmt, i);
202 for (i = 0; i < gimple_asm_ninputs (asm_stmt); i++)
204 tree op = gimple_asm_input_op (asm_stmt, i);
sanopt.cc 288 gasm *asm_stmt; local
291 || ((asm_stmt = dyn_cast <gasm *> (stmt))
292 && (gimple_asm_clobbers_memory_p (asm_stmt)
293 || gimple_asm_volatile_p (asm_stmt))))
794 gasm *asm_stmt = dyn_cast <gasm *> (stmt); local
795 if (asm_stmt
797 && (gimple_asm_clobbers_memory_p (asm_stmt)
798 || gimple_asm_volatile_p (asm_stmt)))
tree-ssa-coalesce.cc 1143 gasm *asm_stmt = as_a <gasm *> (stmt); local
1147 noutputs = gimple_asm_noutputs (asm_stmt);
1148 ninputs = gimple_asm_ninputs (asm_stmt);
1152 link = gimple_asm_output_op (asm_stmt, i);
1163 link = gimple_asm_input_op (asm_stmt, i);
tree-ssa.cc 1929 gasm *asm_stmt = as_a <gasm *> (stmt); local
1930 for (i = 0; i < gimple_asm_noutputs (asm_stmt); ++i)
1932 tree link = gimple_asm_output_op (asm_stmt, i);
1947 for (i = 0; i < gimple_asm_ninputs (asm_stmt); ++i)
1949 tree link = gimple_asm_input_op (asm_stmt, i);
2238 gasm *asm_stmt = as_a <gasm *> (stmt); local
2240 for (i = 0; i < gimple_asm_noutputs (asm_stmt); ++i)
2242 tree link = gimple_asm_output_op (asm_stmt, i);
2246 for (i = 0; i < gimple_asm_ninputs (asm_stmt); ++i)
2248 tree link = gimple_asm_input_op (asm_stmt, i)
    [all...]
ipa-param-manipulation.cc 2236 gasm *asm_stmt = as_a <gasm *> (*stmt); local
2237 for (unsigned i = 0; i < gimple_asm_ninputs (asm_stmt); i++)
2239 t = &TREE_VALUE (gimple_asm_input_op (asm_stmt, i));
2242 for (unsigned i = 0; i < gimple_asm_noutputs (asm_stmt); i++)
2244 t = &TREE_VALUE (gimple_asm_output_op (asm_stmt, i));
ipa-sra.cc 1933 gasm *asm_stmt = as_a <gasm *> (stmt); local
1934 walk_stmt_load_store_addr_ops (asm_stmt, NULL, NULL, NULL,
1938 for (unsigned i = 0; i < gimple_asm_ninputs (asm_stmt); i++)
1940 tree t = TREE_VALUE (gimple_asm_input_op (asm_stmt, i));
1943 for (unsigned i = 0; i < gimple_asm_noutputs (asm_stmt); i++)
1945 tree t = TREE_VALUE (gimple_asm_output_op (asm_stmt, i));
tree-sra.cc 1420 gasm *asm_stmt = as_a <gasm *> (stmt); local
1421 walk_stmt_load_store_addr_ops (asm_stmt, NULL, NULL, NULL,
1423 if (stmt_ends_bb_p (asm_stmt)
1424 && !single_succ_p (gimple_bb (asm_stmt)))
1426 for (i = 0; i < gimple_asm_ninputs (asm_stmt); i++)
1428 t = TREE_VALUE (gimple_asm_input_op (asm_stmt, i));
1431 for (i = 0; i < gimple_asm_noutputs (asm_stmt); i++)
1433 t = TREE_VALUE (gimple_asm_output_op (asm_stmt, i));
1439 for (i = 0; i < gimple_asm_ninputs (asm_stmt); i++)
1441 t = TREE_VALUE (gimple_asm_input_op (asm_stmt, i))
4649 gasm *asm_stmt = as_a <gasm *> (stmt); local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/analyzer/
region.cc 1212 const gasm *asm_stmt = as_a <const gasm *> (ref->stmt); local
1213 if (gimple_asm_noutputs (asm_stmt) > 0)
1215 if (gimple_asm_nclobbers (asm_stmt) > 0)
region-model.cc 1208 const gasm *asm_stmt = as_a <const gasm *> (stmt); local
1209 on_asm_stmt (asm_stmt, ctxt);
  /src/external/gpl3/gcc/dist/gcc/analyzer/
region.cc 1744 const gasm *asm_stmt = as_a <const gasm *> (ref->stmt); local
1745 if (gimple_asm_noutputs (asm_stmt) > 0)
1747 if (gimple_asm_nclobbers (asm_stmt) > 0)
  /src/external/gpl3/gcc/dist/gcc/jit/
jit-playback.cc 2438 tree asm_stmt local
2444 ASM_VOLATILE_P (asm_stmt) = (outputs->length () == 0);
2445 ASM_INPUT_P (asm_stmt) = 0; /* extended asm stmts are not "simple". */
2446 ASM_INLINE_P (asm_stmt) = is_inline;
2448 ASM_VOLATILE_P (asm_stmt) = 1;
2450 set_tree_location (asm_stmt, loc);
2451 add_stmt (asm_stmt);
  /src/external/gpl3/gcc.old/dist/gcc/jit/
jit-playback.cc 2266 tree asm_stmt local
2272 ASM_VOLATILE_P (asm_stmt) = (outputs->length () == 0);
2273 ASM_INPUT_P (asm_stmt) = 0; /* extended asm stmts are not "simple". */
2274 ASM_INLINE_P (asm_stmt) = is_inline;
2276 ASM_VOLATILE_P (asm_stmt) = 1;
2278 set_tree_location (asm_stmt, loc);
2279 add_stmt (asm_stmt);

Completed in 81 milliseconds

1 2