mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-12 13:30:51 +00:00
MIR Serialization: Serialize the target index machine operands.
Reviewers: Duncan P. N. Exon Smith git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@243497 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4fb2f3310a
commit
ba90cee0f1
@ -1262,6 +1262,16 @@ public:
|
|||||||
return 5;
|
return 5;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Return an array that contains the ids of the target indices (used for the
|
||||||
|
/// TargetIndex machine operand) and their names.
|
||||||
|
///
|
||||||
|
/// MIR Serialization is able to serialize only the target indices that are
|
||||||
|
/// defined by this method.
|
||||||
|
virtual ArrayRef<std::pair<int, const char *>>
|
||||||
|
getSerializableTargetIndices() const {
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
unsigned CallFrameSetupOpcode, CallFrameDestroyOpcode;
|
unsigned CallFrameSetupOpcode, CallFrameDestroyOpcode;
|
||||||
};
|
};
|
||||||
|
@ -148,6 +148,7 @@ static MIToken::TokenKind getIdentifierKind(StringRef Identifier) {
|
|||||||
.Case(".cfi_def_cfa_register", MIToken::kw_cfi_def_cfa_register)
|
.Case(".cfi_def_cfa_register", MIToken::kw_cfi_def_cfa_register)
|
||||||
.Case(".cfi_def_cfa_offset", MIToken::kw_cfi_def_cfa_offset)
|
.Case(".cfi_def_cfa_offset", MIToken::kw_cfi_def_cfa_offset)
|
||||||
.Case("blockaddress", MIToken::kw_blockaddress)
|
.Case("blockaddress", MIToken::kw_blockaddress)
|
||||||
|
.Case("target-index", MIToken::kw_target_index)
|
||||||
.Default(MIToken::Identifier);
|
.Default(MIToken::Identifier);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -52,6 +52,7 @@ struct MIToken {
|
|||||||
kw_cfi_def_cfa_register,
|
kw_cfi_def_cfa_register,
|
||||||
kw_cfi_def_cfa_offset,
|
kw_cfi_def_cfa_offset,
|
||||||
kw_blockaddress,
|
kw_blockaddress,
|
||||||
|
kw_target_index,
|
||||||
|
|
||||||
// Identifier tokens
|
// Identifier tokens
|
||||||
Identifier,
|
Identifier,
|
||||||
|
@ -82,6 +82,8 @@ class MIParser {
|
|||||||
StringMap<unsigned> Names2SubRegIndices;
|
StringMap<unsigned> Names2SubRegIndices;
|
||||||
/// Maps from slot numbers to function's unnamed basic blocks.
|
/// Maps from slot numbers to function's unnamed basic blocks.
|
||||||
DenseMap<unsigned, const BasicBlock *> Slots2BasicBlocks;
|
DenseMap<unsigned, const BasicBlock *> Slots2BasicBlocks;
|
||||||
|
/// Maps from target index names to target indices.
|
||||||
|
StringMap<int> Names2TargetIndices;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
MIParser(SourceMgr &SM, MachineFunction &MF, SMDiagnostic &Error,
|
MIParser(SourceMgr &SM, MachineFunction &MF, SMDiagnostic &Error,
|
||||||
@ -127,6 +129,7 @@ public:
|
|||||||
bool parseCFIOperand(MachineOperand &Dest);
|
bool parseCFIOperand(MachineOperand &Dest);
|
||||||
bool parseIRBlock(BasicBlock *&BB, const Function &F);
|
bool parseIRBlock(BasicBlock *&BB, const Function &F);
|
||||||
bool parseBlockAddressOperand(MachineOperand &Dest);
|
bool parseBlockAddressOperand(MachineOperand &Dest);
|
||||||
|
bool parseTargetIndexOperand(MachineOperand &Dest);
|
||||||
bool parseMachineOperand(MachineOperand &Dest);
|
bool parseMachineOperand(MachineOperand &Dest);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
@ -173,6 +176,13 @@ private:
|
|||||||
void initSlots2BasicBlocks();
|
void initSlots2BasicBlocks();
|
||||||
|
|
||||||
const BasicBlock *getIRBlock(unsigned Slot);
|
const BasicBlock *getIRBlock(unsigned Slot);
|
||||||
|
|
||||||
|
void initNames2TargetIndices();
|
||||||
|
|
||||||
|
/// Try to convert a name of target index to the corresponding target index.
|
||||||
|
///
|
||||||
|
/// Return true if the name isn't a name of a target index.
|
||||||
|
bool getTargetIndex(StringRef Name, int &Index);
|
||||||
};
|
};
|
||||||
|
|
||||||
} // end anonymous namespace
|
} // end anonymous namespace
|
||||||
@ -808,6 +818,24 @@ bool MIParser::parseBlockAddressOperand(MachineOperand &Dest) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool MIParser::parseTargetIndexOperand(MachineOperand &Dest) {
|
||||||
|
assert(Token.is(MIToken::kw_target_index));
|
||||||
|
lex();
|
||||||
|
if (expectAndConsume(MIToken::lparen))
|
||||||
|
return true;
|
||||||
|
if (Token.isNot(MIToken::Identifier))
|
||||||
|
return error("expected the name of the target index");
|
||||||
|
int Index = 0;
|
||||||
|
if (getTargetIndex(Token.stringValue(), Index))
|
||||||
|
return error("use of undefined target index '" + Token.stringValue() + "'");
|
||||||
|
lex();
|
||||||
|
if (expectAndConsume(MIToken::rparen))
|
||||||
|
return true;
|
||||||
|
// TODO: Parse the offset and target flags.
|
||||||
|
Dest = MachineOperand::CreateTargetIndex(unsigned(Index), /*Offset=*/0);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
bool MIParser::parseMachineOperand(MachineOperand &Dest) {
|
bool MIParser::parseMachineOperand(MachineOperand &Dest) {
|
||||||
switch (Token.kind()) {
|
switch (Token.kind()) {
|
||||||
case MIToken::kw_implicit:
|
case MIToken::kw_implicit:
|
||||||
@ -846,6 +874,8 @@ bool MIParser::parseMachineOperand(MachineOperand &Dest) {
|
|||||||
return parseCFIOperand(Dest);
|
return parseCFIOperand(Dest);
|
||||||
case MIToken::kw_blockaddress:
|
case MIToken::kw_blockaddress:
|
||||||
return parseBlockAddressOperand(Dest);
|
return parseBlockAddressOperand(Dest);
|
||||||
|
case MIToken::kw_target_index:
|
||||||
|
return parseTargetIndexOperand(Dest);
|
||||||
case MIToken::Error:
|
case MIToken::Error:
|
||||||
return true;
|
return true;
|
||||||
case MIToken::Identifier:
|
case MIToken::Identifier:
|
||||||
@ -967,6 +997,25 @@ const BasicBlock *MIParser::getIRBlock(unsigned Slot) {
|
|||||||
return BlockInfo->second;
|
return BlockInfo->second;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MIParser::initNames2TargetIndices() {
|
||||||
|
if (!Names2TargetIndices.empty())
|
||||||
|
return;
|
||||||
|
const auto *TII = MF.getSubtarget().getInstrInfo();
|
||||||
|
assert(TII && "Expected target instruction info");
|
||||||
|
auto Indices = TII->getSerializableTargetIndices();
|
||||||
|
for (const auto &I : Indices)
|
||||||
|
Names2TargetIndices.insert(std::make_pair(StringRef(I.second), I.first));
|
||||||
|
}
|
||||||
|
|
||||||
|
bool MIParser::getTargetIndex(StringRef Name, int &Index) {
|
||||||
|
initNames2TargetIndices();
|
||||||
|
auto IndexInfo = Names2TargetIndices.find(Name);
|
||||||
|
if (IndexInfo == Names2TargetIndices.end())
|
||||||
|
return true;
|
||||||
|
Index = IndexInfo->second;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
bool llvm::parseMachineInstr(MachineInstr *&MI, SourceMgr &SM,
|
bool llvm::parseMachineInstr(MachineInstr *&MI, SourceMgr &SM,
|
||||||
MachineFunction &MF, StringRef Src,
|
MachineFunction &MF, StringRef Src,
|
||||||
const PerFunctionMIParsingState &PFS,
|
const PerFunctionMIParsingState &PFS,
|
||||||
|
@ -457,6 +457,18 @@ void MIPrinter::printStackObjectReference(int FrameIndex) {
|
|||||||
OS << '.' << Operand.Name;
|
OS << '.' << Operand.Name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static const char *getTargetIndexName(const MachineFunction &MF, int Index) {
|
||||||
|
const auto *TII = MF.getSubtarget().getInstrInfo();
|
||||||
|
assert(TII && "expected instruction info");
|
||||||
|
auto Indices = TII->getSerializableTargetIndices();
|
||||||
|
for (const auto &I : Indices) {
|
||||||
|
if (I.first == Index) {
|
||||||
|
return I.second;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
void MIPrinter::print(const MachineOperand &Op, const TargetRegisterInfo *TRI) {
|
void MIPrinter::print(const MachineOperand &Op, const TargetRegisterInfo *TRI) {
|
||||||
switch (Op.getType()) {
|
switch (Op.getType()) {
|
||||||
case MachineOperand::MO_Register:
|
case MachineOperand::MO_Register:
|
||||||
@ -487,6 +499,17 @@ void MIPrinter::print(const MachineOperand &Op, const TargetRegisterInfo *TRI) {
|
|||||||
OS << "%const." << Op.getIndex();
|
OS << "%const." << Op.getIndex();
|
||||||
// TODO: Print offset and target flags.
|
// TODO: Print offset and target flags.
|
||||||
break;
|
break;
|
||||||
|
case MachineOperand::MO_TargetIndex: {
|
||||||
|
OS << "target-index(";
|
||||||
|
if (const auto *Name = getTargetIndexName(
|
||||||
|
*Op.getParent()->getParent()->getParent(), Op.getIndex()))
|
||||||
|
OS << Name;
|
||||||
|
else
|
||||||
|
OS << "<unknown>";
|
||||||
|
OS << ')';
|
||||||
|
// TODO: Print the offset and target flags.
|
||||||
|
break;
|
||||||
|
}
|
||||||
case MachineOperand::MO_JumpTableIndex:
|
case MachineOperand::MO_JumpTableIndex:
|
||||||
OS << "%jump-table." << Op.getIndex();
|
OS << "%jump-table." << Op.getIndex();
|
||||||
// TODO: Print target flags.
|
// TODO: Print target flags.
|
||||||
|
@ -362,3 +362,14 @@ int AMDGPUInstrInfo::pseudoToMCOpcode(int Opcode) const {
|
|||||||
|
|
||||||
return MCOp;
|
return MCOp;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ArrayRef<std::pair<int, const char *>>
|
||||||
|
AMDGPUInstrInfo::getSerializableTargetIndices() const {
|
||||||
|
static std::pair<int, const char *> TargetIndices[] = {
|
||||||
|
{AMDGPU::TI_CONSTDATA_START, "amdgpu-constdata-start"},
|
||||||
|
{AMDGPU::TI_SCRATCH_RSRC_DWORD0, "amdgpu-scratch-rsrc-dword0"},
|
||||||
|
{AMDGPU::TI_SCRATCH_RSRC_DWORD1, "amdgpu-scratch-rsrc-dword1"},
|
||||||
|
{AMDGPU::TI_SCRATCH_RSRC_DWORD2, "amdgpu-scratch-rsrc-dword2"},
|
||||||
|
{AMDGPU::TI_SCRATCH_RSRC_DWORD3, "amdgpu-scratch-rsrc-dword3"}};
|
||||||
|
return TargetIndices;
|
||||||
|
}
|
||||||
|
@ -145,6 +145,9 @@ public:
|
|||||||
return get(pseudoToMCOpcode(Opcode));
|
return get(pseudoToMCOpcode(Opcode));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ArrayRef<std::pair<int, const char *>>
|
||||||
|
getSerializableTargetIndices() const override;
|
||||||
|
|
||||||
//===---------------------------------------------------------------------===//
|
//===---------------------------------------------------------------------===//
|
||||||
// Pure virtual funtions to be implemented by sub-classes.
|
// Pure virtual funtions to be implemented by sub-classes.
|
||||||
//===---------------------------------------------------------------------===//
|
//===---------------------------------------------------------------------===//
|
||||||
|
65
test/CodeGen/MIR/AMDGPU/expected-target-index-name.mir
Normal file
65
test/CodeGen/MIR/AMDGPU/expected-target-index-name.mir
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
# RUN: not llc -march=amdgcn -mcpu=SI -start-after postrapseudos -stop-after postrapseudos -o /dev/null %s 2>&1 | FileCheck %s
|
||||||
|
|
||||||
|
--- |
|
||||||
|
|
||||||
|
%struct.foo = type { float, [5 x i32] }
|
||||||
|
|
||||||
|
@float_gv = internal unnamed_addr addrspace(2) constant [5 x float] [float 0.000000e+00, float 1.000000e+00, float 2.000000e+00, float 3.000000e+00, float 4.000000e+00], align 4
|
||||||
|
|
||||||
|
define void @float(float addrspace(1)* %out, i32 %index) #0 {
|
||||||
|
entry:
|
||||||
|
%0 = getelementptr inbounds [5 x float], [5 x float] addrspace(2)* @float_gv, i32 0, i32 %index
|
||||||
|
%1 = load float, float addrspace(2)* %0
|
||||||
|
store float %1, float addrspace(1)* %out
|
||||||
|
ret void
|
||||||
|
}
|
||||||
|
|
||||||
|
declare { i1, i64 } @llvm.SI.if(i1)
|
||||||
|
|
||||||
|
declare { i1, i64 } @llvm.SI.else(i64)
|
||||||
|
|
||||||
|
declare i64 @llvm.SI.break(i64)
|
||||||
|
|
||||||
|
declare i64 @llvm.SI.if.break(i1, i64)
|
||||||
|
|
||||||
|
declare i64 @llvm.SI.else.break(i64, i64)
|
||||||
|
|
||||||
|
declare i1 @llvm.SI.loop(i64)
|
||||||
|
|
||||||
|
declare void @llvm.SI.end.cf(i64)
|
||||||
|
|
||||||
|
attributes #0 = { "target-cpu"="SI" }
|
||||||
|
|
||||||
|
...
|
||||||
|
---
|
||||||
|
name: float
|
||||||
|
tracksSubRegLiveness: true
|
||||||
|
liveins:
|
||||||
|
- { reg: '%sgpr0_sgpr1' }
|
||||||
|
frameInfo:
|
||||||
|
maxAlignment: 8
|
||||||
|
body:
|
||||||
|
- id: 0
|
||||||
|
name: entry
|
||||||
|
liveins: [ '%sgpr0_sgpr1' ]
|
||||||
|
instructions:
|
||||||
|
- '%sgpr2_sgpr3 = S_GETPC_B64'
|
||||||
|
# CHECK: [[@LINE+1]]:50: expected the name of the target index
|
||||||
|
- '%sgpr2 = S_ADD_U32 %sgpr2, target-index(0), implicit-def %scc, implicit-def %scc'
|
||||||
|
- '%sgpr3 = S_ADDC_U32 %sgpr3, 0, implicit-def %scc, implicit %scc, implicit-def %scc, implicit %scc'
|
||||||
|
- '%sgpr4_sgpr5 = S_LSHR_B64 %sgpr2_sgpr3, 32, implicit-def dead %scc'
|
||||||
|
- '%sgpr6 = S_LOAD_DWORD_IMM %sgpr0_sgpr1, 11'
|
||||||
|
- '%sgpr7 = S_ASHR_I32 %sgpr6, 31, implicit-def dead %scc'
|
||||||
|
- '%sgpr6_sgpr7 = S_LSHL_B64 %sgpr6_sgpr7, 2, implicit-def dead %scc'
|
||||||
|
- '%sgpr2 = S_ADD_U32 %sgpr2, @float_gv, implicit-def %scc'
|
||||||
|
- '%sgpr3 = S_ADDC_U32 %sgpr4, 0, implicit-def dead %scc, implicit %scc'
|
||||||
|
- '%sgpr4 = S_ADD_U32 %sgpr2, %sgpr6, implicit-def %scc'
|
||||||
|
- '%sgpr5 = S_ADDC_U32 %sgpr3, %sgpr7, implicit-def dead %scc, implicit %scc'
|
||||||
|
- '%sgpr2 = S_LOAD_DWORD_IMM %sgpr4_sgpr5, 0'
|
||||||
|
- '%sgpr4_sgpr5 = S_LOAD_DWORDX2_IMM killed %sgpr0_sgpr1, 9'
|
||||||
|
- '%sgpr7 = S_MOV_B32 61440'
|
||||||
|
- '%sgpr6 = S_MOV_B32 -1'
|
||||||
|
- '%vgpr0 = V_MOV_B32_e32 killed %sgpr2, implicit %exec'
|
||||||
|
- 'BUFFER_STORE_DWORD_OFFSET killed %vgpr0, %sgpr4_sgpr5_sgpr6_sgpr7, 0, 0, 0, 0, 0, implicit %exec'
|
||||||
|
- S_ENDPGM
|
||||||
|
...
|
65
test/CodeGen/MIR/AMDGPU/invalid-target-index-operand.mir
Normal file
65
test/CodeGen/MIR/AMDGPU/invalid-target-index-operand.mir
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
# RUN: not llc -march=amdgcn -mcpu=SI -start-after postrapseudos -stop-after postrapseudos -o /dev/null %s 2>&1 | FileCheck %s
|
||||||
|
|
||||||
|
--- |
|
||||||
|
|
||||||
|
%struct.foo = type { float, [5 x i32] }
|
||||||
|
|
||||||
|
@float_gv = internal unnamed_addr addrspace(2) constant [5 x float] [float 0.000000e+00, float 1.000000e+00, float 2.000000e+00, float 3.000000e+00, float 4.000000e+00], align 4
|
||||||
|
|
||||||
|
define void @float(float addrspace(1)* %out, i32 %index) #0 {
|
||||||
|
entry:
|
||||||
|
%0 = getelementptr inbounds [5 x float], [5 x float] addrspace(2)* @float_gv, i32 0, i32 %index
|
||||||
|
%1 = load float, float addrspace(2)* %0
|
||||||
|
store float %1, float addrspace(1)* %out
|
||||||
|
ret void
|
||||||
|
}
|
||||||
|
|
||||||
|
declare { i1, i64 } @llvm.SI.if(i1)
|
||||||
|
|
||||||
|
declare { i1, i64 } @llvm.SI.else(i64)
|
||||||
|
|
||||||
|
declare i64 @llvm.SI.break(i64)
|
||||||
|
|
||||||
|
declare i64 @llvm.SI.if.break(i1, i64)
|
||||||
|
|
||||||
|
declare i64 @llvm.SI.else.break(i64, i64)
|
||||||
|
|
||||||
|
declare i1 @llvm.SI.loop(i64)
|
||||||
|
|
||||||
|
declare void @llvm.SI.end.cf(i64)
|
||||||
|
|
||||||
|
attributes #0 = { "target-cpu"="SI" }
|
||||||
|
|
||||||
|
...
|
||||||
|
---
|
||||||
|
name: float
|
||||||
|
tracksSubRegLiveness: true
|
||||||
|
liveins:
|
||||||
|
- { reg: '%sgpr0_sgpr1' }
|
||||||
|
frameInfo:
|
||||||
|
maxAlignment: 8
|
||||||
|
body:
|
||||||
|
- id: 0
|
||||||
|
name: entry
|
||||||
|
liveins: [ '%sgpr0_sgpr1' ]
|
||||||
|
instructions:
|
||||||
|
- '%sgpr2_sgpr3 = S_GETPC_B64'
|
||||||
|
# CHECK: [[@LINE+1]]:50: use of undefined target index 'constdata-start'
|
||||||
|
- '%sgpr2 = S_ADD_U32 %sgpr2, target-index(constdata-start), implicit-def %scc, implicit-def %scc'
|
||||||
|
- '%sgpr3 = S_ADDC_U32 %sgpr3, 0, implicit-def %scc, implicit %scc, implicit-def %scc, implicit %scc'
|
||||||
|
- '%sgpr4_sgpr5 = S_LSHR_B64 %sgpr2_sgpr3, 32, implicit-def dead %scc'
|
||||||
|
- '%sgpr6 = S_LOAD_DWORD_IMM %sgpr0_sgpr1, 11'
|
||||||
|
- '%sgpr7 = S_ASHR_I32 %sgpr6, 31, implicit-def dead %scc'
|
||||||
|
- '%sgpr6_sgpr7 = S_LSHL_B64 %sgpr6_sgpr7, 2, implicit-def dead %scc'
|
||||||
|
- '%sgpr2 = S_ADD_U32 %sgpr2, @float_gv, implicit-def %scc'
|
||||||
|
- '%sgpr3 = S_ADDC_U32 %sgpr4, 0, implicit-def dead %scc, implicit %scc'
|
||||||
|
- '%sgpr4 = S_ADD_U32 %sgpr2, %sgpr6, implicit-def %scc'
|
||||||
|
- '%sgpr5 = S_ADDC_U32 %sgpr3, %sgpr7, implicit-def dead %scc, implicit %scc'
|
||||||
|
- '%sgpr2 = S_LOAD_DWORD_IMM %sgpr4_sgpr5, 0'
|
||||||
|
- '%sgpr4_sgpr5 = S_LOAD_DWORDX2_IMM killed %sgpr0_sgpr1, 9'
|
||||||
|
- '%sgpr7 = S_MOV_B32 61440'
|
||||||
|
- '%sgpr6 = S_MOV_B32 -1'
|
||||||
|
- '%vgpr0 = V_MOV_B32_e32 killed %sgpr2, implicit %exec'
|
||||||
|
- 'BUFFER_STORE_DWORD_OFFSET killed %vgpr0, %sgpr4_sgpr5_sgpr6_sgpr7, 0, 0, 0, 0, 0, implicit %exec'
|
||||||
|
- S_ENDPGM
|
||||||
|
...
|
2
test/CodeGen/MIR/AMDGPU/lit.local.cfg
Normal file
2
test/CodeGen/MIR/AMDGPU/lit.local.cfg
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
if not 'AMDGPU' in config.root.targets:
|
||||||
|
config.unsupported = True
|
66
test/CodeGen/MIR/AMDGPU/target-index-operands.mir
Normal file
66
test/CodeGen/MIR/AMDGPU/target-index-operands.mir
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
# RUN: llc -march=amdgcn -mcpu=SI -start-after postrapseudos -stop-after postrapseudos -o /dev/null %s | FileCheck %s
|
||||||
|
# This test verifies that the MIR parser can parse target index operands.
|
||||||
|
|
||||||
|
--- |
|
||||||
|
|
||||||
|
%struct.foo = type { float, [5 x i32] }
|
||||||
|
|
||||||
|
@float_gv = internal unnamed_addr addrspace(2) constant [5 x float] [float 0.000000e+00, float 1.000000e+00, float 2.000000e+00, float 3.000000e+00, float 4.000000e+00], align 4
|
||||||
|
|
||||||
|
define void @float(float addrspace(1)* %out, i32 %index) #0 {
|
||||||
|
entry:
|
||||||
|
%0 = getelementptr inbounds [5 x float], [5 x float] addrspace(2)* @float_gv, i32 0, i32 %index
|
||||||
|
%1 = load float, float addrspace(2)* %0
|
||||||
|
store float %1, float addrspace(1)* %out
|
||||||
|
ret void
|
||||||
|
}
|
||||||
|
|
||||||
|
declare { i1, i64 } @llvm.SI.if(i1)
|
||||||
|
|
||||||
|
declare { i1, i64 } @llvm.SI.else(i64)
|
||||||
|
|
||||||
|
declare i64 @llvm.SI.break(i64)
|
||||||
|
|
||||||
|
declare i64 @llvm.SI.if.break(i1, i64)
|
||||||
|
|
||||||
|
declare i64 @llvm.SI.else.break(i64, i64)
|
||||||
|
|
||||||
|
declare i1 @llvm.SI.loop(i64)
|
||||||
|
|
||||||
|
declare void @llvm.SI.end.cf(i64)
|
||||||
|
|
||||||
|
attributes #0 = { "target-cpu"="SI" }
|
||||||
|
|
||||||
|
...
|
||||||
|
---
|
||||||
|
name: float
|
||||||
|
tracksSubRegLiveness: true
|
||||||
|
liveins:
|
||||||
|
- { reg: '%sgpr0_sgpr1' }
|
||||||
|
frameInfo:
|
||||||
|
maxAlignment: 8
|
||||||
|
body:
|
||||||
|
- id: 0
|
||||||
|
name: entry
|
||||||
|
liveins: [ '%sgpr0_sgpr1' ]
|
||||||
|
instructions:
|
||||||
|
- '%sgpr2_sgpr3 = S_GETPC_B64'
|
||||||
|
# CHECK: %sgpr2 = S_ADD_U32 %sgpr2, target-index(amdgpu-constdata-start), implicit-def %scc, implicit-def %scc
|
||||||
|
- '%sgpr2 = S_ADD_U32 %sgpr2, target-index(amdgpu-constdata-start), implicit-def %scc, implicit-def %scc'
|
||||||
|
- '%sgpr3 = S_ADDC_U32 %sgpr3, 0, implicit-def %scc, implicit %scc, implicit-def %scc, implicit %scc'
|
||||||
|
- '%sgpr4_sgpr5 = S_LSHR_B64 %sgpr2_sgpr3, 32, implicit-def dead %scc'
|
||||||
|
- '%sgpr6 = S_LOAD_DWORD_IMM %sgpr0_sgpr1, 11'
|
||||||
|
- '%sgpr7 = S_ASHR_I32 %sgpr6, 31, implicit-def dead %scc'
|
||||||
|
- '%sgpr6_sgpr7 = S_LSHL_B64 %sgpr6_sgpr7, 2, implicit-def dead %scc'
|
||||||
|
- '%sgpr2 = S_ADD_U32 %sgpr2, @float_gv, implicit-def %scc'
|
||||||
|
- '%sgpr3 = S_ADDC_U32 %sgpr4, 0, implicit-def dead %scc, implicit %scc'
|
||||||
|
- '%sgpr4 = S_ADD_U32 %sgpr2, %sgpr6, implicit-def %scc'
|
||||||
|
- '%sgpr5 = S_ADDC_U32 %sgpr3, %sgpr7, implicit-def dead %scc, implicit %scc'
|
||||||
|
- '%sgpr2 = S_LOAD_DWORD_IMM %sgpr4_sgpr5, 0'
|
||||||
|
- '%sgpr4_sgpr5 = S_LOAD_DWORDX2_IMM killed %sgpr0_sgpr1, 9'
|
||||||
|
- '%sgpr7 = S_MOV_B32 61440'
|
||||||
|
- '%sgpr6 = S_MOV_B32 -1'
|
||||||
|
- '%vgpr0 = V_MOV_B32_e32 killed %sgpr2, implicit %exec'
|
||||||
|
- 'BUFFER_STORE_DWORD_OFFSET killed %vgpr0, %sgpr4_sgpr5_sgpr6_sgpr7, 0, 0, 0, 0, 0, implicit %exec'
|
||||||
|
- S_ENDPGM
|
||||||
|
...
|
Loading…
Reference in New Issue
Block a user