Home
last modified time | relevance | path

Searched refs:FName (Results 1 – 4 of 4) sorted by relevance

/frameworks/rs/rsov/compiler/
DRSAllocationUtils.cpp112 const auto FName = F->getName(); in getRSAllocAccesses() local
113 DEBUG(dbgs() << "Discovered function call to : " << FName << '\n'); in getRSAllocAccesses()
115 if (FName.startswith("llvm.memcpy")) { in getRSAllocAccesses()
128 FName.str().c_str(), nullptr, nullptr, nullptr); in getRSAllocAccesses()
206 StringRef FName; in solidifyRSAllocAccess() local
208 FName = "rsAllocationGetDimX"; in solidifyRSAllocAccess()
210 FName = Fun->getName(); in solidifyRSAllocAccess()
213 OSS << "__rsov_" << FName.str(); in solidifyRSAllocAccess()
DGlobalMergePass.cpp191 StringRef FName(UserInit ? ".rsov.global_init" : "init"); in CreateInitFunction() local
194 Func = Function::Create(FTy, GlobalValue::ExternalLinkage, FName, &M); in CreateInitFunction()
/frameworks/compile/libbcc/lib/
DRSX86CallConvPass.cpp50 llvm::StringRef FName = F.getName(); in IsRSFunctionOfInterest() local
51 if (FName.startswith("llvm.")) in IsRSFunctionOfInterest()
79 llvm::StringRef FName = F->getName(); in IsDerefNeeded() local
81 if (FName.find("rsSetObject") != std::string::npos && ArgNo == 0) in IsDerefNeeded()
84 if (FName.find("rsClearObject") != std::string::npos && ArgNo == 0) in IsDerefNeeded()
87 if (FName.find("rsForEachInternal") != std::string::npos && ArgNo == 4) in IsDerefNeeded()
DRSScreenFunctionsPass.cpp58 llvm::StringRef FName = F.getName(); in isLegal() local
59 if (FName.startswith("llvm.")) in isLegal()
62 if (isPresent(whiteList, FName.str())) in isLegal()