|
|
@ -98,18 +98,33 @@ void EmitInst(EmitContext& ctx, IR::Inst* inst) {
|
|
|
|
throw LogicError("Invalid opcode {}", inst->GetOpcode());
|
|
|
|
throw LogicError("Invalid opcode {}", inst->GetOpcode());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Precolor(EmitContext& ctx, const IR::Program& program) {
|
|
|
|
bool IsReference(IR::Inst& inst) {
|
|
|
|
for (IR::Block* const block : program.blocks) {
|
|
|
|
return inst.GetOpcode() == IR::Opcode::Reference;
|
|
|
|
for (IR::Inst& phi : block->Instructions() | std::views::take_while(IR::IsPhi)) {
|
|
|
|
}
|
|
|
|
ctx.Add("{};", ctx.reg_alloc.Define(phi, phi.Arg(0).Type()));
|
|
|
|
|
|
|
|
|
|
|
|
void PrecolorInst(IR::Inst& phi) {
|
|
|
|
|
|
|
|
// Insert phi moves before references to avoid overwritting other phis
|
|
|
|
const size_t num_args{phi.NumArgs()};
|
|
|
|
const size_t num_args{phi.NumArgs()};
|
|
|
|
for (size_t i = 0; i < num_args; ++i) {
|
|
|
|
for (size_t i = 0; i < num_args; ++i) {
|
|
|
|
IR::IREmitter{*phi.PhiBlock(i)}.PhiMove(phi, phi.Arg(i));
|
|
|
|
IR::Block& phi_block{*phi.PhiBlock(i)};
|
|
|
|
|
|
|
|
auto it{std::find_if_not(phi_block.rbegin(), phi_block.rend(), IsReference).base()};
|
|
|
|
|
|
|
|
IR::IREmitter ir{phi_block, it};
|
|
|
|
|
|
|
|
const IR::Value arg{phi.Arg(i)};
|
|
|
|
|
|
|
|
if (arg.IsImmediate()) {
|
|
|
|
|
|
|
|
ir.PhiMove(phi, arg);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
ir.PhiMove(phi, IR::Value{&RegAlloc::AliasInst(*arg.Inst())});
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Add reference to the phi node on the phi predecessor to avoid overwritting it
|
|
|
|
|
|
|
|
for (size_t i = 0; i < num_args; ++i) {
|
|
|
|
for (size_t i = 0; i < num_args; ++i) {
|
|
|
|
IR::IREmitter{*phi.PhiBlock(i)}.Reference(IR::Value{&phi});
|
|
|
|
IR::IREmitter{*phi.PhiBlock(i)}.Reference(IR::Value{&phi});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void Precolor(const IR::Program& program) {
|
|
|
|
|
|
|
|
for (IR::Block* const block : program.blocks) {
|
|
|
|
|
|
|
|
for (IR::Inst& phi : block->Instructions() | std::views::take_while(IR::IsPhi)) {
|
|
|
|
|
|
|
|
PrecolorInst(phi);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -158,7 +173,7 @@ void EmitCode(EmitContext& ctx, const IR::Program& program) {
|
|
|
|
std::string EmitGLSL(const Profile& profile, const RuntimeInfo&, IR::Program& program,
|
|
|
|
std::string EmitGLSL(const Profile& profile, const RuntimeInfo&, IR::Program& program,
|
|
|
|
Bindings& bindings) {
|
|
|
|
Bindings& bindings) {
|
|
|
|
EmitContext ctx{program, bindings, profile};
|
|
|
|
EmitContext ctx{program, bindings, profile};
|
|
|
|
Precolor(ctx, program);
|
|
|
|
Precolor(program);
|
|
|
|
EmitCode(ctx, program);
|
|
|
|
EmitCode(ctx, program);
|
|
|
|
return ctx.code;
|
|
|
|
return ctx.code;
|
|
|
|
}
|
|
|
|
}
|
|
|
|