2010-03-06 06:25:30 +08:00
|
|
|
//===- BuildLibCalls.cpp - Utility builder for libcalls -------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements some functions that will create standard C libcalls.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Transforms/Utils/BuildLibCalls.h"
|
2012-12-04 00:50:05 +08:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
2016-04-28 03:04:40 +08:00
|
|
|
#include "llvm/ADT/Statistic.h"
|
2015-11-25 02:57:06 +08:00
|
|
|
#include "llvm/Analysis/TargetLibraryInfo.h"
|
2013-01-02 19:36:10 +08:00
|
|
|
#include "llvm/IR/Constants.h"
|
|
|
|
#include "llvm/IR/DataLayout.h"
|
|
|
|
#include "llvm/IR/Function.h"
|
|
|
|
#include "llvm/IR/IRBuilder.h"
|
|
|
|
#include "llvm/IR/Intrinsics.h"
|
|
|
|
#include "llvm/IR/LLVMContext.h"
|
|
|
|
#include "llvm/IR/Module.h"
|
|
|
|
#include "llvm/IR/Type.h"
|
2010-03-06 06:25:30 +08:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2016-04-28 03:04:40 +08:00
|
|
|
#define DEBUG_TYPE "build-libcalls"
|
|
|
|
|
|
|
|
//- Infer Attributes ---------------------------------------------------------//
|
|
|
|
|
|
|
|
STATISTIC(NumReadNone, "Number of functions inferred as readnone");
|
|
|
|
STATISTIC(NumReadOnly, "Number of functions inferred as readonly");
|
|
|
|
STATISTIC(NumArgMemOnly, "Number of functions inferred as argmemonly");
|
|
|
|
STATISTIC(NumNoUnwind, "Number of functions inferred as nounwind");
|
|
|
|
STATISTIC(NumNoCapture, "Number of arguments inferred as nocapture");
|
|
|
|
STATISTIC(NumReadOnlyArg, "Number of arguments inferred as readonly");
|
|
|
|
STATISTIC(NumNoAlias, "Number of function returns inferred as noalias");
|
|
|
|
STATISTIC(NumNonNull, "Number of function returns inferred as nonnull returns");
|
2018-08-23 13:18:23 +08:00
|
|
|
STATISTIC(NumReturnedArg, "Number of arguments inferred as returned");
|
2016-04-28 03:04:40 +08:00
|
|
|
|
|
|
|
static bool setDoesNotAccessMemory(Function &F) {
|
|
|
|
if (F.doesNotAccessMemory())
|
|
|
|
return false;
|
|
|
|
F.setDoesNotAccessMemory();
|
|
|
|
++NumReadNone;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool setOnlyReadsMemory(Function &F) {
|
|
|
|
if (F.onlyReadsMemory())
|
|
|
|
return false;
|
|
|
|
F.setOnlyReadsMemory();
|
|
|
|
++NumReadOnly;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool setOnlyAccessesArgMemory(Function &F) {
|
|
|
|
if (F.onlyAccessesArgMemory())
|
|
|
|
return false;
|
2017-05-04 02:17:31 +08:00
|
|
|
F.setOnlyAccessesArgMemory();
|
2016-04-28 03:04:40 +08:00
|
|
|
++NumArgMemOnly;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool setDoesNotThrow(Function &F) {
|
|
|
|
if (F.doesNotThrow())
|
|
|
|
return false;
|
|
|
|
F.setDoesNotThrow();
|
|
|
|
++NumNoUnwind;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-05-04 02:17:31 +08:00
|
|
|
static bool setRetDoesNotAlias(Function &F) {
|
|
|
|
if (F.hasAttribute(AttributeList::ReturnIndex, Attribute::NoAlias))
|
2016-04-28 03:04:40 +08:00
|
|
|
return false;
|
2017-05-04 02:17:31 +08:00
|
|
|
F.addAttribute(AttributeList::ReturnIndex, Attribute::NoAlias);
|
|
|
|
++NumNoAlias;
|
2016-04-28 03:04:40 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-05-04 02:17:31 +08:00
|
|
|
static bool setDoesNotCapture(Function &F, unsigned ArgNo) {
|
|
|
|
if (F.hasParamAttribute(ArgNo, Attribute::NoCapture))
|
2016-04-28 03:04:40 +08:00
|
|
|
return false;
|
2017-05-04 02:17:31 +08:00
|
|
|
F.addParamAttr(ArgNo, Attribute::NoCapture);
|
|
|
|
++NumNoCapture;
|
2016-04-28 03:04:40 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-05-04 02:17:31 +08:00
|
|
|
static bool setOnlyReadsMemory(Function &F, unsigned ArgNo) {
|
|
|
|
if (F.hasParamAttribute(ArgNo, Attribute::ReadOnly))
|
2016-04-28 03:04:40 +08:00
|
|
|
return false;
|
2017-05-04 02:17:31 +08:00
|
|
|
F.addParamAttr(ArgNo, Attribute::ReadOnly);
|
|
|
|
++NumReadOnlyArg;
|
2016-04-28 03:04:40 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-05-04 02:17:31 +08:00
|
|
|
static bool setRetNonNull(Function &F) {
|
|
|
|
assert(F.getReturnType()->isPointerTy() &&
|
|
|
|
"nonnull applies only to pointers");
|
|
|
|
if (F.hasAttribute(AttributeList::ReturnIndex, Attribute::NonNull))
|
2016-04-28 03:04:40 +08:00
|
|
|
return false;
|
2017-05-04 02:17:31 +08:00
|
|
|
F.addAttribute(AttributeList::ReturnIndex, Attribute::NonNull);
|
2016-04-28 03:04:40 +08:00
|
|
|
++NumNonNull;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-08-23 13:18:23 +08:00
|
|
|
static bool setReturnedArg(Function &F, unsigned ArgNo) {
|
|
|
|
if (F.hasParamAttribute(ArgNo, Attribute::Returned))
|
|
|
|
return false;
|
|
|
|
F.addParamAttr(ArgNo, Attribute::Returned);
|
|
|
|
++NumReturnedArg;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-11 07:32:36 +08:00
|
|
|
static bool setNonLazyBind(Function &F) {
|
|
|
|
if (F.hasFnAttribute(Attribute::NonLazyBind))
|
|
|
|
return false;
|
|
|
|
F.addFnAttr(Attribute::NonLazyBind);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-10-17 05:18:31 +08:00
|
|
|
bool llvm::inferLibFuncAttributes(Module *M, StringRef Name,
|
2018-10-13 23:21:55 +08:00
|
|
|
const TargetLibraryInfo &TLI) {
|
2018-10-17 05:18:31 +08:00
|
|
|
Function *F = M->getFunction(Name);
|
|
|
|
if (!F)
|
2018-10-13 23:21:55 +08:00
|
|
|
return false;
|
2018-10-17 05:18:31 +08:00
|
|
|
return inferLibFuncAttributes(*F, TLI);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool llvm::inferLibFuncAttributes(Function &F, const TargetLibraryInfo &TLI) {
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
LibFunc TheLibFunc;
|
2016-04-28 03:04:40 +08:00
|
|
|
if (!(TLI.getLibFunc(F, TheLibFunc) && TLI.has(TheLibFunc)))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
bool Changed = false;
|
2018-04-11 07:32:36 +08:00
|
|
|
|
|
|
|
if (F.getParent() != nullptr && F.getParent()->getRtLibUseGOT())
|
|
|
|
Changed |= setNonLazyBind(F);
|
|
|
|
|
2016-04-28 03:04:40 +08:00
|
|
|
switch (TheLibFunc) {
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_strlen:
|
2017-05-06 04:25:50 +08:00
|
|
|
case LibFunc_wcslen:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F);
|
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-06-18 11:10:26 +08:00
|
|
|
Changed |= setOnlyAccessesArgMemory(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_strchr:
|
|
|
|
case LibFunc_strrchr:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F);
|
|
|
|
Changed |= setDoesNotThrow(F);
|
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_strtol:
|
|
|
|
case LibFunc_strtod:
|
|
|
|
case LibFunc_strtof:
|
|
|
|
case LibFunc_strtoul:
|
|
|
|
case LibFunc_strtoll:
|
|
|
|
case LibFunc_strtold:
|
|
|
|
case LibFunc_strtoull:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_strcpy:
|
2018-08-23 13:18:23 +08:00
|
|
|
case LibFunc_strncpy:
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_strcat:
|
|
|
|
case LibFunc_strncat:
|
2018-08-23 13:18:23 +08:00
|
|
|
Changed |= setReturnedArg(F, 0);
|
|
|
|
LLVM_FALLTHROUGH;
|
|
|
|
case LibFunc_stpcpy:
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_stpncpy:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
|
|
|
Changed |= setOnlyReadsMemory(F, 1);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_strxfrm:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F, 1);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_strcmp: // 0,1
|
|
|
|
case LibFunc_strspn: // 0,1
|
|
|
|
case LibFunc_strncmp: // 0,1
|
|
|
|
case LibFunc_strcspn: // 0,1
|
|
|
|
case LibFunc_strcoll: // 0,1
|
|
|
|
case LibFunc_strcasecmp: // 0,1
|
|
|
|
case LibFunc_strncasecmp: //
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F);
|
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_strstr:
|
|
|
|
case LibFunc_strpbrk:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F);
|
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_strtok:
|
|
|
|
case LibFunc_strtok_r:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
|
|
|
Changed |= setOnlyReadsMemory(F, 1);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_scanf:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_setbuf:
|
|
|
|
case LibFunc_setvbuf:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_strdup:
|
|
|
|
case LibFunc_strndup:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setRetDoesNotAlias(F);
|
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_stat:
|
|
|
|
case LibFunc_statvfs:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_sscanf:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F, 1);
|
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_sprintf:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F, 1);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_snprintf:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
|
|
|
Changed |= setDoesNotCapture(F, 2);
|
|
|
|
Changed |= setOnlyReadsMemory(F, 2);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_setitimer:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 2);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F, 1);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_system:
|
2016-04-28 03:04:40 +08:00
|
|
|
// May throw; "system" is a valid pthread cancellation point.
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_malloc:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setRetDoesNotAlias(F);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_memcmp:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F);
|
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_memchr:
|
|
|
|
case LibFunc_memrchr:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F);
|
|
|
|
Changed |= setDoesNotThrow(F);
|
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_modf:
|
|
|
|
case LibFunc_modff:
|
|
|
|
case LibFunc_modfl:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_memcpy:
|
2018-08-23 13:18:23 +08:00
|
|
|
case LibFunc_memmove:
|
|
|
|
Changed |= setReturnedArg(F, 0);
|
|
|
|
LLVM_FALLTHROUGH;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_mempcpy:
|
|
|
|
case LibFunc_memccpy:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
|
|
|
Changed |= setOnlyReadsMemory(F, 1);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_memcpy_chk:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_memalign:
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setRetDoesNotAlias(F);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_mkdir:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_mktime:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_realloc:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setRetDoesNotAlias(F);
|
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_read:
|
2016-04-28 03:04:40 +08:00
|
|
|
// May throw; "read" is a valid pthread cancellation point.
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_rewind:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_rmdir:
|
|
|
|
case LibFunc_remove:
|
|
|
|
case LibFunc_realpath:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_rename:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F, 1);
|
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_readlink:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_write:
|
2016-04-28 03:04:40 +08:00
|
|
|
// May throw; "write" is a valid pthread cancellation point.
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
|
|
|
Changed |= setOnlyReadsMemory(F, 1);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_bcopy:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_bcmp:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
|
|
|
Changed |= setOnlyReadsMemory(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_bzero:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_calloc:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setRetDoesNotAlias(F);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_chmod:
|
|
|
|
case LibFunc_chown:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_ctermid:
|
|
|
|
case LibFunc_clearerr:
|
|
|
|
case LibFunc_closedir:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_atoi:
|
|
|
|
case LibFunc_atol:
|
|
|
|
case LibFunc_atof:
|
|
|
|
case LibFunc_atoll:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
|
|
|
Changed |= setOnlyReadsMemory(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_access:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_fopen:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setRetDoesNotAlias(F);
|
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F, 1);
|
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_fdopen:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setRetDoesNotAlias(F);
|
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
|
|
|
Changed |= setOnlyReadsMemory(F, 1);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_feof:
|
|
|
|
case LibFunc_free:
|
|
|
|
case LibFunc_fseek:
|
|
|
|
case LibFunc_ftell:
|
|
|
|
case LibFunc_fgetc:
|
[SimplifyLibcalls] Replace locked IO with unlocked IO
Summary: If file stream arg is not captured and source is fopen, we could replace IO calls by unlocked IO ("_unlocked" function variants) to gain better speed,
Reviewers: efriedma, RKSimon, spatel, sanjoy, hfinkel, majnemer, lebedev.ri, rja
Reviewed By: rja
Subscribers: rja, srhines, efriedma, lebedev.ri, llvm-commits
Differential Revision: https://reviews.llvm.org/D45736
llvm-svn: 332452
2018-05-16 19:39:52 +08:00
|
|
|
case LibFunc_fgetc_unlocked:
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_fseeko:
|
|
|
|
case LibFunc_ftello:
|
|
|
|
case LibFunc_fileno:
|
|
|
|
case LibFunc_fflush:
|
|
|
|
case LibFunc_fclose:
|
|
|
|
case LibFunc_fsetpos:
|
|
|
|
case LibFunc_flockfile:
|
|
|
|
case LibFunc_funlockfile:
|
|
|
|
case LibFunc_ftrylockfile:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_ferror:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F);
|
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_fputc:
|
[SimplifyLibcalls] Replace locked IO with unlocked IO
Summary: If file stream arg is not captured and source is fopen, we could replace IO calls by unlocked IO ("_unlocked" function variants) to gain better speed,
Reviewers: efriedma, RKSimon, spatel, sanjoy, hfinkel, majnemer, lebedev.ri, rja
Reviewed By: rja
Subscribers: rja, srhines, efriedma, lebedev.ri, llvm-commits
Differential Revision: https://reviews.llvm.org/D45736
llvm-svn: 332452
2018-05-16 19:39:52 +08:00
|
|
|
case LibFunc_fputc_unlocked:
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_fstat:
|
|
|
|
case LibFunc_frexp:
|
|
|
|
case LibFunc_frexpf:
|
|
|
|
case LibFunc_frexpl:
|
|
|
|
case LibFunc_fstatvfs:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_fgets:
|
[SimplifyLibcalls] Replace locked IO with unlocked IO
Summary: If file stream arg is not captured and source is fopen, we could replace IO calls by unlocked IO ("_unlocked" function variants) to gain better speed,
Reviewers: efriedma, RKSimon, spatel, sanjoy, hfinkel, majnemer, lebedev.ri, rja
Reviewed By: rja
Subscribers: rja, srhines, efriedma, lebedev.ri, llvm-commits
Differential Revision: https://reviews.llvm.org/D45736
llvm-svn: 332452
2018-05-16 19:39:52 +08:00
|
|
|
case LibFunc_fgets_unlocked:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 2);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_fread:
|
[SimplifyLibcalls] Replace locked IO with unlocked IO
Summary: If file stream arg is not captured and source is fopen, we could replace IO calls by unlocked IO ("_unlocked" function variants) to gain better speed,
Reviewers: efriedma, RKSimon, spatel, sanjoy, hfinkel, majnemer, lebedev.ri, rja
Reviewed By: rja
Subscribers: rja, srhines, efriedma, lebedev.ri, llvm-commits
Differential Revision: https://reviews.llvm.org/D45736
llvm-svn: 332452
2018-05-16 19:39:52 +08:00
|
|
|
case LibFunc_fread_unlocked:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
|
|
|
Changed |= setDoesNotCapture(F, 3);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_fwrite:
|
[SimplifyLibcalls] Replace locked IO with unlocked IO
Summary: If file stream arg is not captured and source is fopen, we could replace IO calls by unlocked IO ("_unlocked" function variants) to gain better speed,
Reviewers: efriedma, RKSimon, spatel, sanjoy, hfinkel, majnemer, lebedev.ri, rja
Reviewed By: rja
Subscribers: rja, srhines, efriedma, lebedev.ri, llvm-commits
Differential Revision: https://reviews.llvm.org/D45736
llvm-svn: 332452
2018-05-16 19:39:52 +08:00
|
|
|
case LibFunc_fwrite_unlocked:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
|
|
|
Changed |= setDoesNotCapture(F, 3);
|
2016-04-28 03:04:40 +08:00
|
|
|
// FIXME: readonly #1?
|
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_fputs:
|
[SimplifyLibcalls] Replace locked IO with unlocked IO
Summary: If file stream arg is not captured and source is fopen, we could replace IO calls by unlocked IO ("_unlocked" function variants) to gain better speed,
Reviewers: efriedma, RKSimon, spatel, sanjoy, hfinkel, majnemer, lebedev.ri, rja
Reviewed By: rja
Subscribers: rja, srhines, efriedma, lebedev.ri, llvm-commits
Differential Revision: https://reviews.llvm.org/D45736
llvm-svn: 332452
2018-05-16 19:39:52 +08:00
|
|
|
case LibFunc_fputs_unlocked:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_fscanf:
|
|
|
|
case LibFunc_fprintf:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F, 1);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_fgetpos:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_getc:
|
|
|
|
case LibFunc_getlogin_r:
|
|
|
|
case LibFunc_getc_unlocked:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_getenv:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
|
|
|
Changed |= setOnlyReadsMemory(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_gets:
|
|
|
|
case LibFunc_getchar:
|
[SimplifyLibcalls] Replace locked IO with unlocked IO
Summary: If file stream arg is not captured and source is fopen, we could replace IO calls by unlocked IO ("_unlocked" function variants) to gain better speed,
Reviewers: efriedma, RKSimon, spatel, sanjoy, hfinkel, majnemer, lebedev.ri, rja
Reviewed By: rja
Subscribers: rja, srhines, efriedma, lebedev.ri, llvm-commits
Differential Revision: https://reviews.llvm.org/D45736
llvm-svn: 332452
2018-05-16 19:39:52 +08:00
|
|
|
case LibFunc_getchar_unlocked:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_getitimer:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_getpwnam:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_ungetc:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_uname:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_unlink:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_unsetenv:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_utime:
|
|
|
|
case LibFunc_utimes:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F, 1);
|
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_putc:
|
[SimplifyLibcalls] Replace locked IO with unlocked IO
Summary: If file stream arg is not captured and source is fopen, we could replace IO calls by unlocked IO ("_unlocked" function variants) to gain better speed,
Reviewers: efriedma, RKSimon, spatel, sanjoy, hfinkel, majnemer, lebedev.ri, rja
Reviewed By: rja
Subscribers: rja, srhines, efriedma, lebedev.ri, llvm-commits
Differential Revision: https://reviews.llvm.org/D45736
llvm-svn: 332452
2018-05-16 19:39:52 +08:00
|
|
|
case LibFunc_putc_unlocked:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_puts:
|
|
|
|
case LibFunc_printf:
|
|
|
|
case LibFunc_perror:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_pread:
|
2016-04-28 03:04:40 +08:00
|
|
|
// May throw; "pread" is a valid pthread cancellation point.
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_pwrite:
|
2016-04-28 03:04:40 +08:00
|
|
|
// May throw; "pwrite" is a valid pthread cancellation point.
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
|
|
|
Changed |= setOnlyReadsMemory(F, 1);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_putchar:
|
[SimplifyLibcalls] Replace locked IO with unlocked IO
Summary: If file stream arg is not captured and source is fopen, we could replace IO calls by unlocked IO ("_unlocked" function variants) to gain better speed,
Reviewers: efriedma, RKSimon, spatel, sanjoy, hfinkel, majnemer, lebedev.ri, rja
Reviewed By: rja
Subscribers: rja, srhines, efriedma, lebedev.ri, llvm-commits
Differential Revision: https://reviews.llvm.org/D45736
llvm-svn: 332452
2018-05-16 19:39:52 +08:00
|
|
|
case LibFunc_putchar_unlocked:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_popen:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setRetDoesNotAlias(F);
|
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F, 1);
|
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_pclose:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_vscanf:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_vsscanf:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F, 1);
|
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_vfscanf:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F, 1);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_valloc:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setRetDoesNotAlias(F);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_vprintf:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_vfprintf:
|
|
|
|
case LibFunc_vsprintf:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F, 1);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_vsnprintf:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
|
|
|
Changed |= setDoesNotCapture(F, 2);
|
|
|
|
Changed |= setOnlyReadsMemory(F, 2);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_open:
|
2016-04-28 03:04:40 +08:00
|
|
|
// May throw; "open" is a valid pthread cancellation point.
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_opendir:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setRetDoesNotAlias(F);
|
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_tmpfile:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setRetDoesNotAlias(F);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_times:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_htonl:
|
|
|
|
case LibFunc_htons:
|
|
|
|
case LibFunc_ntohl:
|
|
|
|
case LibFunc_ntohs:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
|
|
|
Changed |= setDoesNotAccessMemory(F);
|
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_lstat:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_lchown:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_qsort:
|
2016-04-28 03:04:40 +08:00
|
|
|
// May throw; places call through function pointer.
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 3);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_dunder_strdup:
|
|
|
|
case LibFunc_dunder_strndup:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setRetDoesNotAlias(F);
|
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_dunder_strtok_r:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
|
|
|
Changed |= setOnlyReadsMemory(F, 1);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_under_IO_getc:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_under_IO_putc:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_dunder_isoc99_scanf:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_stat64:
|
|
|
|
case LibFunc_lstat64:
|
|
|
|
case LibFunc_statvfs64:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_dunder_isoc99_sscanf:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F, 1);
|
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_fopen64:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setRetDoesNotAlias(F);
|
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F, 1);
|
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_fseeko64:
|
|
|
|
case LibFunc_ftello64:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_tmpfile64:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setRetDoesNotAlias(F);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_fstat64:
|
|
|
|
case LibFunc_fstatvfs64:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_open64:
|
2016-04-28 03:04:40 +08:00
|
|
|
// May throw; "open" is a valid pthread cancellation point.
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
|
|
|
Changed |= setOnlyReadsMemory(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_gettimeofday:
|
2016-04-28 03:04:40 +08:00
|
|
|
// Currently some platforms have the restrict keyword on the arguments to
|
|
|
|
// gettimeofday. To be conservative, do not add noalias to gettimeofday's
|
|
|
|
// arguments.
|
|
|
|
Changed |= setDoesNotThrow(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
|
|
|
return Changed;
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_Znwj: // new(unsigned int)
|
|
|
|
case LibFunc_Znwm: // new(unsigned long)
|
|
|
|
case LibFunc_Znaj: // new[](unsigned int)
|
|
|
|
case LibFunc_Znam: // new[](unsigned long)
|
|
|
|
case LibFunc_msvc_new_int: // new(unsigned int)
|
|
|
|
case LibFunc_msvc_new_longlong: // new(unsigned long long)
|
|
|
|
case LibFunc_msvc_new_array_int: // new[](unsigned int)
|
|
|
|
case LibFunc_msvc_new_array_longlong: // new[](unsigned long long)
|
2016-04-28 03:04:40 +08:00
|
|
|
// Operator new always returns a nonnull noalias pointer
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setRetNonNull(F);
|
|
|
|
Changed |= setRetDoesNotAlias(F);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
2018-04-25 12:33:36 +08:00
|
|
|
// TODO: add LibFunc entries for:
|
|
|
|
// case LibFunc_memset_pattern4:
|
|
|
|
// case LibFunc_memset_pattern8:
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_memset_pattern16:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setOnlyAccessesArgMemory(F);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 0);
|
2016-04-28 03:04:43 +08:00
|
|
|
Changed |= setDoesNotCapture(F, 1);
|
2017-05-04 02:17:31 +08:00
|
|
|
Changed |= setOnlyReadsMemory(F, 1);
|
2016-04-28 03:04:40 +08:00
|
|
|
return Changed;
|
|
|
|
// int __nvvm_reflect(const char *)
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
case LibFunc_nvvm_reflect:
|
2016-04-28 03:04:40 +08:00
|
|
|
Changed |= setDoesNotAccessMemory(F);
|
|
|
|
Changed |= setDoesNotThrow(F);
|
|
|
|
return Changed;
|
|
|
|
|
|
|
|
default:
|
|
|
|
// FIXME: It'd be really nice to cover all the library functions we're
|
|
|
|
// aware of here.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-11 14:33:00 +08:00
|
|
|
bool llvm::hasUnaryFloatFn(const TargetLibraryInfo *TLI, Type *Ty,
|
|
|
|
LibFunc DoubleFn, LibFunc FloatFn,
|
|
|
|
LibFunc LongDoubleFn) {
|
|
|
|
switch (Ty->getTypeID()) {
|
2018-09-19 20:01:38 +08:00
|
|
|
case Type::HalfTyID:
|
|
|
|
return false;
|
2018-01-11 14:33:00 +08:00
|
|
|
case Type::FloatTyID:
|
|
|
|
return TLI->has(FloatFn);
|
|
|
|
case Type::DoubleTyID:
|
|
|
|
return TLI->has(DoubleFn);
|
|
|
|
default:
|
|
|
|
return TLI->has(LongDoubleFn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Add a emitUnaryFloatFnCall version that fetches the function name from TLI
Summary:
In several places in the code we use the following pattern:
if (hasUnaryFloatFn(&TLI, Ty, LibFunc_tan, LibFunc_tanf, LibFunc_tanl)) {
[...]
Value *Res = emitUnaryFloatFnCall(X, TLI.getName(LibFunc_tan), B, Attrs);
[...]
}
In short, we check if there is a lib-function for a certain type, and then
we _always_ fetch the name of the "double" version of the lib function and
construct a call to the appropriate function, that we just checked exists,
using that "double" name as a basis.
This is of course a problem in cases where the target doesn't support the
"double" version, but e.g. only the "float" version.
In that case TLI.getName(LibFunc_tan) returns "", and
emitUnaryFloatFnCall happily appends an "f" to "", and we erroneously end
up with a call to a function called "f".
To solve this, the above pattern is changed to
if (hasUnaryFloatFn(&TLI, Ty, LibFunc_tan, LibFunc_tanf, LibFunc_tanl)) {
[...]
Value *Res = emitUnaryFloatFnCall(X, &TLI, LibFunc_tan, LibFunc_tanf,
LibFunc_tanl, B, Attrs);
[...]
}
I.e instead of first fetching the name of the "double" version and then
letting emitUnaryFloatFnCall() add the final "f" or "l", we let
emitUnaryFloatFnCall() fetch the right name from TLI.
Reviewers: eli.friedman, efriedma
Reviewed By: efriedma
Subscribers: efriedma, bjope, llvm-commits
Differential Revision: https://reviews.llvm.org/D53370
llvm-svn: 344725
2018-10-18 14:27:53 +08:00
|
|
|
StringRef llvm::getUnaryFloatFn(const TargetLibraryInfo *TLI, Type *Ty,
|
|
|
|
LibFunc DoubleFn, LibFunc FloatFn,
|
|
|
|
LibFunc LongDoubleFn) {
|
|
|
|
assert(hasUnaryFloatFn(TLI, Ty, DoubleFn, FloatFn, LongDoubleFn) &&
|
|
|
|
"Cannot get name for unavailable function!");
|
|
|
|
|
|
|
|
switch (Ty->getTypeID()) {
|
|
|
|
case Type::HalfTyID:
|
|
|
|
llvm_unreachable("No name for HalfTy!");
|
|
|
|
case Type::FloatTyID:
|
|
|
|
return TLI->getName(FloatFn);
|
|
|
|
case Type::DoubleTyID:
|
|
|
|
return TLI->getName(DoubleFn);
|
|
|
|
default:
|
|
|
|
return TLI->getName(LongDoubleFn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-28 03:04:40 +08:00
|
|
|
//- Emit LibCalls ------------------------------------------------------------//
|
|
|
|
|
2016-01-20 03:46:10 +08:00
|
|
|
Value *llvm::castToCStr(Value *V, IRBuilder<> &B) {
|
2014-04-24 04:58:57 +08:00
|
|
|
unsigned AS = V->getType()->getPointerAddressSpace();
|
|
|
|
return B.CreateBitCast(V, B.getInt8PtrTy(AS), "cstr");
|
2010-03-06 06:25:30 +08:00
|
|
|
}
|
|
|
|
|
2016-01-20 03:46:10 +08:00
|
|
|
Value *llvm::emitStrLen(Value *Ptr, IRBuilder<> &B, const DataLayout &DL,
|
2012-07-26 00:46:31 +08:00
|
|
|
const TargetLibraryInfo *TLI) {
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
if (!TLI->has(LibFunc_strlen))
|
2014-04-25 13:29:35 +08:00
|
|
|
return nullptr;
|
2012-07-26 00:46:31 +08:00
|
|
|
|
2016-01-20 03:58:49 +08:00
|
|
|
Module *M = B.GetInsertBlock()->getModule();
|
2018-10-17 05:18:31 +08:00
|
|
|
StringRef StrlenName = TLI->getName(LibFunc_strlen);
|
2012-11-01 16:07:29 +08:00
|
|
|
LLVMContext &Context = B.GetInsertBlock()->getContext();
|
2018-10-17 05:18:31 +08:00
|
|
|
Constant *StrLen = M->getOrInsertFunction(StrlenName, DL.getIntPtrType(Context),
|
2017-04-11 23:01:18 +08:00
|
|
|
B.getInt8PtrTy());
|
2018-10-17 05:18:31 +08:00
|
|
|
inferLibFuncAttributes(M, StrlenName, *TLI);
|
|
|
|
CallInst *CI = B.CreateCall(StrLen, castToCStr(Ptr, B), StrlenName);
|
2014-03-13 02:09:37 +08:00
|
|
|
if (const Function *F = dyn_cast<Function>(StrLen->stripPointerCasts()))
|
|
|
|
CI->setCallingConv(F->getCallingConv());
|
|
|
|
|
2010-03-06 06:25:30 +08:00
|
|
|
return CI;
|
|
|
|
}
|
|
|
|
|
2016-01-20 03:46:10 +08:00
|
|
|
Value *llvm::emitStrChr(Value *Ptr, char C, IRBuilder<> &B,
|
2015-03-10 10:37:25 +08:00
|
|
|
const TargetLibraryInfo *TLI) {
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
if (!TLI->has(LibFunc_strchr))
|
2014-04-25 13:29:35 +08:00
|
|
|
return nullptr;
|
2012-07-26 00:46:31 +08:00
|
|
|
|
2016-01-20 03:58:49 +08:00
|
|
|
Module *M = B.GetInsertBlock()->getModule();
|
2018-10-17 05:18:31 +08:00
|
|
|
StringRef StrChrName = TLI->getName(LibFunc_strchr);
|
2011-07-18 12:54:35 +08:00
|
|
|
Type *I8Ptr = B.getInt8PtrTy();
|
|
|
|
Type *I32Ty = B.getInt32Ty();
|
2017-04-07 04:23:57 +08:00
|
|
|
Constant *StrChr =
|
2018-10-17 05:18:31 +08:00
|
|
|
M->getOrInsertFunction(StrChrName, I8Ptr, I8Ptr, I32Ty);
|
|
|
|
inferLibFuncAttributes(M, StrChrName, *TLI);
|
2015-05-19 06:13:54 +08:00
|
|
|
CallInst *CI = B.CreateCall(
|
2018-10-17 05:18:31 +08:00
|
|
|
StrChr, {castToCStr(Ptr, B), ConstantInt::get(I32Ty, C)}, StrChrName);
|
2014-03-13 02:09:37 +08:00
|
|
|
if (const Function *F = dyn_cast<Function>(StrChr->stripPointerCasts()))
|
|
|
|
CI->setCallingConv(F->getCallingConv());
|
2010-03-06 06:25:30 +08:00
|
|
|
return CI;
|
|
|
|
}
|
|
|
|
|
2016-01-20 03:46:10 +08:00
|
|
|
Value *llvm::emitStrNCmp(Value *Ptr1, Value *Ptr2, Value *Len, IRBuilder<> &B,
|
2015-03-10 10:37:25 +08:00
|
|
|
const DataLayout &DL, const TargetLibraryInfo *TLI) {
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
if (!TLI->has(LibFunc_strncmp))
|
2014-04-25 13:29:35 +08:00
|
|
|
return nullptr;
|
2012-07-26 00:46:31 +08:00
|
|
|
|
2016-01-20 03:58:49 +08:00
|
|
|
Module *M = B.GetInsertBlock()->getModule();
|
2018-10-17 05:18:31 +08:00
|
|
|
StringRef StrNCmpName = TLI->getName(LibFunc_strncmp);
|
2012-11-01 16:07:29 +08:00
|
|
|
LLVMContext &Context = B.GetInsertBlock()->getContext();
|
2018-10-17 05:18:31 +08:00
|
|
|
Value *StrNCmp = M->getOrInsertFunction(StrNCmpName, B.getInt32Ty(),
|
2017-04-07 04:23:57 +08:00
|
|
|
B.getInt8PtrTy(), B.getInt8PtrTy(),
|
2017-04-11 23:01:18 +08:00
|
|
|
DL.getIntPtrType(Context));
|
2018-10-17 05:18:31 +08:00
|
|
|
inferLibFuncAttributes(M, StrNCmpName, *TLI);
|
2015-05-19 06:13:54 +08:00
|
|
|
CallInst *CI = B.CreateCall(
|
2018-10-17 05:18:31 +08:00
|
|
|
StrNCmp, {castToCStr(Ptr1, B), castToCStr(Ptr2, B), Len}, StrNCmpName);
|
2014-03-13 02:09:37 +08:00
|
|
|
|
|
|
|
if (const Function *F = dyn_cast<Function>(StrNCmp->stripPointerCasts()))
|
|
|
|
CI->setCallingConv(F->getCallingConv());
|
|
|
|
|
2010-06-16 05:34:25 +08:00
|
|
|
return CI;
|
|
|
|
}
|
|
|
|
|
2016-01-20 03:46:10 +08:00
|
|
|
Value *llvm::emitStrCpy(Value *Dst, Value *Src, IRBuilder<> &B,
|
2015-03-10 10:37:25 +08:00
|
|
|
const TargetLibraryInfo *TLI, StringRef Name) {
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
if (!TLI->has(LibFunc_strcpy))
|
2014-04-25 13:29:35 +08:00
|
|
|
return nullptr;
|
2012-07-26 00:46:31 +08:00
|
|
|
|
2016-01-20 03:58:49 +08:00
|
|
|
Module *M = B.GetInsertBlock()->getModule();
|
2011-07-18 12:54:35 +08:00
|
|
|
Type *I8Ptr = B.getInt8PtrTy();
|
2017-04-11 23:01:18 +08:00
|
|
|
Value *StrCpy = M->getOrInsertFunction(Name, I8Ptr, I8Ptr, I8Ptr);
|
2018-10-17 05:18:31 +08:00
|
|
|
inferLibFuncAttributes(M, Name, *TLI);
|
2015-05-19 06:13:54 +08:00
|
|
|
CallInst *CI =
|
2016-01-20 03:46:10 +08:00
|
|
|
B.CreateCall(StrCpy, {castToCStr(Dst, B), castToCStr(Src, B)}, Name);
|
2014-03-13 02:09:37 +08:00
|
|
|
if (const Function *F = dyn_cast<Function>(StrCpy->stripPointerCasts()))
|
|
|
|
CI->setCallingConv(F->getCallingConv());
|
2010-03-06 06:25:30 +08:00
|
|
|
return CI;
|
|
|
|
}
|
|
|
|
|
2016-01-20 03:46:10 +08:00
|
|
|
Value *llvm::emitStrNCpy(Value *Dst, Value *Src, Value *Len, IRBuilder<> &B,
|
2012-07-26 00:46:31 +08:00
|
|
|
const TargetLibraryInfo *TLI, StringRef Name) {
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
if (!TLI->has(LibFunc_strncpy))
|
2014-04-25 13:29:35 +08:00
|
|
|
return nullptr;
|
2012-07-26 00:46:31 +08:00
|
|
|
|
2016-01-20 03:58:49 +08:00
|
|
|
Module *M = B.GetInsertBlock()->getModule();
|
2011-07-18 12:54:35 +08:00
|
|
|
Type *I8Ptr = B.getInt8PtrTy();
|
2017-04-07 04:23:57 +08:00
|
|
|
Value *StrNCpy = M->getOrInsertFunction(Name, I8Ptr, I8Ptr, I8Ptr,
|
2017-04-11 23:01:18 +08:00
|
|
|
Len->getType());
|
2018-10-17 05:18:31 +08:00
|
|
|
inferLibFuncAttributes(M, Name, *TLI);
|
2015-05-19 06:13:54 +08:00
|
|
|
CallInst *CI = B.CreateCall(
|
2018-10-17 05:18:31 +08:00
|
|
|
StrNCpy, {castToCStr(Dst, B), castToCStr(Src, B), Len}, Name);
|
2014-03-13 02:09:37 +08:00
|
|
|
if (const Function *F = dyn_cast<Function>(StrNCpy->stripPointerCasts()))
|
|
|
|
CI->setCallingConv(F->getCallingConv());
|
2010-03-11 09:25:07 +08:00
|
|
|
return CI;
|
|
|
|
}
|
|
|
|
|
2016-01-20 03:46:10 +08:00
|
|
|
Value *llvm::emitMemCpyChk(Value *Dst, Value *Src, Value *Len, Value *ObjSize,
|
2015-03-10 10:37:25 +08:00
|
|
|
IRBuilder<> &B, const DataLayout &DL,
|
2012-07-26 00:46:31 +08:00
|
|
|
const TargetLibraryInfo *TLI) {
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
if (!TLI->has(LibFunc_memcpy_chk))
|
2014-04-25 13:29:35 +08:00
|
|
|
return nullptr;
|
2012-07-26 00:46:31 +08:00
|
|
|
|
2016-01-20 03:58:49 +08:00
|
|
|
Module *M = B.GetInsertBlock()->getModule();
|
Rename AttributeSet to AttributeList
Summary:
This class is a list of AttributeSetNodes corresponding the function
prototype of a call or function declaration. This class used to be
called ParamAttrListPtr, then AttrListPtr, then AttributeSet. It is
typically accessed by parameter and return value index, so
"AttributeList" seems like a more intuitive name.
Rename AttributeSetImpl to AttributeListImpl to follow suit.
It's useful to rename this class so that we can rename AttributeSetNode
to AttributeSet later. AttributeSet is the set of attributes that apply
to a single function, argument, or return value.
Reviewers: sanjoy, javed.absar, chandlerc, pete
Reviewed By: pete
Subscribers: pete, jholewinski, arsenm, dschuff, mehdi_amini, jfb, nhaehnle, sbc100, void, llvm-commits
Differential Revision: https://reviews.llvm.org/D31102
llvm-svn: 298393
2017-03-22 00:57:19 +08:00
|
|
|
AttributeList AS;
|
|
|
|
AS = AttributeList::get(M->getContext(), AttributeList::FunctionIndex,
|
|
|
|
Attribute::NoUnwind);
|
2012-11-01 16:07:29 +08:00
|
|
|
LLVMContext &Context = B.GetInsertBlock()->getContext();
|
2015-03-10 10:37:25 +08:00
|
|
|
Value *MemCpy = M->getOrInsertFunction(
|
Rename AttributeSet to AttributeList
Summary:
This class is a list of AttributeSetNodes corresponding the function
prototype of a call or function declaration. This class used to be
called ParamAttrListPtr, then AttrListPtr, then AttributeSet. It is
typically accessed by parameter and return value index, so
"AttributeList" seems like a more intuitive name.
Rename AttributeSetImpl to AttributeListImpl to follow suit.
It's useful to rename this class so that we can rename AttributeSetNode
to AttributeSet later. AttributeSet is the set of attributes that apply
to a single function, argument, or return value.
Reviewers: sanjoy, javed.absar, chandlerc, pete
Reviewed By: pete
Subscribers: pete, jholewinski, arsenm, dschuff, mehdi_amini, jfb, nhaehnle, sbc100, void, llvm-commits
Differential Revision: https://reviews.llvm.org/D31102
llvm-svn: 298393
2017-03-22 00:57:19 +08:00
|
|
|
"__memcpy_chk", AttributeList::get(M->getContext(), AS), B.getInt8PtrTy(),
|
2015-03-10 10:37:25 +08:00
|
|
|
B.getInt8PtrTy(), B.getInt8PtrTy(), DL.getIntPtrType(Context),
|
2017-04-11 23:01:18 +08:00
|
|
|
DL.getIntPtrType(Context));
|
2016-01-20 03:46:10 +08:00
|
|
|
Dst = castToCStr(Dst, B);
|
|
|
|
Src = castToCStr(Src, B);
|
2015-05-19 06:13:54 +08:00
|
|
|
CallInst *CI = B.CreateCall(MemCpy, {Dst, Src, Len, ObjSize});
|
2014-03-13 02:09:37 +08:00
|
|
|
if (const Function *F = dyn_cast<Function>(MemCpy->stripPointerCasts()))
|
|
|
|
CI->setCallingConv(F->getCallingConv());
|
2010-03-23 23:48:04 +08:00
|
|
|
return CI;
|
|
|
|
}
|
|
|
|
|
2016-01-20 03:46:10 +08:00
|
|
|
Value *llvm::emitMemChr(Value *Ptr, Value *Val, Value *Len, IRBuilder<> &B,
|
2015-03-10 10:37:25 +08:00
|
|
|
const DataLayout &DL, const TargetLibraryInfo *TLI) {
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
if (!TLI->has(LibFunc_memchr))
|
2014-04-25 13:29:35 +08:00
|
|
|
return nullptr;
|
2012-07-26 00:46:31 +08:00
|
|
|
|
2016-01-20 03:58:49 +08:00
|
|
|
Module *M = B.GetInsertBlock()->getModule();
|
2018-10-17 05:18:31 +08:00
|
|
|
StringRef MemChrName = TLI->getName(LibFunc_memchr);
|
2012-11-01 16:07:29 +08:00
|
|
|
LLVMContext &Context = B.GetInsertBlock()->getContext();
|
2018-10-17 05:18:31 +08:00
|
|
|
Value *MemChr = M->getOrInsertFunction(MemChrName, B.getInt8PtrTy(),
|
2017-04-07 04:23:57 +08:00
|
|
|
B.getInt8PtrTy(), B.getInt32Ty(),
|
2017-04-11 23:01:18 +08:00
|
|
|
DL.getIntPtrType(Context));
|
2018-10-17 05:18:31 +08:00
|
|
|
inferLibFuncAttributes(M, MemChrName, *TLI);
|
|
|
|
CallInst *CI = B.CreateCall(MemChr, {castToCStr(Ptr, B), Val, Len}, MemChrName);
|
2014-03-13 02:09:37 +08:00
|
|
|
|
|
|
|
if (const Function *F = dyn_cast<Function>(MemChr->stripPointerCasts()))
|
|
|
|
CI->setCallingConv(F->getCallingConv());
|
|
|
|
|
2010-03-06 06:25:30 +08:00
|
|
|
return CI;
|
|
|
|
}
|
|
|
|
|
2016-01-20 03:46:10 +08:00
|
|
|
Value *llvm::emitMemCmp(Value *Ptr1, Value *Ptr2, Value *Len, IRBuilder<> &B,
|
2015-03-10 10:37:25 +08:00
|
|
|
const DataLayout &DL, const TargetLibraryInfo *TLI) {
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
if (!TLI->has(LibFunc_memcmp))
|
2014-04-25 13:29:35 +08:00
|
|
|
return nullptr;
|
2012-07-26 00:46:31 +08:00
|
|
|
|
2016-01-20 03:58:49 +08:00
|
|
|
Module *M = B.GetInsertBlock()->getModule();
|
2018-10-17 05:18:31 +08:00
|
|
|
StringRef MemCmpName = TLI->getName(LibFunc_memcmp);
|
2012-11-01 16:07:29 +08:00
|
|
|
LLVMContext &Context = B.GetInsertBlock()->getContext();
|
2018-10-17 05:18:31 +08:00
|
|
|
Value *MemCmp = M->getOrInsertFunction(MemCmpName, B.getInt32Ty(),
|
2017-04-07 04:23:57 +08:00
|
|
|
B.getInt8PtrTy(), B.getInt8PtrTy(),
|
2017-04-11 23:01:18 +08:00
|
|
|
DL.getIntPtrType(Context));
|
2018-10-17 05:18:31 +08:00
|
|
|
inferLibFuncAttributes(M, MemCmpName, *TLI);
|
2015-05-19 06:13:54 +08:00
|
|
|
CallInst *CI = B.CreateCall(
|
2018-10-17 05:18:31 +08:00
|
|
|
MemCmp, {castToCStr(Ptr1, B), castToCStr(Ptr2, B), Len}, MemCmpName);
|
2014-03-13 02:09:37 +08:00
|
|
|
|
|
|
|
if (const Function *F = dyn_cast<Function>(MemCmp->stripPointerCasts()))
|
|
|
|
CI->setCallingConv(F->getCallingConv());
|
|
|
|
|
2010-03-06 06:25:30 +08:00
|
|
|
return CI;
|
|
|
|
}
|
|
|
|
|
2013-12-17 06:42:40 +08:00
|
|
|
/// Append a suffix to the function name according to the type of 'Op'.
|
2016-01-20 03:46:10 +08:00
|
|
|
static void appendTypeSuffix(Value *Op, StringRef &Name,
|
2016-01-20 03:17:47 +08:00
|
|
|
SmallString<20> &NameBuffer) {
|
2013-12-17 06:42:40 +08:00
|
|
|
if (!Op->getType()->isDoubleTy()) {
|
|
|
|
NameBuffer += Name;
|
|
|
|
|
|
|
|
if (Op->getType()->isFloatTy())
|
|
|
|
NameBuffer += 'f';
|
|
|
|
else
|
|
|
|
NameBuffer += 'l';
|
|
|
|
|
|
|
|
Name = NameBuffer;
|
2018-07-31 03:41:25 +08:00
|
|
|
}
|
2013-12-17 06:42:40 +08:00
|
|
|
}
|
|
|
|
|
Add a emitUnaryFloatFnCall version that fetches the function name from TLI
Summary:
In several places in the code we use the following pattern:
if (hasUnaryFloatFn(&TLI, Ty, LibFunc_tan, LibFunc_tanf, LibFunc_tanl)) {
[...]
Value *Res = emitUnaryFloatFnCall(X, TLI.getName(LibFunc_tan), B, Attrs);
[...]
}
In short, we check if there is a lib-function for a certain type, and then
we _always_ fetch the name of the "double" version of the lib function and
construct a call to the appropriate function, that we just checked exists,
using that "double" name as a basis.
This is of course a problem in cases where the target doesn't support the
"double" version, but e.g. only the "float" version.
In that case TLI.getName(LibFunc_tan) returns "", and
emitUnaryFloatFnCall happily appends an "f" to "", and we erroneously end
up with a call to a function called "f".
To solve this, the above pattern is changed to
if (hasUnaryFloatFn(&TLI, Ty, LibFunc_tan, LibFunc_tanf, LibFunc_tanl)) {
[...]
Value *Res = emitUnaryFloatFnCall(X, &TLI, LibFunc_tan, LibFunc_tanf,
LibFunc_tanl, B, Attrs);
[...]
}
I.e instead of first fetching the name of the "double" version and then
letting emitUnaryFloatFnCall() add the final "f" or "l", we let
emitUnaryFloatFnCall() fetch the right name from TLI.
Reviewers: eli.friedman, efriedma
Reviewed By: efriedma
Subscribers: efriedma, bjope, llvm-commits
Differential Revision: https://reviews.llvm.org/D53370
llvm-svn: 344725
2018-10-18 14:27:53 +08:00
|
|
|
static Value *emitUnaryFloatFnCallHelper(Value *Op, StringRef Name,
|
|
|
|
IRBuilder<> &B,
|
|
|
|
const AttributeList &Attrs) {
|
|
|
|
assert((Name != "") && "Must specify Name to emitUnaryFloatFnCall");
|
2010-03-06 06:25:30 +08:00
|
|
|
|
2016-01-20 03:58:49 +08:00
|
|
|
Module *M = B.GetInsertBlock()->getModule();
|
2017-04-07 04:23:57 +08:00
|
|
|
Value *Callee = M->getOrInsertFunction(Name, Op->getType(),
|
2017-04-11 23:01:18 +08:00
|
|
|
Op->getType());
|
2010-03-06 06:25:30 +08:00
|
|
|
CallInst *CI = B.CreateCall(Callee, Op, Name);
|
2017-05-03 10:26:10 +08:00
|
|
|
|
|
|
|
// The incoming attribute set may have come from a speculatable intrinsic, but
|
|
|
|
// is being replaced with a library call which is not allowed to be
|
|
|
|
// speculatable.
|
|
|
|
CI->setAttributes(Attrs.removeAttribute(B.getContext(),
|
|
|
|
AttributeList::FunctionIndex,
|
|
|
|
Attribute::Speculatable));
|
2014-03-13 02:09:37 +08:00
|
|
|
if (const Function *F = dyn_cast<Function>(Callee->stripPointerCasts()))
|
|
|
|
CI->setCallingConv(F->getCallingConv());
|
|
|
|
|
2010-03-06 06:25:30 +08:00
|
|
|
return CI;
|
|
|
|
}
|
|
|
|
|
Add a emitUnaryFloatFnCall version that fetches the function name from TLI
Summary:
In several places in the code we use the following pattern:
if (hasUnaryFloatFn(&TLI, Ty, LibFunc_tan, LibFunc_tanf, LibFunc_tanl)) {
[...]
Value *Res = emitUnaryFloatFnCall(X, TLI.getName(LibFunc_tan), B, Attrs);
[...]
}
In short, we check if there is a lib-function for a certain type, and then
we _always_ fetch the name of the "double" version of the lib function and
construct a call to the appropriate function, that we just checked exists,
using that "double" name as a basis.
This is of course a problem in cases where the target doesn't support the
"double" version, but e.g. only the "float" version.
In that case TLI.getName(LibFunc_tan) returns "", and
emitUnaryFloatFnCall happily appends an "f" to "", and we erroneously end
up with a call to a function called "f".
To solve this, the above pattern is changed to
if (hasUnaryFloatFn(&TLI, Ty, LibFunc_tan, LibFunc_tanf, LibFunc_tanl)) {
[...]
Value *Res = emitUnaryFloatFnCall(X, &TLI, LibFunc_tan, LibFunc_tanf,
LibFunc_tanl, B, Attrs);
[...]
}
I.e instead of first fetching the name of the "double" version and then
letting emitUnaryFloatFnCall() add the final "f" or "l", we let
emitUnaryFloatFnCall() fetch the right name from TLI.
Reviewers: eli.friedman, efriedma
Reviewed By: efriedma
Subscribers: efriedma, bjope, llvm-commits
Differential Revision: https://reviews.llvm.org/D53370
llvm-svn: 344725
2018-10-18 14:27:53 +08:00
|
|
|
Value *llvm::emitUnaryFloatFnCall(Value *Op, StringRef Name, IRBuilder<> &B,
|
|
|
|
const AttributeList &Attrs) {
|
|
|
|
SmallString<20> NameBuffer;
|
|
|
|
appendTypeSuffix(Op, Name, NameBuffer);
|
|
|
|
|
|
|
|
return emitUnaryFloatFnCallHelper(Op, Name, B, Attrs);
|
|
|
|
}
|
|
|
|
|
|
|
|
Value *llvm::emitUnaryFloatFnCall(Value *Op, const TargetLibraryInfo *TLI,
|
|
|
|
LibFunc DoubleFn, LibFunc FloatFn,
|
|
|
|
LibFunc LongDoubleFn, IRBuilder<> &B,
|
|
|
|
const AttributeList &Attrs) {
|
|
|
|
// Get the name of the function according to TLI.
|
|
|
|
StringRef Name = getUnaryFloatFn(TLI, Op->getType(),
|
|
|
|
DoubleFn, FloatFn, LongDoubleFn);
|
|
|
|
|
|
|
|
return emitUnaryFloatFnCallHelper(Op, Name, B, Attrs);
|
|
|
|
}
|
|
|
|
|
2016-01-20 03:46:10 +08:00
|
|
|
Value *llvm::emitBinaryFloatFnCall(Value *Op1, Value *Op2, StringRef Name,
|
Rename AttributeSet to AttributeList
Summary:
This class is a list of AttributeSetNodes corresponding the function
prototype of a call or function declaration. This class used to be
called ParamAttrListPtr, then AttrListPtr, then AttributeSet. It is
typically accessed by parameter and return value index, so
"AttributeList" seems like a more intuitive name.
Rename AttributeSetImpl to AttributeListImpl to follow suit.
It's useful to rename this class so that we can rename AttributeSetNode
to AttributeSet later. AttributeSet is the set of attributes that apply
to a single function, argument, or return value.
Reviewers: sanjoy, javed.absar, chandlerc, pete
Reviewed By: pete
Subscribers: pete, jholewinski, arsenm, dschuff, mehdi_amini, jfb, nhaehnle, sbc100, void, llvm-commits
Differential Revision: https://reviews.llvm.org/D31102
llvm-svn: 298393
2017-03-22 00:57:19 +08:00
|
|
|
IRBuilder<> &B, const AttributeList &Attrs) {
|
Add a emitUnaryFloatFnCall version that fetches the function name from TLI
Summary:
In several places in the code we use the following pattern:
if (hasUnaryFloatFn(&TLI, Ty, LibFunc_tan, LibFunc_tanf, LibFunc_tanl)) {
[...]
Value *Res = emitUnaryFloatFnCall(X, TLI.getName(LibFunc_tan), B, Attrs);
[...]
}
In short, we check if there is a lib-function for a certain type, and then
we _always_ fetch the name of the "double" version of the lib function and
construct a call to the appropriate function, that we just checked exists,
using that "double" name as a basis.
This is of course a problem in cases where the target doesn't support the
"double" version, but e.g. only the "float" version.
In that case TLI.getName(LibFunc_tan) returns "", and
emitUnaryFloatFnCall happily appends an "f" to "", and we erroneously end
up with a call to a function called "f".
To solve this, the above pattern is changed to
if (hasUnaryFloatFn(&TLI, Ty, LibFunc_tan, LibFunc_tanf, LibFunc_tanl)) {
[...]
Value *Res = emitUnaryFloatFnCall(X, &TLI, LibFunc_tan, LibFunc_tanf,
LibFunc_tanl, B, Attrs);
[...]
}
I.e instead of first fetching the name of the "double" version and then
letting emitUnaryFloatFnCall() add the final "f" or "l", we let
emitUnaryFloatFnCall() fetch the right name from TLI.
Reviewers: eli.friedman, efriedma
Reviewed By: efriedma
Subscribers: efriedma, bjope, llvm-commits
Differential Revision: https://reviews.llvm.org/D53370
llvm-svn: 344725
2018-10-18 14:27:53 +08:00
|
|
|
assert((Name != "") && "Must specify Name to emitBinaryFloatFnCall");
|
|
|
|
|
2013-12-17 06:42:40 +08:00
|
|
|
SmallString<20> NameBuffer;
|
2016-01-20 03:46:10 +08:00
|
|
|
appendTypeSuffix(Op1, Name, NameBuffer);
|
2013-12-17 06:42:40 +08:00
|
|
|
|
2016-01-20 03:58:49 +08:00
|
|
|
Module *M = B.GetInsertBlock()->getModule();
|
2016-01-20 03:17:47 +08:00
|
|
|
Value *Callee = M->getOrInsertFunction(Name, Op1->getType(), Op1->getType(),
|
2017-04-11 23:01:18 +08:00
|
|
|
Op2->getType());
|
2015-05-19 06:13:54 +08:00
|
|
|
CallInst *CI = B.CreateCall(Callee, {Op1, Op2}, Name);
|
2013-12-17 06:42:40 +08:00
|
|
|
CI->setAttributes(Attrs);
|
2014-03-13 02:09:37 +08:00
|
|
|
if (const Function *F = dyn_cast<Function>(Callee->stripPointerCasts()))
|
|
|
|
CI->setCallingConv(F->getCallingConv());
|
|
|
|
|
2013-12-17 06:42:40 +08:00
|
|
|
return CI;
|
|
|
|
}
|
|
|
|
|
2016-01-20 03:46:10 +08:00
|
|
|
Value *llvm::emitPutChar(Value *Char, IRBuilder<> &B,
|
2012-07-26 00:46:31 +08:00
|
|
|
const TargetLibraryInfo *TLI) {
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
if (!TLI->has(LibFunc_putchar))
|
2014-04-25 13:29:35 +08:00
|
|
|
return nullptr;
|
2012-07-26 00:46:31 +08:00
|
|
|
|
2016-01-20 03:58:49 +08:00
|
|
|
Module *M = B.GetInsertBlock()->getModule();
|
2018-10-17 05:18:31 +08:00
|
|
|
StringRef PutCharName = TLI->getName(LibFunc_putchar);
|
|
|
|
Value *PutChar = M->getOrInsertFunction(PutCharName, B.getInt32Ty(), B.getInt32Ty());
|
|
|
|
inferLibFuncAttributes(M, PutCharName, *TLI);
|
2010-03-06 06:25:30 +08:00
|
|
|
CallInst *CI = B.CreateCall(PutChar,
|
|
|
|
B.CreateIntCast(Char,
|
|
|
|
B.getInt32Ty(),
|
|
|
|
/*isSigned*/true,
|
|
|
|
"chari"),
|
2018-10-17 05:18:31 +08:00
|
|
|
PutCharName);
|
2014-03-13 02:09:37 +08:00
|
|
|
|
|
|
|
if (const Function *F = dyn_cast<Function>(PutChar->stripPointerCasts()))
|
|
|
|
CI->setCallingConv(F->getCallingConv());
|
2010-03-06 06:25:30 +08:00
|
|
|
return CI;
|
|
|
|
}
|
|
|
|
|
2016-01-20 03:46:10 +08:00
|
|
|
Value *llvm::emitPutS(Value *Str, IRBuilder<> &B,
|
2012-07-26 00:46:31 +08:00
|
|
|
const TargetLibraryInfo *TLI) {
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
if (!TLI->has(LibFunc_puts))
|
2014-04-25 13:29:35 +08:00
|
|
|
return nullptr;
|
2012-07-26 00:46:31 +08:00
|
|
|
|
2016-01-20 03:58:49 +08:00
|
|
|
Module *M = B.GetInsertBlock()->getModule();
|
2018-10-17 05:18:31 +08:00
|
|
|
StringRef PutsName = TLI->getName(LibFunc_puts);
|
2016-04-28 03:04:40 +08:00
|
|
|
Value *PutS =
|
2018-10-17 05:18:31 +08:00
|
|
|
M->getOrInsertFunction(PutsName, B.getInt32Ty(), B.getInt8PtrTy());
|
|
|
|
inferLibFuncAttributes(M, PutsName, *TLI);
|
|
|
|
CallInst *CI = B.CreateCall(PutS, castToCStr(Str, B), PutsName);
|
2014-03-13 02:09:37 +08:00
|
|
|
if (const Function *F = dyn_cast<Function>(PutS->stripPointerCasts()))
|
|
|
|
CI->setCallingConv(F->getCallingConv());
|
2012-07-26 00:46:31 +08:00
|
|
|
return CI;
|
2010-03-06 06:25:30 +08:00
|
|
|
}
|
|
|
|
|
2016-01-20 03:46:10 +08:00
|
|
|
Value *llvm::emitFPutC(Value *Char, Value *File, IRBuilder<> &B,
|
2015-03-10 10:37:25 +08:00
|
|
|
const TargetLibraryInfo *TLI) {
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
if (!TLI->has(LibFunc_fputc))
|
2014-04-25 13:29:35 +08:00
|
|
|
return nullptr;
|
2012-07-26 00:46:31 +08:00
|
|
|
|
2016-01-20 03:58:49 +08:00
|
|
|
Module *M = B.GetInsertBlock()->getModule();
|
2018-10-17 05:18:31 +08:00
|
|
|
StringRef FPutcName = TLI->getName(LibFunc_fputc);
|
|
|
|
Constant *F = M->getOrInsertFunction(FPutcName, B.getInt32Ty(), B.getInt32Ty(),
|
2017-04-11 23:01:18 +08:00
|
|
|
File->getType());
|
2010-03-06 06:25:30 +08:00
|
|
|
if (File->getType()->isPointerTy())
|
2018-10-17 05:18:31 +08:00
|
|
|
inferLibFuncAttributes(M, FPutcName, *TLI);
|
2010-03-06 06:25:30 +08:00
|
|
|
Char = B.CreateIntCast(Char, B.getInt32Ty(), /*isSigned*/true,
|
|
|
|
"chari");
|
2018-10-17 05:18:31 +08:00
|
|
|
CallInst *CI = B.CreateCall(F, {Char, File}, FPutcName);
|
2014-03-13 02:09:37 +08:00
|
|
|
|
|
|
|
if (const Function *Fn = dyn_cast<Function>(F->stripPointerCasts()))
|
|
|
|
CI->setCallingConv(Fn->getCallingConv());
|
2012-07-26 00:46:31 +08:00
|
|
|
return CI;
|
2010-03-06 06:25:30 +08:00
|
|
|
}
|
|
|
|
|
[SimplifyLibcalls] Replace locked IO with unlocked IO
Summary: If file stream arg is not captured and source is fopen, we could replace IO calls by unlocked IO ("_unlocked" function variants) to gain better speed,
Reviewers: efriedma, RKSimon, spatel, sanjoy, hfinkel, majnemer, lebedev.ri, rja
Reviewed By: rja
Subscribers: rja, srhines, efriedma, lebedev.ri, llvm-commits
Differential Revision: https://reviews.llvm.org/D45736
llvm-svn: 332452
2018-05-16 19:39:52 +08:00
|
|
|
Value *llvm::emitFPutCUnlocked(Value *Char, Value *File, IRBuilder<> &B,
|
|
|
|
const TargetLibraryInfo *TLI) {
|
|
|
|
if (!TLI->has(LibFunc_fputc_unlocked))
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
Module *M = B.GetInsertBlock()->getModule();
|
2018-10-17 05:18:31 +08:00
|
|
|
StringRef FPutcUnlockedName = TLI->getName(LibFunc_fputc_unlocked);
|
|
|
|
Constant *F = M->getOrInsertFunction(FPutcUnlockedName, B.getInt32Ty(),
|
[SimplifyLibcalls] Replace locked IO with unlocked IO
Summary: If file stream arg is not captured and source is fopen, we could replace IO calls by unlocked IO ("_unlocked" function variants) to gain better speed,
Reviewers: efriedma, RKSimon, spatel, sanjoy, hfinkel, majnemer, lebedev.ri, rja
Reviewed By: rja
Subscribers: rja, srhines, efriedma, lebedev.ri, llvm-commits
Differential Revision: https://reviews.llvm.org/D45736
llvm-svn: 332452
2018-05-16 19:39:52 +08:00
|
|
|
B.getInt32Ty(), File->getType());
|
|
|
|
if (File->getType()->isPointerTy())
|
2018-10-17 05:18:31 +08:00
|
|
|
inferLibFuncAttributes(M, FPutcUnlockedName, *TLI);
|
[SimplifyLibcalls] Replace locked IO with unlocked IO
Summary: If file stream arg is not captured and source is fopen, we could replace IO calls by unlocked IO ("_unlocked" function variants) to gain better speed,
Reviewers: efriedma, RKSimon, spatel, sanjoy, hfinkel, majnemer, lebedev.ri, rja
Reviewed By: rja
Subscribers: rja, srhines, efriedma, lebedev.ri, llvm-commits
Differential Revision: https://reviews.llvm.org/D45736
llvm-svn: 332452
2018-05-16 19:39:52 +08:00
|
|
|
Char = B.CreateIntCast(Char, B.getInt32Ty(), /*isSigned*/ true, "chari");
|
2018-10-17 05:18:31 +08:00
|
|
|
CallInst *CI = B.CreateCall(F, {Char, File}, FPutcUnlockedName);
|
[SimplifyLibcalls] Replace locked IO with unlocked IO
Summary: If file stream arg is not captured and source is fopen, we could replace IO calls by unlocked IO ("_unlocked" function variants) to gain better speed,
Reviewers: efriedma, RKSimon, spatel, sanjoy, hfinkel, majnemer, lebedev.ri, rja
Reviewed By: rja
Subscribers: rja, srhines, efriedma, lebedev.ri, llvm-commits
Differential Revision: https://reviews.llvm.org/D45736
llvm-svn: 332452
2018-05-16 19:39:52 +08:00
|
|
|
|
|
|
|
if (const Function *Fn = dyn_cast<Function>(F->stripPointerCasts()))
|
|
|
|
CI->setCallingConv(Fn->getCallingConv());
|
|
|
|
return CI;
|
|
|
|
}
|
|
|
|
|
2016-01-20 03:46:10 +08:00
|
|
|
Value *llvm::emitFPutS(Value *Str, Value *File, IRBuilder<> &B,
|
2015-03-10 10:37:25 +08:00
|
|
|
const TargetLibraryInfo *TLI) {
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
if (!TLI->has(LibFunc_fputs))
|
2014-04-25 13:29:35 +08:00
|
|
|
return nullptr;
|
2012-07-26 00:46:31 +08:00
|
|
|
|
2016-01-20 03:58:49 +08:00
|
|
|
Module *M = B.GetInsertBlock()->getModule();
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
StringRef FPutsName = TLI->getName(LibFunc_fputs);
|
2017-04-07 04:23:57 +08:00
|
|
|
Constant *F = M->getOrInsertFunction(
|
2017-04-11 23:01:18 +08:00
|
|
|
FPutsName, B.getInt32Ty(), B.getInt8PtrTy(), File->getType());
|
2010-03-06 06:25:30 +08:00
|
|
|
if (File->getType()->isPointerTy())
|
2018-10-17 05:18:31 +08:00
|
|
|
inferLibFuncAttributes(M, FPutsName, *TLI);
|
|
|
|
CallInst *CI = B.CreateCall(F, {castToCStr(Str, B), File}, FPutsName);
|
2014-03-13 02:09:37 +08:00
|
|
|
|
|
|
|
if (const Function *Fn = dyn_cast<Function>(F->stripPointerCasts()))
|
|
|
|
CI->setCallingConv(Fn->getCallingConv());
|
2012-07-26 00:46:31 +08:00
|
|
|
return CI;
|
2010-03-06 06:25:30 +08:00
|
|
|
}
|
|
|
|
|
[SimplifyLibcalls] Replace locked IO with unlocked IO
Summary: If file stream arg is not captured and source is fopen, we could replace IO calls by unlocked IO ("_unlocked" function variants) to gain better speed,
Reviewers: efriedma, RKSimon, spatel, sanjoy, hfinkel, majnemer, lebedev.ri, rja
Reviewed By: rja
Subscribers: rja, srhines, efriedma, lebedev.ri, llvm-commits
Differential Revision: https://reviews.llvm.org/D45736
llvm-svn: 332452
2018-05-16 19:39:52 +08:00
|
|
|
Value *llvm::emitFPutSUnlocked(Value *Str, Value *File, IRBuilder<> &B,
|
|
|
|
const TargetLibraryInfo *TLI) {
|
|
|
|
if (!TLI->has(LibFunc_fputs_unlocked))
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
Module *M = B.GetInsertBlock()->getModule();
|
|
|
|
StringRef FPutsUnlockedName = TLI->getName(LibFunc_fputs_unlocked);
|
|
|
|
Constant *F = M->getOrInsertFunction(FPutsUnlockedName, B.getInt32Ty(),
|
|
|
|
B.getInt8PtrTy(), File->getType());
|
|
|
|
if (File->getType()->isPointerTy())
|
2018-10-17 05:18:31 +08:00
|
|
|
inferLibFuncAttributes(M, FPutsUnlockedName, *TLI);
|
|
|
|
CallInst *CI = B.CreateCall(F, {castToCStr(Str, B), File}, FPutsUnlockedName);
|
[SimplifyLibcalls] Replace locked IO with unlocked IO
Summary: If file stream arg is not captured and source is fopen, we could replace IO calls by unlocked IO ("_unlocked" function variants) to gain better speed,
Reviewers: efriedma, RKSimon, spatel, sanjoy, hfinkel, majnemer, lebedev.ri, rja
Reviewed By: rja
Subscribers: rja, srhines, efriedma, lebedev.ri, llvm-commits
Differential Revision: https://reviews.llvm.org/D45736
llvm-svn: 332452
2018-05-16 19:39:52 +08:00
|
|
|
|
|
|
|
if (const Function *Fn = dyn_cast<Function>(F->stripPointerCasts()))
|
|
|
|
CI->setCallingConv(Fn->getCallingConv());
|
|
|
|
return CI;
|
|
|
|
}
|
|
|
|
|
2016-01-20 03:46:10 +08:00
|
|
|
Value *llvm::emitFWrite(Value *Ptr, Value *Size, Value *File, IRBuilder<> &B,
|
2015-03-10 10:37:25 +08:00
|
|
|
const DataLayout &DL, const TargetLibraryInfo *TLI) {
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
if (!TLI->has(LibFunc_fwrite))
|
2014-04-25 13:29:35 +08:00
|
|
|
return nullptr;
|
2012-07-26 00:46:31 +08:00
|
|
|
|
2016-01-20 03:58:49 +08:00
|
|
|
Module *M = B.GetInsertBlock()->getModule();
|
2012-11-01 16:07:29 +08:00
|
|
|
LLVMContext &Context = B.GetInsertBlock()->getContext();
|
[Analysis] Add LibFunc_ prefix to enums in TargetLibraryInfo. (NFC)
Summary:
The LibFunc::Func enum holds enumerators named for libc functions.
Unfortunately, there are real situations, including libc implementations, where
function names are actually macros (musl uses "#define fopen64 fopen", for
example; any other transitively visible macro would have similar effects).
Strictly speaking, a conforming C++ Standard Library should provide any such
macros as functions instead (via <cstdio>). However, there are some "library"
functions which are not part of the standard, and thus not subject to this
rule (fopen64, for example). So, in order to be both portable and consistent,
the enum should not use the bare function names.
The old enum naming used a namespace LibFunc and an enum Func, with bare
enumerators. This patch changes LibFunc to be an enum with enumerators prefixed
with "LibFFunc_". (Unfortunately, a scoped enum is not sufficient to override
macros.)
There are additional changes required in clang.
Reviewers: rsmith
Subscribers: mehdi_amini, mzolotukhin, nemanjai, llvm-commits
Differential Revision: https://reviews.llvm.org/D28476
llvm-svn: 292848
2017-01-24 07:16:46 +08:00
|
|
|
StringRef FWriteName = TLI->getName(LibFunc_fwrite);
|
2016-04-28 03:04:40 +08:00
|
|
|
Constant *F = M->getOrInsertFunction(
|
|
|
|
FWriteName, DL.getIntPtrType(Context), B.getInt8PtrTy(),
|
2017-04-11 23:01:18 +08:00
|
|
|
DL.getIntPtrType(Context), DL.getIntPtrType(Context), File->getType());
|
|
|
|
|
2010-03-06 06:25:30 +08:00
|
|
|
if (File->getType()->isPointerTy())
|
2018-10-17 05:18:31 +08:00
|
|
|
inferLibFuncAttributes(M, FWriteName, *TLI);
|
2015-03-10 10:37:25 +08:00
|
|
|
CallInst *CI =
|
2016-01-20 03:46:10 +08:00
|
|
|
B.CreateCall(F, {castToCStr(Ptr, B), Size,
|
2015-05-19 06:13:54 +08:00
|
|
|
ConstantInt::get(DL.getIntPtrType(Context), 1), File});
|
2014-03-13 02:09:37 +08:00
|
|
|
|
|
|
|
if (const Function *Fn = dyn_cast<Function>(F->stripPointerCasts()))
|
|
|
|
CI->setCallingConv(Fn->getCallingConv());
|
2012-07-26 00:46:31 +08:00
|
|
|
return CI;
|
2010-03-06 06:25:30 +08:00
|
|
|
}
|
2018-04-18 22:21:31 +08:00
|
|
|
|
|
|
|
Value *llvm::emitMalloc(Value *Num, IRBuilder<> &B, const DataLayout &DL,
|
|
|
|
const TargetLibraryInfo *TLI) {
|
|
|
|
if (!TLI->has(LibFunc_malloc))
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
Module *M = B.GetInsertBlock()->getModule();
|
2018-10-17 05:18:31 +08:00
|
|
|
StringRef MallocName = TLI->getName(LibFunc_malloc);
|
2018-04-18 22:21:31 +08:00
|
|
|
LLVMContext &Context = B.GetInsertBlock()->getContext();
|
2018-10-17 05:18:31 +08:00
|
|
|
Value *Malloc = M->getOrInsertFunction(MallocName, B.getInt8PtrTy(),
|
2018-04-18 22:21:31 +08:00
|
|
|
DL.getIntPtrType(Context));
|
2018-10-17 05:18:31 +08:00
|
|
|
inferLibFuncAttributes(M, MallocName, *TLI);
|
|
|
|
CallInst *CI = B.CreateCall(Malloc, Num, MallocName);
|
2018-04-18 22:21:31 +08:00
|
|
|
|
|
|
|
if (const Function *F = dyn_cast<Function>(Malloc->stripPointerCasts()))
|
|
|
|
CI->setCallingConv(F->getCallingConv());
|
|
|
|
|
|
|
|
return CI;
|
|
|
|
}
|
|
|
|
|
|
|
|
Value *llvm::emitCalloc(Value *Num, Value *Size, const AttributeList &Attrs,
|
|
|
|
IRBuilder<> &B, const TargetLibraryInfo &TLI) {
|
|
|
|
if (!TLI.has(LibFunc_calloc))
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
Module *M = B.GetInsertBlock()->getModule();
|
2018-10-17 05:18:31 +08:00
|
|
|
StringRef CallocName = TLI.getName(LibFunc_calloc);
|
2018-04-18 22:21:31 +08:00
|
|
|
const DataLayout &DL = M->getDataLayout();
|
|
|
|
IntegerType *PtrType = DL.getIntPtrType((B.GetInsertBlock()->getContext()));
|
2018-10-17 05:18:31 +08:00
|
|
|
Value *Calloc = M->getOrInsertFunction(CallocName, Attrs, B.getInt8PtrTy(),
|
2018-04-18 22:21:31 +08:00
|
|
|
PtrType, PtrType);
|
2018-10-17 05:18:31 +08:00
|
|
|
inferLibFuncAttributes(M, CallocName, TLI);
|
|
|
|
CallInst *CI = B.CreateCall(Calloc, {Num, Size}, CallocName);
|
2018-04-18 22:21:31 +08:00
|
|
|
|
|
|
|
if (const auto *F = dyn_cast<Function>(Calloc->stripPointerCasts()))
|
|
|
|
CI->setCallingConv(F->getCallingConv());
|
|
|
|
|
|
|
|
return CI;
|
|
|
|
}
|
[SimplifyLibcalls] Replace locked IO with unlocked IO
Summary: If file stream arg is not captured and source is fopen, we could replace IO calls by unlocked IO ("_unlocked" function variants) to gain better speed,
Reviewers: efriedma, RKSimon, spatel, sanjoy, hfinkel, majnemer, lebedev.ri, rja
Reviewed By: rja
Subscribers: rja, srhines, efriedma, lebedev.ri, llvm-commits
Differential Revision: https://reviews.llvm.org/D45736
llvm-svn: 332452
2018-05-16 19:39:52 +08:00
|
|
|
|
|
|
|
Value *llvm::emitFWriteUnlocked(Value *Ptr, Value *Size, Value *N, Value *File,
|
|
|
|
IRBuilder<> &B, const DataLayout &DL,
|
|
|
|
const TargetLibraryInfo *TLI) {
|
|
|
|
if (!TLI->has(LibFunc_fwrite_unlocked))
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
Module *M = B.GetInsertBlock()->getModule();
|
|
|
|
LLVMContext &Context = B.GetInsertBlock()->getContext();
|
|
|
|
StringRef FWriteUnlockedName = TLI->getName(LibFunc_fwrite_unlocked);
|
|
|
|
Constant *F = M->getOrInsertFunction(
|
|
|
|
FWriteUnlockedName, DL.getIntPtrType(Context), B.getInt8PtrTy(),
|
|
|
|
DL.getIntPtrType(Context), DL.getIntPtrType(Context), File->getType());
|
|
|
|
|
|
|
|
if (File->getType()->isPointerTy())
|
2018-10-17 05:18:31 +08:00
|
|
|
inferLibFuncAttributes(M, FWriteUnlockedName, *TLI);
|
[SimplifyLibcalls] Replace locked IO with unlocked IO
Summary: If file stream arg is not captured and source is fopen, we could replace IO calls by unlocked IO ("_unlocked" function variants) to gain better speed,
Reviewers: efriedma, RKSimon, spatel, sanjoy, hfinkel, majnemer, lebedev.ri, rja
Reviewed By: rja
Subscribers: rja, srhines, efriedma, lebedev.ri, llvm-commits
Differential Revision: https://reviews.llvm.org/D45736
llvm-svn: 332452
2018-05-16 19:39:52 +08:00
|
|
|
CallInst *CI = B.CreateCall(F, {castToCStr(Ptr, B), Size, N, File});
|
|
|
|
|
|
|
|
if (const Function *Fn = dyn_cast<Function>(F->stripPointerCasts()))
|
|
|
|
CI->setCallingConv(Fn->getCallingConv());
|
|
|
|
return CI;
|
|
|
|
}
|
|
|
|
|
|
|
|
Value *llvm::emitFGetCUnlocked(Value *File, IRBuilder<> &B,
|
|
|
|
const TargetLibraryInfo *TLI) {
|
|
|
|
if (!TLI->has(LibFunc_fgetc_unlocked))
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
Module *M = B.GetInsertBlock()->getModule();
|
2018-10-17 05:18:31 +08:00
|
|
|
StringRef FGetCUnlockedName = TLI->getName(LibFunc_fgetc_unlocked);
|
[SimplifyLibcalls] Replace locked IO with unlocked IO
Summary: If file stream arg is not captured and source is fopen, we could replace IO calls by unlocked IO ("_unlocked" function variants) to gain better speed,
Reviewers: efriedma, RKSimon, spatel, sanjoy, hfinkel, majnemer, lebedev.ri, rja
Reviewed By: rja
Subscribers: rja, srhines, efriedma, lebedev.ri, llvm-commits
Differential Revision: https://reviews.llvm.org/D45736
llvm-svn: 332452
2018-05-16 19:39:52 +08:00
|
|
|
Constant *F =
|
2018-10-17 05:18:31 +08:00
|
|
|
M->getOrInsertFunction(FGetCUnlockedName, B.getInt32Ty(), File->getType());
|
[SimplifyLibcalls] Replace locked IO with unlocked IO
Summary: If file stream arg is not captured and source is fopen, we could replace IO calls by unlocked IO ("_unlocked" function variants) to gain better speed,
Reviewers: efriedma, RKSimon, spatel, sanjoy, hfinkel, majnemer, lebedev.ri, rja
Reviewed By: rja
Subscribers: rja, srhines, efriedma, lebedev.ri, llvm-commits
Differential Revision: https://reviews.llvm.org/D45736
llvm-svn: 332452
2018-05-16 19:39:52 +08:00
|
|
|
if (File->getType()->isPointerTy())
|
2018-10-17 05:18:31 +08:00
|
|
|
inferLibFuncAttributes(M, FGetCUnlockedName, *TLI);
|
|
|
|
CallInst *CI = B.CreateCall(F, File, FGetCUnlockedName);
|
[SimplifyLibcalls] Replace locked IO with unlocked IO
Summary: If file stream arg is not captured and source is fopen, we could replace IO calls by unlocked IO ("_unlocked" function variants) to gain better speed,
Reviewers: efriedma, RKSimon, spatel, sanjoy, hfinkel, majnemer, lebedev.ri, rja
Reviewed By: rja
Subscribers: rja, srhines, efriedma, lebedev.ri, llvm-commits
Differential Revision: https://reviews.llvm.org/D45736
llvm-svn: 332452
2018-05-16 19:39:52 +08:00
|
|
|
|
|
|
|
if (const Function *Fn = dyn_cast<Function>(F->stripPointerCasts()))
|
|
|
|
CI->setCallingConv(Fn->getCallingConv());
|
|
|
|
return CI;
|
|
|
|
}
|
|
|
|
|
|
|
|
Value *llvm::emitFGetSUnlocked(Value *Str, Value *Size, Value *File,
|
|
|
|
IRBuilder<> &B, const TargetLibraryInfo *TLI) {
|
|
|
|
if (!TLI->has(LibFunc_fgets_unlocked))
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
Module *M = B.GetInsertBlock()->getModule();
|
2018-10-17 05:18:31 +08:00
|
|
|
StringRef FGetSUnlockedName = TLI->getName(LibFunc_fgets_unlocked);
|
[SimplifyLibcalls] Replace locked IO with unlocked IO
Summary: If file stream arg is not captured and source is fopen, we could replace IO calls by unlocked IO ("_unlocked" function variants) to gain better speed,
Reviewers: efriedma, RKSimon, spatel, sanjoy, hfinkel, majnemer, lebedev.ri, rja
Reviewed By: rja
Subscribers: rja, srhines, efriedma, lebedev.ri, llvm-commits
Differential Revision: https://reviews.llvm.org/D45736
llvm-svn: 332452
2018-05-16 19:39:52 +08:00
|
|
|
Constant *F =
|
2018-10-17 05:18:31 +08:00
|
|
|
M->getOrInsertFunction(FGetSUnlockedName, B.getInt8PtrTy(),
|
2018-05-17 05:45:39 +08:00
|
|
|
B.getInt8PtrTy(), B.getInt32Ty(), File->getType());
|
2018-10-17 05:18:31 +08:00
|
|
|
inferLibFuncAttributes(M, FGetSUnlockedName, *TLI);
|
[SimplifyLibcalls] Replace locked IO with unlocked IO
Summary: If file stream arg is not captured and source is fopen, we could replace IO calls by unlocked IO ("_unlocked" function variants) to gain better speed,
Reviewers: efriedma, RKSimon, spatel, sanjoy, hfinkel, majnemer, lebedev.ri, rja
Reviewed By: rja
Subscribers: rja, srhines, efriedma, lebedev.ri, llvm-commits
Differential Revision: https://reviews.llvm.org/D45736
llvm-svn: 332452
2018-05-16 19:39:52 +08:00
|
|
|
CallInst *CI =
|
2018-10-17 05:18:31 +08:00
|
|
|
B.CreateCall(F, {castToCStr(Str, B), Size, File}, FGetSUnlockedName);
|
[SimplifyLibcalls] Replace locked IO with unlocked IO
Summary: If file stream arg is not captured and source is fopen, we could replace IO calls by unlocked IO ("_unlocked" function variants) to gain better speed,
Reviewers: efriedma, RKSimon, spatel, sanjoy, hfinkel, majnemer, lebedev.ri, rja
Reviewed By: rja
Subscribers: rja, srhines, efriedma, lebedev.ri, llvm-commits
Differential Revision: https://reviews.llvm.org/D45736
llvm-svn: 332452
2018-05-16 19:39:52 +08:00
|
|
|
|
|
|
|
if (const Function *Fn = dyn_cast<Function>(F->stripPointerCasts()))
|
|
|
|
CI->setCallingConv(Fn->getCallingConv());
|
|
|
|
return CI;
|
|
|
|
}
|
|
|
|
|
|
|
|
Value *llvm::emitFReadUnlocked(Value *Ptr, Value *Size, Value *N, Value *File,
|
|
|
|
IRBuilder<> &B, const DataLayout &DL,
|
|
|
|
const TargetLibraryInfo *TLI) {
|
|
|
|
if (!TLI->has(LibFunc_fread_unlocked))
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
Module *M = B.GetInsertBlock()->getModule();
|
|
|
|
LLVMContext &Context = B.GetInsertBlock()->getContext();
|
|
|
|
StringRef FReadUnlockedName = TLI->getName(LibFunc_fread_unlocked);
|
|
|
|
Constant *F = M->getOrInsertFunction(
|
|
|
|
FReadUnlockedName, DL.getIntPtrType(Context), B.getInt8PtrTy(),
|
|
|
|
DL.getIntPtrType(Context), DL.getIntPtrType(Context), File->getType());
|
|
|
|
|
|
|
|
if (File->getType()->isPointerTy())
|
2018-10-17 05:18:31 +08:00
|
|
|
inferLibFuncAttributes(M, FReadUnlockedName, *TLI);
|
[SimplifyLibcalls] Replace locked IO with unlocked IO
Summary: If file stream arg is not captured and source is fopen, we could replace IO calls by unlocked IO ("_unlocked" function variants) to gain better speed,
Reviewers: efriedma, RKSimon, spatel, sanjoy, hfinkel, majnemer, lebedev.ri, rja
Reviewed By: rja
Subscribers: rja, srhines, efriedma, lebedev.ri, llvm-commits
Differential Revision: https://reviews.llvm.org/D45736
llvm-svn: 332452
2018-05-16 19:39:52 +08:00
|
|
|
CallInst *CI = B.CreateCall(F, {castToCStr(Ptr, B), Size, N, File});
|
|
|
|
|
|
|
|
if (const Function *Fn = dyn_cast<Function>(F->stripPointerCasts()))
|
|
|
|
CI->setCallingConv(Fn->getCallingConv());
|
|
|
|
return CI;
|
|
|
|
}
|