Home
last modified time | relevance | path

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

/Linux-v5.10/scripts/gcc-plugins/
Dgcc-common.h210 static inline bool gimple_call_builtin_p(gimple stmt, enum built_in_function code) in gimple_call_builtin_p() argument
214 if (!is_gimple_call(stmt)) in gimple_call_builtin_p()
216 fndecl = gimple_call_fndecl(stmt); in gimple_call_builtin_p()
281 static inline bool gimple_asm_clobbers_memory_p(const_gimple stmt) in gimple_asm_clobbers_memory_p() argument
285 for (i = 0; i < gimple_asm_nclobbers(stmt); i++) { in gimple_asm_clobbers_memory_p()
286 tree op = gimple_asm_clobber_op(stmt, i); in gimple_asm_clobbers_memory_p()
454 #define ipa_remove_stmt_references(cnode, stmt) argument
465 static inline gasm *as_a_gasm(gimple stmt) in as_a_gasm() argument
467 return stmt; in as_a_gasm()
470 static inline const gasm *as_a_const_gasm(const_gimple stmt) in as_a_const_gasm() argument
[all …]
Drandomize_layout_plugin.c749 static bool type_name_eq(gimple stmt, const_tree type_tree, const char *wanted_name) in type_name_eq() argument
764 INFORM(gimple_location(stmt), "found non-char INTEGER_TYPE cast comparison: %qT\n", type_tree); in type_name_eq()
774 INFORM(gimple_location(stmt), "found non-void POINTER_TYPE cast comparison %qT\n", type_tree); in type_name_eq()
779 INFORM(gimple_location(stmt), "unhandled cast comparison: %qT\n", type_tree); in type_name_eq()
787 static bool whitelisted_cast(gimple stmt, const_tree lhs_tree, const_tree rhs_tree) in whitelisted_cast() argument
790 expanded_location xloc = expand_location(gimple_location(stmt)); in whitelisted_cast()
796 if (type_name_eq(stmt, lhs_tree, entry->lhs) && type_name_eq(stmt, rhs_tree, entry->rhs)) in whitelisted_cast()
819 gimple stmt; in find_bad_casts_execute() local
830 stmt = gsi_stmt(gsi); in find_bad_casts_execute()
834 debug_gimple_stmt(stmt); in find_bad_casts_execute()
[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()
84 if (gimple_call_builtin_p(stmt, BUILT_IN_ALLOCA_WITH_ALIGN)) in is_alloca()
194 gimple stmt; in stackleak_instrument_execute() local
196 stmt = gsi_stmt(gsi); in stackleak_instrument_execute()
199 if (is_gimple_call(stmt)) in stackleak_instrument_execute()
202 if (!is_alloca(stmt)) in stackleak_instrument_execute()
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.c133 gimple stmt = gsi_stmt(gsi); in initialize() local
137 if (!gimple_assign_single_p(stmt)) in initialize()
139 rhs1 = gimple_assign_rhs1(stmt); in initialize()
146 if (gimple_get_lhs(stmt) != var) in initialize()
Dlatent_entropy_plugin.c395 gimple stmt = gsi_stmt(gsi); in handle_tail_calls() local
397 if (!is_gimple_call(stmt)) in handle_tail_calls()
400 call = as_a_gcall(stmt); in handle_tail_calls()
/Linux-v5.10/scripts/
Dcheckpatch.pl1560 my ($stmt) = @_;
1563 $stmt =~ s/(^|\n)./$1/g;
1564 $stmt =~ s/^\s*//;
1565 $stmt =~ s/\s*$//;
1567 my @stmt_lines = ($stmt =~ /\n/g);
1573 my ($stmt) = @_;
1575 my @stmt_lines = ($stmt =~ /\n/g);
1581 my ($stmt) = @_;
1583 $stmt =~ s/(^|\n)./$1/g;
1584 $stmt =~ s/^\s*{//;
[all …]
/Linux-v5.10/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-v5.10/tools/perf/scripts/python/
Dexported-sql-viewer.py176 def QueryExec(query, stmt): argument
177 ret = query.exec_(stmt)
2558 stmt = self.sql.replace("$$last_id$$", str(self.last_id))
2559 QueryExec(self.query, stmt)
3405 stmt = "SELECT id FROM " + self.table_name + " WHERE " + self.match_column + " = '" + value + "'"
3406 ret = query.exec_(stmt)