@@ -95,8 +95,11 @@ LegalVal LegalVal::wrappedBuffer(
95
95
//
96
96
97
97
IRTypeLegalizationContext::IRTypeLegalizationContext (
98
+ TargetProgram* target,
98
99
IRModule* inModule)
99
100
{
101
+ targetProgram = target;
102
+
100
103
session = inModule->getSession ();
101
104
module = inModule;
102
105
@@ -3868,8 +3871,8 @@ static void legalizeTypes(
3868
3871
//
3869
3872
struct IRResourceTypeLegalizationContext : IRTypeLegalizationContext
3870
3873
{
3871
- IRResourceTypeLegalizationContext (IRModule* module)
3872
- : IRTypeLegalizationContext(module)
3874
+ IRResourceTypeLegalizationContext (TargetProgram* target, IRModule* module)
3875
+ : IRTypeLegalizationContext(target, module)
3873
3876
{}
3874
3877
3875
3878
bool isSpecialType (IRType* type) override
@@ -3903,8 +3906,8 @@ struct IRResourceTypeLegalizationContext : IRTypeLegalizationContext
3903
3906
//
3904
3907
struct IRExistentialTypeLegalizationContext : IRTypeLegalizationContext
3905
3908
{
3906
- IRExistentialTypeLegalizationContext (IRModule* module)
3907
- : IRTypeLegalizationContext(module)
3909
+ IRExistentialTypeLegalizationContext (TargetProgram* target, IRModule* module)
3910
+ : IRTypeLegalizationContext(target, module)
3908
3911
{}
3909
3912
3910
3913
bool isSpecialType (IRType* inType) override
@@ -3944,8 +3947,8 @@ struct IRExistentialTypeLegalizationContext : IRTypeLegalizationContext
3944
3947
// a public function signature.
3945
3948
struct IREmptyTypeLegalizationContext : IRTypeLegalizationContext
3946
3949
{
3947
- IREmptyTypeLegalizationContext (IRModule* module)
3948
- : IRTypeLegalizationContext(module)
3950
+ IREmptyTypeLegalizationContext (TargetProgram* target, IRModule* module)
3951
+ : IRTypeLegalizationContext(target, module)
3949
3952
{}
3950
3953
3951
3954
bool isSpecialType (IRType*) override
@@ -3985,18 +3988,20 @@ struct IREmptyTypeLegalizationContext : IRTypeLegalizationContext
3985
3988
// specialized context type to use to get the job done.
3986
3989
3987
3990
void legalizeResourceTypes (
3991
+ TargetProgram* target,
3988
3992
IRModule* module,
3989
3993
DiagnosticSink* sink)
3990
3994
{
3991
3995
SLANG_PROFILE;
3992
3996
3993
3997
SLANG_UNUSED (sink);
3994
3998
3995
- IRResourceTypeLegalizationContext context (module);
3999
+ IRResourceTypeLegalizationContext context (target, module);
3996
4000
legalizeTypes (&context);
3997
4001
}
3998
4002
3999
4003
void legalizeExistentialTypeLayout (
4004
+ TargetProgram* target,
4000
4005
IRModule* module,
4001
4006
DiagnosticSink* sink)
4002
4007
{
@@ -4005,15 +4010,15 @@ void legalizeExistentialTypeLayout(
4005
4010
SLANG_UNUSED (module);
4006
4011
SLANG_UNUSED (sink);
4007
4012
4008
- IRExistentialTypeLegalizationContext context (module);
4013
+ IRExistentialTypeLegalizationContext context (target, module);
4009
4014
legalizeTypes (&context);
4010
4015
}
4011
4016
4012
- void legalizeEmptyTypes (IRModule* module, DiagnosticSink* sink)
4017
+ void legalizeEmptyTypes (TargetProgram* target, IRModule* module, DiagnosticSink* sink)
4013
4018
{
4014
4019
SLANG_UNUSED (sink);
4015
4020
4016
- IREmptyTypeLegalizationContext context (module);
4021
+ IREmptyTypeLegalizationContext context (target, module);
4017
4022
legalizeTypes (&context);
4018
4023
}
4019
4024
0 commit comments