mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-06 01:31:56 +00:00
Reverting r276771 due to MSan failures.
llvm-svn: 276824
This commit is contained in:
parent
7c41fae233
commit
b1036e2a2f
@ -734,9 +734,6 @@ TLI_DEFINE_STRING_INTERNAL("memcpy")
|
|||||||
/// void *memmove(void *s1, const void *s2, size_t n);
|
/// void *memmove(void *s1, const void *s2, size_t n);
|
||||||
TLI_DEFINE_ENUM_INTERNAL(memmove)
|
TLI_DEFINE_ENUM_INTERNAL(memmove)
|
||||||
TLI_DEFINE_STRING_INTERNAL("memmove")
|
TLI_DEFINE_STRING_INTERNAL("memmove")
|
||||||
/// void *mempcpy(void *s1, const void *s2, size_t n);
|
|
||||||
TLI_DEFINE_ENUM_INTERNAL(mempcpy)
|
|
||||||
TLI_DEFINE_STRING_INTERNAL("mempcpy")
|
|
||||||
// void *memrchr(const void *s, int c, size_t n);
|
// void *memrchr(const void *s, int c, size_t n);
|
||||||
TLI_DEFINE_ENUM_INTERNAL(memrchr)
|
TLI_DEFINE_ENUM_INTERNAL(memrchr)
|
||||||
TLI_DEFINE_STRING_INTERNAL("memrchr")
|
TLI_DEFINE_STRING_INTERNAL("memrchr")
|
||||||
|
@ -251,7 +251,7 @@ public:
|
|||||||
case LibFunc::exp2: case LibFunc::exp2f: case LibFunc::exp2l:
|
case LibFunc::exp2: case LibFunc::exp2f: case LibFunc::exp2l:
|
||||||
case LibFunc::memcmp: case LibFunc::strcmp: case LibFunc::strcpy:
|
case LibFunc::memcmp: case LibFunc::strcmp: case LibFunc::strcpy:
|
||||||
case LibFunc::stpcpy: case LibFunc::strlen: case LibFunc::strnlen:
|
case LibFunc::stpcpy: case LibFunc::strlen: case LibFunc::strnlen:
|
||||||
case LibFunc::memchr: case LibFunc::mempcpy:
|
case LibFunc::memchr:
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
@ -642,7 +642,6 @@ bool TargetLibraryInfoImpl::isValidProtoForLibFunc(const FunctionType &FTy,
|
|||||||
return false;
|
return false;
|
||||||
// fallthrough
|
// fallthrough
|
||||||
case LibFunc::memcpy:
|
case LibFunc::memcpy:
|
||||||
case LibFunc::mempcpy:
|
|
||||||
case LibFunc::memmove:
|
case LibFunc::memmove:
|
||||||
return (NumParams == 3 && FTy.getReturnType() == FTy.getParamType(0) &&
|
return (NumParams == 3 && FTy.getReturnType() == FTy.getParamType(0) &&
|
||||||
FTy.getParamType(0)->isPointerTy() &&
|
FTy.getParamType(0)->isPointerTy() &&
|
||||||
|
@ -6044,49 +6044,6 @@ bool SelectionDAGBuilder::visitMemChrCall(const CallInst &I) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
///
|
|
||||||
/// visitMemPCpyCall -- lower a mempcpy call as a memcpy followed by code to
|
|
||||||
/// to adjust the dst pointer by the size of the copied memory.
|
|
||||||
bool SelectionDAGBuilder::visitMemPCpyCall(const CallInst &I) {
|
|
||||||
|
|
||||||
// Verify argument count: void *mempcpy(void *, const void *, size_t)
|
|
||||||
if (I.getNumArgOperands() != 3)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
SDValue Dst = getValue(I.getArgOperand(0));
|
|
||||||
SDValue Src = getValue(I.getArgOperand(1));
|
|
||||||
SDValue Size = getValue(I.getArgOperand(2));
|
|
||||||
|
|
||||||
unsigned DstAlign = DAG.InferPtrAlignment(Dst);
|
|
||||||
unsigned SrcAlign = DAG.InferPtrAlignment(Src);
|
|
||||||
unsigned Align = std::min(DstAlign, SrcAlign);
|
|
||||||
if (Align == 0) // Alignment of one or both could not be inferred.
|
|
||||||
Align = 1; // 0 and 1 both specify no alignment, but 0 is reserved.
|
|
||||||
|
|
||||||
bool isVol = false;
|
|
||||||
SDLoc sdl = getCurSDLoc();
|
|
||||||
|
|
||||||
// In the mempcpy context we need to pass in a false value for isTailCall
|
|
||||||
// because the return pointer needs to be adjusted by the size of
|
|
||||||
// the copied memory.
|
|
||||||
SDValue MC = DAG.getMemcpy(getRoot(), sdl, Dst, Src, Size, Align, isVol,
|
|
||||||
false, /*isTailCall=*/false,
|
|
||||||
MachinePointerInfo(I.getArgOperand(0)),
|
|
||||||
MachinePointerInfo(I.getArgOperand(1)));
|
|
||||||
assert(MC.getNode() != nullptr &&
|
|
||||||
"** memcpy should not be lowered as TailCall in mempcpy context **");
|
|
||||||
DAG.setRoot(MC);
|
|
||||||
|
|
||||||
// Check if Size needs to be truncated or extended.
|
|
||||||
Size = DAG.getSExtOrTrunc(Size, sdl, Dst.getValueType());
|
|
||||||
|
|
||||||
// Adjust return pointer to point just past the last dst byte.
|
|
||||||
SDValue DstPlusSize = DAG.getNode(ISD::ADD, sdl, Dst.getValueType(),
|
|
||||||
Dst, Size);
|
|
||||||
setValue(&I, DstPlusSize);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// visitStrCpyCall -- See if we can lower a strcpy or stpcpy call into an
|
/// visitStrCpyCall -- See if we can lower a strcpy or stpcpy call into an
|
||||||
/// optimized form. If so, return true and lower it, otherwise return false
|
/// optimized form. If so, return true and lower it, otherwise return false
|
||||||
/// and it will be lowered like a normal call.
|
/// and it will be lowered like a normal call.
|
||||||
@ -6377,10 +6334,6 @@ void SelectionDAGBuilder::visitCall(const CallInst &I) {
|
|||||||
if (visitMemCmpCall(I))
|
if (visitMemCmpCall(I))
|
||||||
return;
|
return;
|
||||||
break;
|
break;
|
||||||
case LibFunc::mempcpy:
|
|
||||||
if (visitMemPCpyCall(I))
|
|
||||||
return;
|
|
||||||
break;
|
|
||||||
case LibFunc::memchr:
|
case LibFunc::memchr:
|
||||||
if (visitMemChrCall(I))
|
if (visitMemChrCall(I))
|
||||||
return;
|
return;
|
||||||
|
@ -885,7 +885,6 @@ private:
|
|||||||
void visitPHI(const PHINode &I);
|
void visitPHI(const PHINode &I);
|
||||||
void visitCall(const CallInst &I);
|
void visitCall(const CallInst &I);
|
||||||
bool visitMemCmpCall(const CallInst &I);
|
bool visitMemCmpCall(const CallInst &I);
|
||||||
bool visitMemPCpyCall(const CallInst &I);
|
|
||||||
bool visitMemChrCall(const CallInst &I);
|
bool visitMemChrCall(const CallInst &I);
|
||||||
bool visitStrCpyCall(const CallInst &I, bool isStpcpy);
|
bool visitStrCpyCall(const CallInst &I, bool isStpcpy);
|
||||||
bool visitStrCmpCall(const CallInst &I);
|
bool visitStrCmpCall(const CallInst &I);
|
||||||
|
@ -250,7 +250,6 @@ bool llvm::inferLibFuncAttributes(Function &F, const TargetLibraryInfo &TLI) {
|
|||||||
Changed |= setDoesNotCapture(F, 2);
|
Changed |= setDoesNotCapture(F, 2);
|
||||||
return Changed;
|
return Changed;
|
||||||
case LibFunc::memcpy:
|
case LibFunc::memcpy:
|
||||||
case LibFunc::mempcpy:
|
|
||||||
case LibFunc::memccpy:
|
case LibFunc::memccpy:
|
||||||
case LibFunc::memmove:
|
case LibFunc::memmove:
|
||||||
Changed |= setDoesNotThrow(F);
|
Changed |= setDoesNotThrow(F);
|
||||||
|
@ -499,9 +499,6 @@ declare i32 @memcmp(i8*, i8*, i64)
|
|||||||
; CHECK: declare i8* @memcpy(i8*, i8* nocapture readonly, i64) [[G0]]
|
; CHECK: declare i8* @memcpy(i8*, i8* nocapture readonly, i64) [[G0]]
|
||||||
declare i8* @memcpy(i8*, i8*, i64)
|
declare i8* @memcpy(i8*, i8*, i64)
|
||||||
|
|
||||||
; CHECK: declare i8* @mempcpy(i8*, i8* nocapture readonly, i64) [[G0]]
|
|
||||||
declare i8* @mempcpy(i8*, i8*, i64)
|
|
||||||
|
|
||||||
; CHECK: declare i8* @memmove(i8*, i8* nocapture readonly, i64) [[G0]]
|
; CHECK: declare i8* @memmove(i8*, i8* nocapture readonly, i64) [[G0]]
|
||||||
declare i8* @memmove(i8*, i8*, i64)
|
declare i8* @memmove(i8*, i8*, i64)
|
||||||
|
|
||||||
|
@ -480,9 +480,6 @@ declare void @memcmp(...)
|
|||||||
; CHECK: declare void @memcpy(...)
|
; CHECK: declare void @memcpy(...)
|
||||||
declare void @memcpy(...)
|
declare void @memcpy(...)
|
||||||
|
|
||||||
; CHECK: declare void @mempcpy(...)
|
|
||||||
declare void @mempcpy(...)
|
|
||||||
|
|
||||||
; CHECK: declare void @memmove(...)
|
; CHECK: declare void @memmove(...)
|
||||||
declare void @memmove(...)
|
declare void @memmove(...)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user