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

1 2

  /src/external/gpl3/gcc/dist/gcc/
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));
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);
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);
gimple.h 4064 /* Return the number of input operands for GIMPLE_ASM ASM_STMT. */
4067 gimple_asm_ninputs (const gasm *asm_stmt)
4069 return asm_stmt->ni;
4073 /* Return the number of output operands for GIMPLE_ASM ASM_STMT. */
4076 gimple_asm_noutputs (const gasm *asm_stmt)
4078 return asm_stmt->no;
4082 /* Return the number of clobber operands for GIMPLE_ASM ASM_STMT. */
4085 gimple_asm_nclobbers (const gasm *asm_stmt)
4087 return asm_stmt->nc;
4090 /* Return the number of label operands for GIMPLE_ASM ASM_STMT. *
    [all...]
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)))
gimple-walk.cc 889 else if (gasm *asm_stmt = dyn_cast <gasm *> (stmt))
895 noutputs = gimple_asm_noutputs (asm_stmt);
898 for (i = 0; i < gimple_asm_noutputs (asm_stmt); ++i)
900 tree link = gimple_asm_output_op (asm_stmt, i);
916 for (i = 0; i < gimple_asm_ninputs (asm_stmt); ++i)
918 tree 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...]
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...]
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);
  /src/external/gpl3/gcc.old/dist/gcc/
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));
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);
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);
gimple.h 4000 /* Return the number of input operands for GIMPLE_ASM ASM_STMT. */
4003 gimple_asm_ninputs (const gasm *asm_stmt)
4005 return asm_stmt->ni;
4009 /* Return the number of output operands for GIMPLE_ASM ASM_STMT. */
4012 gimple_asm_noutputs (const gasm *asm_stmt)
4014 return asm_stmt->no;
4018 /* Return the number of clobber operands for GIMPLE_ASM ASM_STMT. */
4021 gimple_asm_nclobbers (const gasm *asm_stmt)
4023 return asm_stmt->nc;
4026 /* Return the number of label operands for GIMPLE_ASM ASM_STMT. *
    [all...]
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)))
gimple-walk.cc 865 else if (gasm *asm_stmt = dyn_cast <gasm *> (stmt))
871 noutputs = gimple_asm_noutputs (asm_stmt);
874 for (i = 0; i < gimple_asm_noutputs (asm_stmt); ++i)
876 tree link = gimple_asm_output_op (asm_stmt, i);
892 for (i = 0; i < gimple_asm_ninputs (asm_stmt); ++i)
894 tree 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...]
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...]
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);
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));
  /src/external/gpl3/gcc/dist/gcc/analyzer/
region-model-asm.cc 66 /* Determine if ASM_STMT is deterministic, in the sense of (b) above.
112 deterministic_p (const gasm *asm_stmt)
116 if (gimple_asm_ninputs (asm_stmt) == 0
117 && gimple_asm_volatile_p (asm_stmt))
region-model-manager.h 87 const gasm *asm_stmt,
  /src/external/gpl3/gcc.old/dist/gcc/analyzer/
region-model-asm.cc 68 /* Determine if ASM_STMT is deterministic, in the sense of (b) above.
114 deterministic_p (const gasm *asm_stmt)
118 if (gimple_asm_ninputs (asm_stmt) == 0
119 && gimple_asm_volatile_p (asm_stmt))
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)
  /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 49 milliseconds

1 2