forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLLVMSwiftRCIdentity.cpp
93 lines (85 loc) · 2.51 KB
/
LLVMSwiftRCIdentity.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
//===--- LLVMSwiftRCIdentity.cpp - LLVM RCIdentity Analysis for Swift -----===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2016 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
#include "swift/LLVMPasses/Passes.h"
#include "LLVMARCOpts.h"
#include "llvm/IR/Module.h"
using namespace llvm;
using swift::SwiftRCIdentity;
// Register this pass...
char SwiftRCIdentity::ID = 0;
INITIALIZE_PASS(SwiftRCIdentity, "swift-rc-identity",
"Swift RC Identity Analysis", false, true)
bool SwiftRCIdentity::doInitialization(Module &M) {
return true;
}
llvm::Value *
SwiftRCIdentity::stripPointerCasts(llvm::Value *Val) {
return Val->stripPointerCasts();
}
llvm::Value *
SwiftRCIdentity::stripReferenceForwarding(llvm::Value *Val) {
auto Inst = dyn_cast<Instruction>(Val);
if (!Inst)
return Val;
auto Kind = classifyInstruction(*Inst);
switch(Kind) {
case RT_RetainN:
case RT_UnknownRetainN:
case RT_BridgeRetainN:
case RT_ReleaseN:
case RT_UnknownReleaseN:
case RT_BridgeReleaseN:
case RT_FixLifetime:
case RT_Retain:
case RT_UnknownRetain:
case RT_Release:
case RT_UnknownRelease:
case RT_Unknown:
case RT_AllocObject:
case RT_NoMemoryAccessed:
case RT_BridgeRelease:
case RT_BridgeRetain:
case RT_RetainUnowned:
case RT_CheckUnowned:
case RT_ObjCRelease:
break;
// ObjC forwards references.
case RT_ObjCRetain:
Val = cast<CallInst>(Inst)->getArgOperand(0);
break;
}
return Val;
}
llvm::Value *
SwiftRCIdentity::getSwiftRCIdentityRoot(llvm::Value *Val) {
// Only allow this method to go up a fixed number of levels to make sure
// we don't explode compile time.
llvm::Value *OldVal = Val;
unsigned levels = 0;
do {
llvm::Value *NewVal = Val;
// Try to strip off pointer casts and reference forwarding.
Val = stripPointerCasts(Val);
Val = stripReferenceForwarding(Val);
// Nothing was stripped off.
if (NewVal == Val)
break;
// Hit max number of levels.
if (++levels > MaxRecursionDepth)
return OldVal;
} while (true);
return Val;
}
llvm::ImmutablePass *swift::createSwiftRCIdentityPass() {
initializeSwiftRCIdentityPass(*PassRegistry::getPassRegistry());
return new SwiftRCIdentity();
}