Searched refs:stmt (Results 1 – 11 of 11) sorted by relevance
/linux/scripts/gcc-plugins/ |
A D | gcc-common.h | 334 return as_a<gasm *>(stmt); in as_a_gasm() 339 return as_a<const gasm *>(stmt); in as_a_const_gasm() 344 return as_a<gassign *>(stmt); in as_a_gassign() 349 return as_a<const gassign *>(stmt); in as_a_const_gassign() 354 return as_a<gcall *>(stmt); in as_a_gcall() 359 return as_a<const gcall *>(stmt); in as_a_const_gcall() 364 return as_a<ggoto *>(stmt); in as_a_ggoto() 369 return as_a<const ggoto *>(stmt); in as_a_const_ggoto() 374 return as_a<gphi *>(stmt); in as_a_gphi() 379 return as_a<const gphi *>(stmt); in as_a_const_gphi() [all …]
|
A D | randomize_layout_plugin.c | 792 if (type_name_eq(stmt, lhs_tree, entry->lhs) && type_name_eq(stmt, rhs_tree, entry->rhs)) in whitelisted_cast() 815 gimple stmt; in find_bad_casts_execute() local 826 stmt = gsi_stmt(gsi); in find_bad_casts_execute() 830 debug_gimple_stmt(stmt); in find_bad_casts_execute() 831 debug_tree(gimple_get_lhs(stmt)); in find_bad_casts_execute() 835 if (gimple_code(stmt) != GIMPLE_ASSIGN) in find_bad_casts_execute() 840 debug_tree(gimple_assign_rhs1(stmt)); in find_bad_casts_execute() 845 rhs_code = gimple_assign_rhs_code(stmt); in find_bad_casts_execute() 850 lhs = gimple_get_lhs(stmt); in find_bad_casts_execute() 852 rhs1 = gimple_assign_rhs1(stmt); in find_bad_casts_execute() [all …]
|
A D | stackleak_plugin.c | 56 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()
|
A D | structleak_plugin.c | 129 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()
|
A D | sancov_plugin.c | 43 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()
|
A D | latent_entropy_plugin.c | 383 gimple stmt = gsi_stmt(gsi); in handle_tail_calls() local 385 if (!is_gimple_call(stmt)) in handle_tail_calls() 388 call = as_a_gcall(stmt); in handle_tail_calls()
|
/linux/scripts/ |
A D | checkpatch.pl | 1766 my ($stmt) = @_; 1769 $stmt =~ s/(^|\n)./$1/g; 1770 $stmt =~ s/^\s*//; 1771 $stmt =~ s/\s*$//; 1779 my ($stmt) = @_; 1787 my ($stmt) = @_; 1789 $stmt =~ s/(^|\n)./$1/g; 1790 $stmt =~ s/^\s*{//; 1791 $stmt =~ s/}\s*$//; 1792 $stmt =~ s/^\s*//; [all …]
|
/linux/drivers/usb/musb/ |
A D | davinci.c | 126 #define portstate(stmt) stmt argument
|
A D | am35x.c | 111 #define portstate(stmt) stmt argument
|
A D | da8xx.c | 113 #define portstate(stmt) stmt argument
|
/linux/tools/perf/scripts/python/ |
A D | exported-sql-viewer.py | 183 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)
|
Completed in 42 milliseconds