Home
last modified time | relevance | path

Searched refs:called_function (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/lang/objcxx/conflicting-names-class-update-utility-expr/
H A Dmain.mm5 const char *called_function = "none";
11 // All functions just indicate that they got called by setting 'called_function'
15 void free(void *) { called_function = "N::free"; }
17 called_function = "N::objc_copyRealizedClassList_nolock";
22 void free(void *) { called_function = "Context::free"; }
24 called_function = "Context::objc_copyRealizedClassList_nolock";
36 called_function = "ObjCContext::free";
40 called_function = "ObjCContext::objc_copyRealizedClassList_nolock";
/llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/
H A DIRDynamicChecks.cpp475 const llvm::Function *called_function = GetCalledFunction(call_inst); in InspectInstruction() local
477 if (!called_function) in InspectInstruction()
480 std::string name_str = called_function->getName().str(); in InspectInstruction()
/llvm-project-15.0.7/lldb/source/Expression/
H A DIRInterpreter.cpp75 const llvm::Function *called_function = call->getCalledFunction(); in CanIgnoreCall() local
77 if (!called_function) in CanIgnoreCall()
80 if (called_function->isIntrinsic()) { in CanIgnoreCall()
81 switch (called_function->getIntrinsicID()) { in CanIgnoreCall()