mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-08 21:10:35 +00:00
MIR Serialization: Serialize the memory operand's alias scope metadata node.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@245245 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d3ff211ac7
commit
ed8c969d30
@ -445,6 +445,7 @@ static Cursor maybeLexNumericalLiteral(Cursor C, MIToken &Token) {
|
|||||||
static MIToken::TokenKind getMetadataKeywordKind(StringRef Identifier) {
|
static MIToken::TokenKind getMetadataKeywordKind(StringRef Identifier) {
|
||||||
return StringSwitch<MIToken::TokenKind>(Identifier)
|
return StringSwitch<MIToken::TokenKind>(Identifier)
|
||||||
.Case("!tbaa", MIToken::md_tbaa)
|
.Case("!tbaa", MIToken::md_tbaa)
|
||||||
|
.Case("!alias.scope", MIToken::md_alias_scope)
|
||||||
.Default(MIToken::Error);
|
.Default(MIToken::Error);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -87,6 +87,7 @@ struct MIToken {
|
|||||||
|
|
||||||
// Named metadata keywords
|
// Named metadata keywords
|
||||||
md_tbaa,
|
md_tbaa,
|
||||||
|
md_alias_scope,
|
||||||
|
|
||||||
// Identifier tokens
|
// Identifier tokens
|
||||||
Identifier,
|
Identifier,
|
||||||
|
@ -1538,12 +1538,16 @@ bool MIParser::parseMachineMemoryOperand(MachineMemOperand *&Dest) {
|
|||||||
if (parseMDNode(AAInfo.TBAA))
|
if (parseMDNode(AAInfo.TBAA))
|
||||||
return true;
|
return true;
|
||||||
break;
|
break;
|
||||||
// TODO: Parse AA Scope metadata.
|
case MIToken::md_alias_scope:
|
||||||
|
lex();
|
||||||
|
if (parseMDNode(AAInfo.Scope))
|
||||||
|
return true;
|
||||||
|
break;
|
||||||
// TODO: Parse AA NoAlias metadata.
|
// TODO: Parse AA NoAlias metadata.
|
||||||
// TODO: Parse the ranges metadata.
|
// TODO: Parse the ranges metadata.
|
||||||
// TODO: Report an error on duplicate metadata nodes.
|
// TODO: Report an error on duplicate metadata nodes.
|
||||||
default:
|
default:
|
||||||
return error("expected 'align' or '!tbaa'");
|
return error("expected 'align' or '!tbaa' or '!alias.scope'");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (expectAndConsume(MIToken::rparen))
|
if (expectAndConsume(MIToken::rparen))
|
||||||
|
@ -782,7 +782,10 @@ void MIPrinter::print(const MachineMemOperand &Op) {
|
|||||||
OS << ", !tbaa ";
|
OS << ", !tbaa ";
|
||||||
AAInfo.TBAA->printAsOperand(OS, MST);
|
AAInfo.TBAA->printAsOperand(OS, MST);
|
||||||
}
|
}
|
||||||
// TODO: Print AA Scope metadata.
|
if (AAInfo.Scope) {
|
||||||
|
OS << ", !alias.scope ";
|
||||||
|
AAInfo.Scope->printAsOperand(OS, MST);
|
||||||
|
}
|
||||||
// TODO: Print AA NoAlias metadata.
|
// TODO: Print AA NoAlias metadata.
|
||||||
// TODO: Print the ranges metadata.
|
// TODO: Print the ranges metadata.
|
||||||
OS << ')';
|
OS << ')';
|
||||||
|
@ -132,6 +132,22 @@
|
|||||||
!7 = !{!"XXH_state64_t", !3, i64 0, !3, i64 4, !8, i64 8, !8, i64 16, !8, i64 24}
|
!7 = !{!"XXH_state64_t", !3, i64 0, !3, i64 4, !8, i64 8, !8, i64 16, !8, i64 24}
|
||||||
!8 = !{!"long long", !4, i64 0}
|
!8 = !{!"long long", !4, i64 0}
|
||||||
|
|
||||||
|
define void @aa_scope(float* nocapture %a, float* nocapture readonly %c) #1 {
|
||||||
|
entry:
|
||||||
|
%0 = load float, float* %c, align 4, !alias.scope !9
|
||||||
|
%arrayidx.i = getelementptr inbounds float, float* %a, i64 5
|
||||||
|
store float %0, float* %arrayidx.i, align 4, !noalias !9
|
||||||
|
%1 = load float, float* %c, align 4
|
||||||
|
%arrayidx = getelementptr inbounds float, float* %a, i64 7
|
||||||
|
store float %1, float* %arrayidx, align 4
|
||||||
|
ret void
|
||||||
|
}
|
||||||
|
|
||||||
|
attributes #1 = { nounwind uwtable }
|
||||||
|
|
||||||
|
!9 = distinct !{!9, !10, !"some scope"}
|
||||||
|
!10 = distinct !{!10, !"some domain"}
|
||||||
|
|
||||||
...
|
...
|
||||||
---
|
---
|
||||||
name: test
|
name: test
|
||||||
@ -372,3 +388,20 @@ body: |
|
|||||||
%eax = MOV32rm killed %rax, 1, _, 0, _ :: (load 4 from %ir.total_len2, !tbaa !6)
|
%eax = MOV32rm killed %rax, 1, _, 0, _ :: (load 4 from %ir.total_len2, !tbaa !6)
|
||||||
RETQ %eax
|
RETQ %eax
|
||||||
...
|
...
|
||||||
|
---
|
||||||
|
name: aa_scope
|
||||||
|
tracksRegLiveness: true
|
||||||
|
liveins:
|
||||||
|
- { reg: '%rdi' }
|
||||||
|
- { reg: '%rsi' }
|
||||||
|
body: |
|
||||||
|
bb.0.entry:
|
||||||
|
liveins: %rdi, %rsi
|
||||||
|
; CHECK-LABEL: name: aa_scope
|
||||||
|
; CHECK: %xmm0 = MOVSSrm %rsi, 1, _, 0, _ :: (load 4 from %ir.c, !alias.scope !9)
|
||||||
|
%xmm0 = MOVSSrm %rsi, 1, _, 0, _ :: (load 4 from %ir.c, !alias.scope !9)
|
||||||
|
MOVSSmr %rdi, 1, _, 20, _, killed %xmm0 :: (store 4 into %ir.arrayidx.i)
|
||||||
|
%xmm0 = MOVSSrm killed %rsi, 1, _, 0, _ :: (load 4 from %ir.c)
|
||||||
|
MOVSSmr killed %rdi, 1, _, 28, _, killed %xmm0 :: (store 4 into %ir.arrayidx)
|
||||||
|
RETQ
|
||||||
|
...
|
||||||
|
Loading…
Reference in New Issue
Block a user