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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
// slang-ir-lower-com-methods.cpp
#include "slang-ir-lower-com-methods.h"
#include "slang-ir.h"
#include "slang-ir-insts.h"
#include "slang-ir-marshal-native-call.h"
#include "slang-ir-inst-pass-base.h"
namespace Slang
{
struct ComMethodLoweringContext : public InstPassBase
{
DiagnosticSink* diagnosticSink = nullptr;
NativeCallMarshallingContext marshal;
OrderedHashSet<IRLookupWitnessMethod*> comCallees;
ComMethodLoweringContext(IRModule* inModule)
: InstPassBase(inModule)
{}
void processComCall(IRCall* comCall)
{
IRBuilder builder(&sharedBuilderStorage);
builder.setInsertBefore(comCall);
auto callee = as<IRLookupWitnessMethod>(comCall->getCallee());
SLANG_ASSERT(callee);
comCallees.Add(callee);
auto calleeType = as<IRFuncType>(comCall->getCallee()->getDataType());
SLANG_ASSERT(calleeType);
auto nativeFuncType = marshal.getNativeFuncType(builder, calleeType);
ShortList<IRInst*> args;
for (UInt i = 0; i < comCall->getArgCount(); i++)
args.add(comCall->getArg(i));
auto currentBlock = builder.getBlock();
auto nextInst = comCall->getNextInst();
auto newResult = marshal.marshalNativeCall(
builder,
calleeType,
nativeFuncType,
comCall->getCallee(),
args.getCount(),
args.getArrayView().getBuffer());
comCall->replaceUsesWith(newResult);
if (builder.getBlock() != currentBlock)
{
// `marshalNativeCall` may have replaced the original call with branch insts.
// If this is the case, we need to move all insts after the original call in the original
// basic block to the new basic block.
while (nextInst)
{
auto next = nextInst->getNextInst();
nextInst->removeFromParent();
nextInst->insertAtEnd(builder.getBlock());
nextInst = next;
}
}
comCall->removeAndDeallocate();
}
void processCall(IRCall* inst)
{
auto funcValue = inst->getOperand(0);
// Detect if this is a call into a COM interface method.
if (funcValue->getOp() == kIROp_lookup_interface_method)
{
const auto operand0TypeOp = funcValue->getOperand(0)->getDataType();
if (auto tableType = as<IRWitnessTableTypeBase>(operand0TypeOp))
{
if (tableType->getConformanceType()->findDecoration<IRComInterfaceDecoration>())
{
processComCall(inst);
return;
}
}
}
}
void processInterfaceType(IRInterfaceType* interfaceType)
{
if (!interfaceType->findDecoration<IRComInterfaceDecoration>())
return;
IRBuilder builder(&sharedBuilderStorage);
for (UInt i = 0; i < interfaceType->getOperandCount(); i++)
{
auto entry = as<IRInterfaceRequirementEntry>(interfaceType->getOperand(i));
if (!entry)
continue;
if (auto funcType = as<IRFuncType>(entry->getRequirementVal()))
{
builder.setInsertBefore(funcType);
entry->setRequirementVal(marshal.getNativeFuncType(builder, funcType));
}
}
}
void processModule()
{
sharedBuilderStorage.init(module);
// Deduplicate equivalent types.
sharedBuilderStorage.deduplicateAndRebuildGlobalNumberingMap();
// Translate all Calls to interface methods.
processInstsOfType<IRCall>(kIROp_Call, [this](IRCall* inst) { processCall(inst); });
// Update functypes of com callees.
for (auto callee : comCallees)
{
IRBuilder builder(&sharedBuilderStorage);
builder.setInsertBefore(callee);
auto nativeType = marshal.getNativeFuncType(builder, as<IRFuncType>(callee->getDataType()));
callee->setFullType(nativeType);
}
// Update func types of COM interfaces.
processInstsOfType<IRInterfaceType>(kIROp_InterfaceType, [this](IRInterfaceType* inst) { processInterfaceType(inst); });
}
};
void lowerComMethods(IRModule* module, DiagnosticSink* sink)
{
ComMethodLoweringContext context(module);
context.diagnosticSink = sink;
context.marshal.diagnosticSink = sink;
return context.processModule();
}
}
|