Skip to content

Commit 9ec8670

Browse files
mshelegoigcbot
authored andcommitted
Revert float control changes
.
1 parent 5b7c456 commit 9ec8670

13 files changed

+119
-294
lines changed

IGC/VectorCompiler/lib/GenXCodeGen/CMakeLists.txt

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#=========================== begin_copyright_notice ============================
22
#
3-
# Copyright (C) 2017-2024 Intel Corporation
3+
# Copyright (C) 2017-2023 Intel Corporation
44
#
55
# SPDX-License-Identifier: MIT
66
#
@@ -43,7 +43,6 @@ set(CODEGEN_SOURCES
4343
GenXEmulate.cpp
4444
GenXExtractVectorizer.cpp
4545
GenXFixInvalidFuncName.cpp
46-
GenXFloatControl.cpp
4746
GenXLegalizeGVLoadUses.cpp
4847
GenXGASCastAnalyzer.cpp
4948
GenXGASDynamicResolution.cpp

IGC/VectorCompiler/lib/GenXCodeGen/GenX.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*========================== begin_copyright_notice ============================
22
3-
Copyright (C) 2017-2024 Intel Corporation
3+
Copyright (C) 2017-2023 Intel Corporation
44
55
SPDX-License-Identifier: MIT
66
@@ -156,7 +156,6 @@ FunctionPass *createGenXGlobalUniformAnalysisPass();
156156
ModulePass *createGenXBuiltinFunctionsPass(BuiltinFunctionKind Kind);
157157
FunctionPass *createGenXLegacyToLscTranslatorPass();
158158
ModulePass *createGenXSLMResolution();
159-
ModulePass *createGenXFloatControlWrapperPass();
160159

161160
namespace genx {
162161

IGC/VectorCompiler/lib/GenXCodeGen/GenXCisaBuilder.cpp

+89
Original file line numberDiff line numberDiff line change
@@ -386,6 +386,22 @@ class GenXKernelBuilder {
386386
std::map<Function *, VISA_GenVar *> FPMap;
387387
SmallVector<InsertValueInst *, 10> RetvInserts;
388388

389+
// The default float control from kernel attribute. Each subroutine may
390+
// overrride this control mask, but it should revert back to the default float
391+
// control mask before exiting from the subroutine.
392+
uint32_t DefaultFloatControl = 0;
393+
394+
enum CRBits {
395+
SinglePrecisionMode = 1,
396+
RoundingMode = 3 << 4,
397+
DoublePrecisionDenorm = 1 << 6,
398+
SinglePrecisionDenorm = 1 << 7,
399+
HalfPrecisionDenorm = 1 << 10,
400+
SystolicDenorm = 1 << 30,
401+
};
402+
403+
uint32_t CRMask = 0;
404+
389405
// normally false, set to true if there is any SIMD CF in the func or this is
390406
// (indirectly) called inside any SIMD CF.
391407
bool NoMask = false;
@@ -418,6 +434,7 @@ class GenXKernelBuilder {
418434
bool buildInstruction(Instruction *Inst);
419435
bool buildMainInst(Instruction *Inst, genx::BaleInfo BI, unsigned Mod,
420436
const DstOpndDesc &DstDesc);
437+
void buildControlRegUpdate(unsigned Mask, bool Clear);
421438
void buildJoin(CallInst *Join, BranchInst *Branch);
422439
bool buildBranch(BranchInst *Branch);
423440
void buildIndirectBr(IndirectBrInst *Br);
@@ -1109,6 +1126,12 @@ bool GenXKernelBuilder::run() {
11091126
GrfByteSize = Subtarget->getGRFByteSize();
11101127
StackSurf = Subtarget->stackSurface();
11111128

1129+
CRMask = CRBits::RoundingMode | CRBits::DoublePrecisionDenorm |
1130+
CRBits::SinglePrecisionDenorm | CRBits::HalfPrecisionDenorm;
1131+
1132+
if (Subtarget->hasSystolicDenormControl())
1133+
CRMask |= CRBits::SystolicDenorm;
1134+
11121135
StackCallExecSize =
11131136
getExecSizeFromValue(BackendConfig->getInteropSubgroupSize());
11141137

@@ -1301,6 +1324,28 @@ void GenXKernelBuilder::buildInstructions() {
13011324
beginFunctionLight(Func);
13021325
CurrentPadding = 0;
13031326

1327+
// If a float control is specified, emit code to make that happen.
1328+
// Float control contains rounding mode, denorm behaviour and single
1329+
// precision float mode (ALT or IEEE) Relevant bits are already set as
1330+
// defined for VISA control reg in header definition on enums
1331+
if (Func->hasFnAttribute(genx::FunctionMD::CMFloatControl)) {
1332+
uint32_t FloatControl = 0;
1333+
Func->getFnAttribute(genx::FunctionMD::CMFloatControl)
1334+
.getValueAsString()
1335+
.getAsInteger(0, FloatControl);
1336+
1337+
// Clear current float control bits to known zero state
1338+
buildControlRegUpdate(CRMask, true);
1339+
1340+
// Set rounding mode to required state if that isn't zero
1341+
FloatControl &= CRMask;
1342+
if (FloatControl) {
1343+
if (FG->getHead() == Func)
1344+
DefaultFloatControl = FloatControl;
1345+
buildControlRegUpdate(FloatControl, false);
1346+
}
1347+
}
1348+
13041349
// Only output a label for the initial basic block if it is used from
13051350
// somewhere else.
13061351
bool NeedsLabel = !Func->front().use_empty();
@@ -3970,6 +4015,39 @@ void GenXKernelBuilder::buildIntrinsic(CallInst *CI, unsigned IntrinID,
39704015
#include "GenXIntrinsicsBuildMap.inc"
39714016
}
39724017

4018+
/**************************************************************************************************
4019+
* buildControlRegUpdate : generate an instruction to apply a mask to
4020+
* the control register (V14).
4021+
*
4022+
* Enter: Mask = the mask to apply
4023+
* Clear = false if bits set in Mask should be set in V14,
4024+
* true if bits set in Mask should be cleared in V14.
4025+
*/
4026+
void GenXKernelBuilder::buildControlRegUpdate(unsigned Mask, bool Clear) {
4027+
ISA_Opcode Opcode;
4028+
// write opcode
4029+
if (Clear) {
4030+
Opcode = ISA_AND;
4031+
Mask = ~Mask;
4032+
} else
4033+
Opcode = ISA_OR;
4034+
4035+
Region Single = Region(1, 4);
4036+
4037+
VISA_GenVar *Decl = nullptr;
4038+
CISA_CALL(Kernel->GetPredefinedVar(Decl, PREDEFINED_CR0));
4039+
VISA_VectorOpnd *dst =
4040+
createRegionOperand(&Single, Decl, DONTCARESIGNED, 0, true);
4041+
VISA_VectorOpnd *src0 =
4042+
createRegionOperand(&Single, Decl, DONTCARESIGNED, 0, false);
4043+
4044+
VISA_VectorOpnd *src1 = nullptr;
4045+
CISA_CALL(Kernel->CreateVISAImmediate(src1, &Mask, ISA_TYPE_UD));
4046+
4047+
appendVISALogicOrShiftInst(Opcode, nullptr, false, vISA_EMASK_M1, EXEC_SIZE_1,
4048+
dst, src0, src1);
4049+
}
4050+
39734051
/***********************************************************************
39744052
* buildBranch : build a conditional or unconditional branch
39754053
*
@@ -5369,6 +5447,17 @@ void GenXKernelBuilder::buildCall(CallInst *CI, const DstOpndDesc &DstDesc) {
53695447
}
53705448

53715449
void GenXKernelBuilder::buildRet(ReturnInst *RI) {
5450+
uint32_t FloatControl = 0;
5451+
auto F = RI->getFunction();
5452+
F->getFnAttribute(genx::FunctionMD::CMFloatControl)
5453+
.getValueAsString()
5454+
.getAsInteger(0, FloatControl);
5455+
FloatControl &= CRMask;
5456+
if (FloatControl != DefaultFloatControl) {
5457+
buildControlRegUpdate(CRMask, true);
5458+
if (DefaultFloatControl)
5459+
buildControlRegUpdate(DefaultFloatControl, false);
5460+
}
53725461
if (vc::requiresStackCall(Func)) {
53735462
appendVISACFFunctionRetInst(nullptr, vISA_EMASK_M1, StackCallExecSize);
53745463
} else {

IGC/VectorCompiler/lib/GenXCodeGen/GenXFloatControl.cpp

-149
This file was deleted.

IGC/VectorCompiler/lib/GenXCodeGen/GenXTargetMachine.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,6 @@ void initializeGenXPasses(PassRegistry &registry) {
191191
initializeGenXLegacyToLscTranslatorPass(registry);
192192
initializeGenXSLMResolutionPass(registry);
193193
initializeGenXTypeLegalizationPass(registry);
194-
initializeGenXFloatControlWrapperPass(registry);
195194
// WRITE HERE MORE PASSES IF IT'S NEEDED;
196195
}
197196

@@ -710,7 +709,6 @@ bool GenXTargetMachine::addPassesToEmitFile(PassManagerBase &PM,
710709
vc::addPass(PM, createGlobalDCEPass());
711710
/// .. include:: GenXModule.h
712711
vc::addPass(PM, createGenXModulePass());
713-
vc::addPass(PM, createGenXFloatControlWrapperPass());
714712
/// .. include:: GenXLiveness.h
715713
vc::addPass(PM, createGenXGroupBalingWrapperPass(BalingKind::BK_Analysis,
716714
&Subtarget));

IGC/VectorCompiler/lib/GenXCodeGen/GenXTargetMachine.h

-2
Original file line numberDiff line numberDiff line change
@@ -271,8 +271,6 @@ void initializeGenXInitBiFConstantsPass(PassRegistry &);
271271
void initializeGenXFinalizerPass(PassRegistry &);
272272
void initializeGenXBuiltinFunctionsPass(PassRegistry &);
273273
void initializeGenXSLMResolutionPass(PassRegistry &);
274-
void initializeGenXFloatControlWrapperPass(PassRegistry &);
275-
276274
} // End llvm namespace
277275

278276
#endif

IGC/VectorCompiler/lib/GenXCodeGen/GenXVisaRegAlloc.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*========================== begin_copyright_notice ============================
22
3-
Copyright (C) 2017-2024 Intel Corporation
3+
Copyright (C) 2017-2023 Intel Corporation
44
55
SPDX-License-Identifier: MIT
66

IGC/VectorCompiler/lib/GenXCodeGen/GenXVisaRegAlloc.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*========================== begin_copyright_notice ============================
22
3-
Copyright (C) 2017-2024 Intel Corporation
3+
Copyright (C) 2017-2023 Intel Corporation
44
55
SPDX-License-Identifier: MIT
66

IGC/VectorCompiler/test/CisaBuilder/debugtrap.ll

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
;=========================== begin_copyright_notice ============================
22
;
3-
; Copyright (C) 2023-2024 Intel Corporation
3+
; Copyright (C) 2023 Intel Corporation
44
;
55
; SPDX-License-Identifier: MIT
66
;

IGC/VectorCompiler/test/DebugInfo/basic_var_locs.ll

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
;=========================== begin_copyright_notice ============================
22
;
3-
; Copyright (C) 2020-2024 Intel Corporation
3+
; Copyright (C) 2020-2021 Intel Corporation
44
;
55
; SPDX-License-Identifier: MIT
66
;
@@ -112,6 +112,8 @@ attributes #1 = { nounwind readnone speculatable willreturn }
112112
attributes #2 = { nounwind readnone }
113113
attributes #3 = { nounwind readonly }
114114
attributes #4 = { nounwind }
115+
attributes #5 = { noinline nounwind "CMFloatControl"="0" }
116+
attributes #6 = { noinline nounwind "CMFloatControl"="48" }
115117

116118
!llvm.module.flags = !{!0, !1}
117119
!llvm.dbg.cu = !{!2}

0 commit comments

Comments
 (0)