Searched refs:stmt (Results 1 - 9 of 9) sorted by relevance

/linux-master/scripts/gcc-plugins/
H A Dgcc-common.h88 #include "stmt.h"
332 static inline gasm *as_a_gasm(gimple stmt) argument
334 return as_a<gasm *>(stmt);
337 static inline const gasm *as_a_const_gasm(const_gimple stmt) argument
339 return as_a<const gasm *>(stmt);
342 static inline gassign *as_a_gassign(gimple stmt) argument
344 return as_a<gassign *>(stmt);
347 static inline const gassign *as_a_const_gassign(const_gimple stmt) argument
349 return as_a<const gassign *>(stmt);
352 static inline gcall *as_a_gcall(gimple stmt) argument
357 as_a_const_gcall(const_gimple stmt) argument
362 as_a_ggoto(gimple stmt) argument
367 as_a_const_ggoto(const_gimple stmt) argument
372 as_a_gphi(gimple stmt) argument
377 as_a_const_gphi(const_gimple stmt) argument
382 as_a_greturn(gimple stmt) argument
387 as_a_const_greturn(const_gimple stmt) argument
403 ipa_remove_stmt_references(symtab_node *referring_node, gimple stmt) argument
[all...]
H A Dstackleak_plugin.c56 gimple stmt; local
62 stmt = gimple_build_call(track_function_decl, 0);
63 gimple_call = as_a_gcall(stmt);
78 static bool is_alloca(gimple stmt) argument
80 if (gimple_call_builtin_p(stmt, BUILT_IN_ALLOCA))
83 if (gimple_call_builtin_p(stmt, BUILT_IN_ALLOCA_WITH_ALIGN))
192 gimple stmt; local
194 stmt = gsi_stmt(gsi);
197 if (is_gimple_call(stmt))
200 if (!is_alloca(stmt))
[all...]
H A Dsancov_plugin.c43 const_gimple stmt; local
50 stmt = gsi_stmt(gsi);
52 gimple_set_location(gcall, gimple_location(stmt));
H A Dstructleak_plugin.c129 gimple stmt = gsi_stmt(gsi); local
133 if (!gimple_assign_single_p(stmt))
135 rhs1 = gimple_assign_rhs1(stmt);
140 if (gimple_get_lhs(stmt) != var)
161 /* build the initializer stmt */
H A Drandomize_layout_plugin.c737 gimple stmt; local
748 stmt = gsi_stmt(gsi);
752 debug_gimple_stmt(stmt);
753 debug_tree(gimple_get_lhs(stmt));
757 if (gimple_code(stmt) != GIMPLE_ASSIGN)
762 debug_tree(gimple_assign_rhs1(stmt));
767 rhs_code = gimple_assign_rhs_code(stmt);
772 lhs = gimple_get_lhs(stmt);
774 rhs1 = gimple_assign_rhs1(stmt);
797 MISMATCH(gimple_location(stmt), "rh
[all...]
H A Dlatent_entropy_plugin.c389 gimple stmt = gsi_stmt(gsi); local
391 if (!is_gimple_call(stmt))
394 call = as_a_gcall(stmt);
/linux-master/drivers/usb/musb/
H A Dda8xx.c114 #define portstate(stmt) stmt
/linux-master/scripts/
H A Dcheckpatch.pl1805 my ($stmt) = @_;
1808 $stmt =~ s/(^|\n)./$1/g;
1809 $stmt =~ s/^\s*//;
1810 $stmt =~ s/\s*$//;
1812 my @stmt_lines = ($stmt =~ /\n/g);
1818 my ($stmt) = @_;
1820 my @stmt_lines = ($stmt =~ /\n/g);
1826 my ($stmt) = @_;
1828 $stmt =~ s/(^|\n)./$1/g;
1829 $stmt
[all...]
/linux-master/tools/perf/scripts/python/
H A Dexported-sql-viewer.py183 def QueryExec(query, stmt):
184 ret = query.exec_(stmt)
2565 stmt = self.sql.replace("$$last_id$$", str(self.last_id))
2566 QueryExec(self.query, stmt)
3412 stmt = "SELECT id FROM " + self.table_name + " WHERE " + self.match_column + " = '" + value + "'"
3413 ret = query.exec_(stmt)

Completed in 211 milliseconds