Home
last modified time | relevance | path

Searched refs:stmt (Results 1 – 11 of 11) sorted by relevance

/linux-6.1.9/scripts/gcc-plugins/
Dgcc-common.h332 static inline gasm *as_a_gasm(gimple stmt) in as_a_gasm() argument
334 return as_a<gasm *>(stmt); in as_a_gasm()
337 static inline const gasm *as_a_const_gasm(const_gimple stmt) in as_a_const_gasm() argument
339 return as_a<const gasm *>(stmt); in as_a_const_gasm()
342 static inline gassign *as_a_gassign(gimple stmt) in as_a_gassign() argument
344 return as_a<gassign *>(stmt); in as_a_gassign()
347 static inline const gassign *as_a_const_gassign(const_gimple stmt) in as_a_const_gassign() argument
349 return as_a<const gassign *>(stmt); in as_a_const_gassign()
352 static inline gcall *as_a_gcall(gimple stmt) in as_a_gcall() argument
354 return as_a<gcall *>(stmt); in as_a_gcall()
[all …]
Dstackleak_plugin.c56 gimple stmt; in add_stack_tracking_gcall() local
62 stmt = gimple_build_call(track_function_decl, 0); in add_stack_tracking_gcall()
63 gimple_call = as_a_gcall(stmt); in add_stack_tracking_gcall()
78 static bool is_alloca(gimple stmt) in is_alloca() argument
80 if (gimple_call_builtin_p(stmt, BUILT_IN_ALLOCA)) in is_alloca()
83 if (gimple_call_builtin_p(stmt, BUILT_IN_ALLOCA_WITH_ALIGN)) in is_alloca()
192 gimple stmt; in stackleak_instrument_execute() local
194 stmt = gsi_stmt(gsi); in stackleak_instrument_execute()
197 if (is_gimple_call(stmt)) in stackleak_instrument_execute()
200 if (!is_alloca(stmt)) in stackleak_instrument_execute()
Drandomize_layout_plugin.c743 gimple stmt; in find_bad_casts_execute() local
754 stmt = gsi_stmt(gsi); in find_bad_casts_execute()
758 debug_gimple_stmt(stmt); in find_bad_casts_execute()
759 debug_tree(gimple_get_lhs(stmt)); in find_bad_casts_execute()
763 if (gimple_code(stmt) != GIMPLE_ASSIGN) in find_bad_casts_execute()
768 debug_tree(gimple_assign_rhs1(stmt)); in find_bad_casts_execute()
773 rhs_code = gimple_assign_rhs_code(stmt); in find_bad_casts_execute()
778 lhs = gimple_get_lhs(stmt); in find_bad_casts_execute()
780 rhs1 = gimple_assign_rhs1(stmt); in find_bad_casts_execute()
803 MISMATCH(gimple_location(stmt), "rhs", ptr_lhs_type, ptr_rhs_type); in find_bad_casts_execute()
[all …]
Dsancov_plugin.c43 const_gimple stmt; in sancov_execute() local
50 stmt = gsi_stmt(gsi); in sancov_execute()
52 gimple_set_location(gcall, gimple_location(stmt)); in sancov_execute()
Dstructleak_plugin.c129 gimple stmt = gsi_stmt(gsi); in initialize() local
133 if (!gimple_assign_single_p(stmt)) in initialize()
135 rhs1 = gimple_assign_rhs1(stmt); in initialize()
140 if (gimple_get_lhs(stmt) != var) in initialize()
Dlatent_entropy_plugin.c389 gimple stmt = gsi_stmt(gsi); in handle_tail_calls() local
391 if (!is_gimple_call(stmt)) in handle_tail_calls()
394 call = as_a_gcall(stmt); in handle_tail_calls()
/linux-6.1.9/scripts/
Dcheckpatch.pl1773 my ($stmt) = @_;
1776 $stmt =~ s/(^|\n)./$1/g;
1777 $stmt =~ s/^\s*//;
1778 $stmt =~ s/\s*$//;
1780 my @stmt_lines = ($stmt =~ /\n/g);
1786 my ($stmt) = @_;
1788 my @stmt_lines = ($stmt =~ /\n/g);
1794 my ($stmt) = @_;
1796 $stmt =~ s/(^|\n)./$1/g;
1797 $stmt =~ s/^\s*{//;
[all …]
/linux-6.1.9/drivers/usb/musb/
Ddavinci.c126 #define portstate(stmt) stmt argument
Dam35x.c111 #define portstate(stmt) stmt argument
Dda8xx.c113 #define portstate(stmt) stmt argument
/linux-6.1.9/tools/perf/scripts/python/
Dexported-sql-viewer.py183 def QueryExec(query, stmt): argument
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)