| /llvm-project-15.0.7/llvm/utils/ |
| H A D | update_mir_test_checks.py | 211 if not func_dict[prefix][func_name]: 219 func_dict[prefix][func_name].splitlines()) 228 def add_check_lines(test, output_lines, prefix, func_name, single_bb, argument 244 output_lines.append('{}-LABEL: name: {}'.format(check, func_name)) 338 func_name = None 356 func_name = m.group('func') 364 func_name = m.group('func') 367 func_name = None 375 if func_name in simple_functions: 396 func_name = None [all …]
|
| H A D | update_llc_test_checks.py | 147 func_name = None 194 func_dict, func_name, global_vars_seen_dict, 214 func_name = m.group(1) 215 if args.function is not None and func_name != args.function:
|
| H A D | update_analyze_test_checks.py | 149 common.add_analyze_checks(output_lines, ';', prefix_list, func_dict, func_name, 171 func_name = m.group(1) 172 if ti.args.function is not None and func_name != ti.args.function:
|
| H A D | update_test_checks.py | 177 func_name, args.preserve_names, args.function_signature, 203 func_name = m.group(1) 204 if args.function is not None and func_name != args.function:
|
| /llvm-project-15.0.7/lldb/test/API/lang/objc/direct-dispatch-step/ |
| H A D | TestObjCDirectDispatchStepping.py | 36 func_name = thread.GetFrameAtIndex(0).GetFunctionName() 37 … self.assertIn("OverridesALot", func_name, "%d'th step did not match name: %s"%(idx, func_name)) 43 func_name = thread.GetFrameAtIndex(0).GetFunctionName() 44 self.assertEqual(func_name, "-[OverridesInit init]", "Stopped in [OverridesInit init]")
|
| /llvm-project-15.0.7/mlir/python/mlir/dialects/ |
| H A D | _loop_transform_ops_ext.py | 50 func_name: Union[str, StringAttr], 56 func_name=(func_name if isinstance(func_name, StringAttr) else 57 StringAttr.get(func_name)),
|
| /llvm-project-15.0.7/compiler-rt/lib/interception/ |
| H A D | interception.h | 103 #define INTERPOSER(func_name) __attribute__((used)) \ argument 104 const interpose_substitution substitution_##func_name[] \ 106 { reinterpret_cast<const uptr>(WRAP(func_name)), \ 107 reinterpret_cast<const uptr>(func_name) } \ 113 #define INTERPOSER_2(func_name, wrapper_name) __attribute__((used)) \ argument 114 const interpose_substitution substitution_##func_name[] \ 117 reinterpret_cast<const uptr>(func_name) } \
|
| H A D | interception_win.cpp | 931 uptr InternalGetProcAddress(void *module, const char *func_name) { in InternalGetProcAddress() argument 954 if (!strcmp(func_name, name)) { in InternalGetProcAddress() 991 const char *func_name, uptr new_func, uptr *orig_old_func) { in OverrideFunction() argument 995 uptr func_addr = InternalGetProcAddress(DLLs[i], func_name); in OverrideFunction()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/auto_continue/ |
| H A D | TestBreakpointAutoContinue.py | 80 func_name = bkpt.location[i].GetAddress().function.name 81 if func_name == "main": 91 func_name = threads[0].frame[0].function.name 92 self.assertEqual(func_name, "call_me")
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/scripted_bkpt/ |
| H A D | resolver.py | 29 func_name = sym_ctx.function.GetName() 30 Resolver.func_list.append(func_name) 31 if sym_name == func_name:
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/return-value/ |
| H A D | TestReturnValue.py | 30 def should_report_return_value(self, func_name): argument 34 return not func_name in self.arm_no_return_values 233 def return_and_test_struct_value(self, func_name): argument 237 bkpt = self.target.BreakpointCreateByName(func_name) 238 …True(bkpt.GetNumResolvedLocations() > 0, "Got wrong number of locations for {0}".format(func_name)) 275 if not self.should_report_return_value(func_name):
|
| /llvm-project-15.0.7/lldb/test/API/commands/thread/backtrace/ |
| H A D | TestThreadBacktraceRepeat.py | 47 def check_one_thread(self, thread_id, func_name): argument 63 …self.assertNotEqual(line.find(func_name), -1, "Name {0} not found in line: {1}".format(func_name, … 75 self.assertNotEqual(line.find(func_name), -1, "Name in every line")
|
| /llvm-project-15.0.7/llvm/utils/UpdateTestChecks/ |
| H A D | isel.py | 51 def add_checks(output_lines, comment_marker, prefix_list, func_dict, func_name, argument 56 func_name, check_label_format, True, False,
|
| H A D | common.py | 901 if any(map(lambda checkprefix: func_name not in func_dict[checkprefix], checkprefixes)): 922 if not func_dict[checkprefix][func_name]: 938 attrs = str(func_dict[checkprefix][func_name].attrs) 942 args_and_sig = str(func_dict[checkprefix][func_name].args_and_sig) 945 func_name_separator = func_dict[checkprefix][func_name].func_name_separator 947 output_lines.append(check_label_format % (checkprefix, func_name, '', func_name_separator)) 951 func_body = str(func_dict[checkprefix][func_name]).splitlines() 1026 func_name, preserve_names, function_sig, argument 1031 return add_checks(output_lines, comment_marker, prefix_list, func_dict, func_name, 1035 def add_analyze_checks(output_lines, comment_marker, prefix_list, func_dict, func_name, is_filtered… argument [all …]
|
| /llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/ |
| H A D | RenderScriptx86ABIFixups.cpp | 30 const auto func_name = call_inst->getCalledFunction()->getName(); in isRSAPICall() local 31 if (func_name.startswith("llvm") || func_name.startswith("lldb")) in isRSAPICall()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/step_scripted/ |
| H A D | Steps.py | 48 func_name = func_entry.GetStringValue(100) 50 self.value = self.frame.FindVariable(func_name)
|
| /llvm-project-15.0.7/libcxx/test/support/ |
| H A D | filesystem_test_helper.h | 638 const char* func_name; member 643 : expected_err{first_err}, num_paths(0), func_name(fun_name), 648 func_name(fun_name), opt_message(opt_msg) {} in expected_err() 653 num_paths(2), func_name(fun_name), opt_message(opt_msg) {} in expected_err() 675 return format_string("filesystem error: in %s: %s%s", func_name, in check_libcxx_string() 678 return format_string("filesystem error: in %s: %s%s [%s]", func_name, in check_libcxx_string() 683 func_name, additional_msg, message, in check_libcxx_string()
|
| /llvm-project-15.0.7/lldb/test/API/commands/target/stop-hooks/ |
| H A D | TestStopHookScripted.py | 104 func_name = process.GetSelectedThread().frames[0].GetFunctionName() 105 self.assertEqual("main", func_name, "Didn't stop at the expected function.")
|
| /llvm-project-15.0.7/lldb/test/API/lang/c/stepping/ |
| H A D | TestStepAndBreakpoints.py | 202 func_name = thread.GetFrameAtIndex(0).GetFunctionName() 204 func_name, "b", 206 (func_name))
|
| /llvm-project-15.0.7/lldb/source/Plugins/TraceExporter/common/ |
| H A D | TraceHTR.cpp | 83 lldb::addr_t load_addr, llvm::Optional<ConstString> func_name) { in AddCallInstructionMetadata() argument 84 m_call_isns.emplace(load_addr, func_name); in AddCallInstructionMetadata() 111 if (llvm::Optional<ConstString> func_name = func_name_it->second) { in GetMetadataByIndex() local 112 func_calls[*func_name] = 1; in GetMetadataByIndex()
|
| /llvm-project-15.0.7/lldb/source/Target/ |
| H A D | AssertFrameRecognizer.cpp | 164 ConstString func_name = sym_ctx.GetFunctionName(); in RecognizeFrame() local 166 if (llvm::is_contained(location.symbols, func_name)) { in RecognizeFrame()
|
| /llvm-project-15.0.7/lldb/source/Commands/ |
| H A D | CommandObjectDisassemble.cpp | 87 func_name.assign(std::string(option_arg)); in SetOptionValue() 165 func_name.clear(); in OptionParsingStarting() 346 ConstString name(m_options.func_name.c_str()); in GetNameRanges() 433 if (!m_options.func_name.empty()) in GetRangesForSelectedMode()
|
| /llvm-project-15.0.7/lldb/source/Breakpoint/ |
| H A D | BreakpointResolverFileRegex.cpp | 167 void BreakpointResolverFileRegex::AddFunctionName(const char *func_name) { in AddFunctionName() argument 168 m_function_names.insert(func_name); in AddFunctionName()
|
| /llvm-project-15.0.7/mlir/python/mlir/_mlir_libs/ |
| H A D | _mlirExecutionEngine.pyi | 20 def raw_lookup(self, func_name: str) -> int: ...
|
| /llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | IRDynamicChecks.h | 80 const char *func_name = "$__lldb_expr");
|