forked from OSchip/llvm-project
MIR Serialization: Serialize the memory operand's alias scope metadata node.
llvm-svn: 245245
This commit is contained in:
parent
a617c9162d
commit
a16f624dc3
|
@ -445,6 +445,7 @@ static Cursor maybeLexNumericalLiteral(Cursor C, MIToken &Token) {
|
|||
static MIToken::TokenKind getMetadataKeywordKind(StringRef Identifier) {
|
||||
return StringSwitch<MIToken::TokenKind>(Identifier)
|
||||
.Case("!tbaa", MIToken::md_tbaa)
|
||||
.Case("!alias.scope", MIToken::md_alias_scope)
|
||||
.Default(MIToken::Error);
|
||||
}
|
||||
|
||||
|
|
|
@ -87,6 +87,7 @@ struct MIToken {
|
|||
|
||||
// Named metadata keywords
|
||||
md_tbaa,
|
||||
md_alias_scope,
|
||||
|
||||
// Identifier tokens
|
||||
Identifier,
|
||||
|
|
|
@ -1538,12 +1538,16 @@ bool MIParser::parseMachineMemoryOperand(MachineMemOperand *&Dest) {
|
|||
if (parseMDNode(AAInfo.TBAA))
|
||||
return true;
|
||||
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 the ranges metadata.
|
||||
// TODO: Report an error on duplicate metadata nodes.
|
||||
default:
|
||||
return error("expected 'align' or '!tbaa'");
|
||||
return error("expected 'align' or '!tbaa' or '!alias.scope'");
|
||||
}
|
||||
}
|
||||
if (expectAndConsume(MIToken::rparen))
|
||||
|
|
|
@ -782,7 +782,10 @@ void MIPrinter::print(const MachineMemOperand &Op) {
|
|||
OS << ", !tbaa ";
|
||||
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 the ranges metadata.
|
||||
OS << ')';
|
||||
|
|
|
@ -132,6 +132,22 @@
|
|||
!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}
|
||||
|
||||
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
|
||||
|
@ -372,3 +388,20 @@ body: |
|
|||
%eax = MOV32rm killed %rax, 1, _, 0, _ :: (load 4 from %ir.total_len2, !tbaa !6)
|
||||
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