Home
last modified time | relevance | path

Searched refs:functionName (Results 1 – 25 of 26) sorted by relevance

12

/llvm-project/mlir/include/mlir/Query/Matcher/
H A DMatchersInternal.h66 void setFunctionName(StringRef name) { functionName = name.str(); }; in setFunctionName()
68 bool hasFunctionName() const { return !functionName.empty(); }; in hasFunctionName()
70 StringRef getFunctionName() const { return functionName; }; in getFunctionName()
74 std::string functionName; variable
/llvm-project/mlir/include/mlir/Conversion/GPUCommon/
H A DGPUCommonPass.h52 FunctionCallBuilder(StringRef functionName, Type returnType, in FunctionCallBuilder()
54 : functionName(functionName), in FunctionCallBuilder()
59 StringRef functionName; member
/llvm-project/lldb/tools/lldb-dap/
H A DFunctionBreakpoint.cpp16 : Breakpoint(d, obj), functionName(std::string(GetString(obj, "name"))) {}
19 if (functionName.empty()) in SetBreakpoint()
21 bp = dap.target.BreakpointCreateByName(functionName.c_str()); in SetBreakpoint()
H A DFunctionBreakpoint.h18 std::string functionName;
17 std::string functionName; global() member
/llvm-project/libunwind/src/
H A DUnwindLevel1.c128 const char *functionName = functionBuf; in unwind_phase1()
133 functionName = ".anonymous."; in unwind_phase1()
139 (void *)exception_object, pc, frameInfo.start_ip, functionName, in unwind_phase1()
243 const char *functionName = functionBuf; in unwind_phase2()
248 functionName = ".anonymous."; in unwind_phase2()
253 functionName, sp, frameInfo.lsda, in unwind_phase2()
360 const char *functionName = functionBuf; in unwind_phase2_forced()
365 functionName = ".anonymous."; in unwind_phase2_forced()
369 (void *)exception_object, frameInfo.start_ip, functionName, in unwind_phase2_forced()
115 const char *functionName = functionBuf; unwind_phase1() local
222 const char *functionName = functionBuf; unwind_phase2() local
335 const char *functionName = functionBuf; unwind_phase2_forced() local
H A DUnwind-EHABI.cpp491 const char *functionName = functionBuf; in unwind_phase1() local
496 functionName = ".anonymous."; in unwind_phase1()
503 frameInfo.start_ip, functionName, in unwind_phase1()
612 const char *functionName = functionBuf; in unwind_phase2() local
617 functionName = ".anonymous."; in unwind_phase2()
622 functionName, sp, frameInfo.lsda, in unwind_phase2()
722 const char *functionName = functionBuf; in unwind_phase2_forced() local
727 functionName = ".anonymous."; in unwind_phase2_forced()
731 (void *)exception_object, frameInfo.start_ip, functionName, in unwind_phase2_forced()
H A DUnwindLevel1-gcc-ext.c189 char functionName[512]; in _Unwind_Backtrace() local
192 __unw_get_proc_name(&cursor, functionName, 512, &offset); in _Unwind_Backtrace()
196 frame.start_ip, functionName, frame.lsda, in _Unwind_Backtrace()
H A DUnwind-seh.cpp260 const char *functionName = functionBuf; in unwind_phase2_forced() local
265 functionName = ".anonymous."; in unwind_phase2_forced()
269 (void *)exception_object, frameInfo.start_ip, functionName, in unwind_phase2_forced()
H A DUnwindCursor.hpp2057 const char *functionName = functionBuf; in getInfoFromTBTable()
2060 functionName = ".anonymous."; in getInfoFromTBTable()
2063 __func__, functionName, in getInfoFromTBTable()
2297 const char *functionName = functionBuf; in stepWithTBTable()
2300 functionName = ".anonymous."; in stepWithTBTable()
2305 __func__, functionName, reinterpret_cast<void *>(TBTable), in stepWithTBTable()
2054 const char *functionName = functionBuf; getInfoFromTBTable() local
2301 const char *functionName = functionBuf; stepWithTBTable() local
/llvm-project/clang/lib/Analysis/
H A DCocoaConventions.cpp102 StringRef functionName = ident->getName(); in followsCreateRule() local
104 StringRef::iterator it = functionName.begin(); in followsCreateRule()
106 StringRef::iterator endI = functionName.end(); in followsCreateRule()
129 StringRef suffix = functionName.substr(it - start); in followsCreateRule()
/llvm-project/mlir/lib/Query/
H A DQuery.cpp42 llvm::StringRef functionName) { in extractFunction() argument
69 func::FuncOp funcOp = func::FuncOp::create(loc, functionName, funcType); in extractFunction()
136 auto functionName = matcher.getFunctionName(); in run() local
138 extractFunction(matches, rootOp->getContext(), functionName); in run()
/llvm-project/mlir/lib/Query/Matcher/
H A DRegistryManager.cpp135 llvm::StringRef functionName, llvm::ArrayRef<ParserValue> args, in constructMatcher() argument
138 if (functionName.empty() || out.isNull()) in constructMatcher()
142 result->setFunctionName(functionName); in constructMatcher()
H A DParser.cpp402 std::string functionName; in parseMatcherExpressionImpl() local
419 !parseChainedExpression(functionName)) in parseMatcherExpressionImpl()
429 *ctor, matcherRange, functionName, args, error); in parseMatcherExpressionImpl()
529 MatcherCtor ctor, SourceRange nameRange, llvm::StringRef functionName, in actOnMatcherExpression() argument
531 return RegistryManager::constructMatcher(ctor, nameRange, functionName, args, in actOnMatcherExpression()
H A DParser.h68 MatcherCtor ctor, SourceRange nameRange, llvm::StringRef functionName,
97 StringRef functionName,
H A DRegistryManager.h64 llvm::StringRef functionName,
/llvm-project/polly/utils/pyscop/
H A Disl.py416 functionName = "isl_" + object.isl_name() + "_" + name
417 islFunction = getattr(isl, functionName)
437 functionName = "isl_" + base.isl_name() + "_" + operation variable
438 islFunction = getattr(isl, functionName)
453 functionName = "isl_" + object.isl_name() + "_" + name
454 islFunction = getattr(isl, functionName)
471 functionName = "isl_" + base.isl_name() + "_" + operation variable
472 islFunction = getattr(isl, functionName)
/llvm-project/clang/test/CodeGenObjC/
H A Dblocks-5.m13 …oid DVT (volatile const void * object, volatile const void * selector, const char * functionName);
/llvm-project/clang/test/Index/
H A Dfix-its.m5 …ile const void * object, volatile const void * selector, const char * functionName, const char * f…
/llvm-project/mlir/lib/ExecutionEngine/
H A DExecutionEngine.cpp111 for (std::string &functionName : functionNames) { in dumpToObjectFile()
112 auto result = lookupPacked(functionName); in dumpToObjectFile()
114 llvm::errs() << "Could not compile " << functionName << ":\n " in dumpToObjectFile()
/llvm-project/flang/include/flang/Optimizer/Analysis/
H A DTBAAForest.h65 static TBAATree buildTree(mlir::StringAttr functionName);
/llvm-project/clang/test/Analysis/
H A DCFRetainRelease_NSAssertionHandler.m23 - (void)handleFailureInFunction:(NSString *)functionName file:(NSString *)fileName lineNumber:(NSIn…
/llvm-project/mlir/lib/Target/SPIRV/Deserialization/
H A DDeserializeOps.cpp431 auto functionName = getFunctionSymbol(functionID); in processOp()
445 SymbolRefAttr::get(opBuilder.getContext(), functionName), arguments); in processOp()
433 auto functionName = getFunctionSymbol(functionID); processOp() local
/llvm-project/mlir/lib/Conversion/GPUCommon/
H A DGPUToLLVMConversion.cpp582 if (auto function = module.lookupSymbol<LLVM::LLVMFuncOp>(functionName)) in getCuSparseLtDataTypeFrom()
585 .create<LLVM::LLVMFuncOp>(loc, functionName, functionType); in getCuSparseLtDataTypeFrom()
866 // Returns whether `value` is the result of an LLVM::CallOp to `functionName`. in matchAndRewrite()
867 static bool isDefinedByCallTo(Value value, StringRef functionName) { in matchAndRewrite()
870 return *defOp.getCallee() == functionName; in matchAndRewrite()
887 if (isDefinedByCallTo(operand, streamCreateCallBuilder.functionName)) {
921 if (isDefinedByCallTo(operand, streamCreateCallBuilder.functionName)) { in matchAndRewrite()
849 isDefinedByCallTo(Value value,StringRef functionName) isDefinedByCallTo() argument
/llvm-project/clang/test/CodeGenCXX/
H A Dpredefined-expr.cpp546 void XXLog(const char *functionName) { } in XXLog() argument
/llvm-project/clang/lib/CodeGen/
H A DCGExprConstant.cpp2382 StringRef functionName; in tryEmitPrivate()
2384 functionName = CGF->CurFn->getName(); in tryEmitPrivate()
2386 functionName = "global"; in tryEmitPrivate()
2388 return CGM.GetAddrOfGlobalBlock(E, functionName); in tryEmitPrivate()
2254 StringRef functionName; VisitBlockExpr() local

12