From 1731b66081d90b924c048721774c4da99a016954 Mon Sep 17 00:00:00 2001 From: Alex Lorenz Date: Tue, 4 Aug 2015 00:24:45 +0000 Subject: [PATCH] MIR Serialization: Serialize the 'volatile' machine memory operand flag. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@243923 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/MIRParser/MILexer.cpp | 1 + lib/CodeGen/MIRParser/MILexer.h | 3 +++ lib/CodeGen/MIRParser/MIParser.cpp | 22 ++++++++++++++++++-- lib/CodeGen/MIRPrinter.cpp | 2 ++ test/CodeGen/MIR/X86/memory-operands.mir | 26 ++++++++++++++++++++++++ 5 files changed, 52 insertions(+), 2 deletions(-) diff --git a/lib/CodeGen/MIRParser/MILexer.cpp b/lib/CodeGen/MIRParser/MILexer.cpp index 81cb9e7d6f9..adc72e2a566 100644 --- a/lib/CodeGen/MIRParser/MILexer.cpp +++ b/lib/CodeGen/MIRParser/MILexer.cpp @@ -156,6 +156,7 @@ static MIToken::TokenKind getIdentifierKind(StringRef Identifier) { .Case("x86_fp80", MIToken::kw_x86_fp80) .Case("fp128", MIToken::kw_fp128) .Case("ppc_fp128", MIToken::kw_ppc_fp128) + .Case("volatile", MIToken::kw_volatile) .Default(MIToken::Identifier); } diff --git a/lib/CodeGen/MIRParser/MILexer.h b/lib/CodeGen/MIRParser/MILexer.h index d33e0499f27..ccf8ffe15e5 100644 --- a/lib/CodeGen/MIRParser/MILexer.h +++ b/lib/CodeGen/MIRParser/MILexer.h @@ -61,6 +61,7 @@ struct MIToken { kw_x86_fp80, kw_fp128, kw_ppc_fp128, + kw_volatile, // Identifier tokens Identifier, @@ -115,6 +116,8 @@ public: Kind == kw_dead || Kind == kw_killed || Kind == kw_undef; } + bool isMemoryOperandFlag() const { return Kind == kw_volatile; } + bool is(TokenKind K) const { return Kind == K; } bool isNot(TokenKind K) const { return Kind != K; } diff --git a/lib/CodeGen/MIRParser/MIParser.cpp b/lib/CodeGen/MIRParser/MIParser.cpp index e1770cd7fdb..70ce67f132f 100644 --- a/lib/CodeGen/MIRParser/MIParser.cpp +++ b/lib/CodeGen/MIRParser/MIParser.cpp @@ -135,6 +135,7 @@ public: bool parseTargetIndexOperand(MachineOperand &Dest); bool parseMachineOperand(MachineOperand &Dest); bool parseIRValue(Value *&V); + bool parseMemoryOperandFlag(unsigned &Flags); bool parseMachineMemoryOperand(MachineMemOperand *&Dest); private: @@ -987,14 +988,31 @@ bool MIParser::getUint64(uint64_t &Result) { return false; } +bool MIParser::parseMemoryOperandFlag(unsigned &Flags) { + switch (Token.kind()) { + case MIToken::kw_volatile: + Flags |= MachineMemOperand::MOVolatile; + break; + // TODO: report an error when we specify the same flag more than once. + // TODO: parse the other memory operand flags. + default: + llvm_unreachable("The current token should be a memory operand flag"); + } + lex(); + return false; +} + bool MIParser::parseMachineMemoryOperand(MachineMemOperand *&Dest) { if (expectAndConsume(MIToken::lparen)) return true; - // TODO: Parse the operand's flags. + unsigned Flags = 0; + while (Token.isMemoryOperandFlag()) { + if (parseMemoryOperandFlag(Flags)) + return true; + } if (Token.isNot(MIToken::Identifier) || (Token.stringValue() != "load" && Token.stringValue() != "store")) return error("expected 'load' or 'store' memory operation"); - unsigned Flags = 0; if (Token.stringValue() == "load") Flags |= MachineMemOperand::MOLoad; else diff --git a/lib/CodeGen/MIRPrinter.cpp b/lib/CodeGen/MIRPrinter.cpp index 9c5988c32e4..fb5a36ce9a7 100644 --- a/lib/CodeGen/MIRPrinter.cpp +++ b/lib/CodeGen/MIRPrinter.cpp @@ -608,6 +608,8 @@ void MIPrinter::print(const MachineOperand &Op, const TargetRegisterInfo *TRI) { void MIPrinter::print(const MachineMemOperand &Op) { OS << '('; // TODO: Print operand's other flags. + if (Op.isVolatile()) + OS << "volatile "; if (Op.isLoad()) OS << "load "; else { diff --git a/test/CodeGen/MIR/X86/memory-operands.mir b/test/CodeGen/MIR/X86/memory-operands.mir index e220761357f..cc73263728e 100644 --- a/test/CodeGen/MIR/X86/memory-operands.mir +++ b/test/CodeGen/MIR/X86/memory-operands.mir @@ -19,6 +19,14 @@ ret void } + define i32 @volatile_inc(i32* %x) { + entry: + %0 = load volatile i32, i32* %x + %1 = add i32 %0, 1 + store volatile i32 %1, i32* %x + ret i32 %1 + } + ... --- name: test @@ -50,3 +58,21 @@ body: - 'INC32m killed %rdi, 1, _, 0, _, implicit-def dead %eflags :: (store 4 into %ir."a value"), (load 4 from %ir."a value")' - RETQ ... +--- +name: volatile_inc +tracksRegLiveness: true +liveins: + - { reg: '%rdi' } +body: + - id: 0 + name: entry + liveins: [ '%rdi' ] + instructions: + # CHECK: name: volatile_inc + # CHECK: %eax = MOV32rm %rdi, 1, _, 0, _ :: (volatile load 4 from %ir.x) + # CHECK: MOV32mr killed %rdi, 1, _, 0, _, %eax :: (volatile store 4 into %ir.x) + - '%eax = MOV32rm %rdi, 1, _, 0, _ :: (volatile load 4 from %ir.x)' + - '%eax = INC32r killed %eax, implicit-def dead %eflags' + - 'MOV32mr killed %rdi, 1, _, 0, _, %eax :: (volatile store 4 into %ir.x)' + - 'RETQ %eax' +...