Instructions: crc32b, crc32h, crc32w, crc32d,
crc32cb, crc32ch, crc32cw, crc32cd
Assembler directives: .set crc, .set nocrc, .module crc, .module nocrc
Attribute: crc
.MIPS.abiflags: CRC (0x8000)
Paths
| Differential D44176
[mips] Add support for CRC ASE ClosedPublic Authored by vstefanovic on Mar 6 2018, 2:13 PM.
Details Summary Instructions: crc32b, crc32h, crc32w, crc32d, crc32cb, crc32ch, crc32cw, crc32cd Assembler directives: .set crc, .set nocrc, .module crc, .module nocrc
Diff Detail
Event TimelineComment Actions This looks mostly ok. There's only some small changes required, and they are somewhat minor. The recurring change is that for test cases, when there is a run-on line with '\', then the continuation of the command line should be indented by two spaces. See my inlined comments.
This revision now requires changes to proceed.Mar 7 2018, 7:46 AM
vstefanovic retitled this revision from [mips] Add support for CRC ASE. to [mips] Add support for CRC ASE. vstefanovic added inline comments.
sdardis added a parent revision: D44299: [mips] Split out ASEPredicate from InsnPredicates (NFC).Mar 9 2018, 5:20 AM Comment Actions If you look at the dependency, you'll see the way I've separated out the ISA level from the ASEs. vstefanovic marked an inline comment as done. Comment ActionsUpdated the code to use ASEPRedicate from D44299. Comment Actions LGTM with inline nits addressed.
This revision is now accepted and ready to land.Mar 13 2018, 4:14 AM Closed by commit rL327511: [mips] Add support for CRC ASE (authored by petarj). · Explain WhyMar 14 2018, 7:17 AM This revision was automatically updated to reflect the committed changes.
Revision Contents
Diff 138349 llvm/trunk/include/llvm/Support/MipsABIFlags.h
llvm/trunk/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
llvm/trunk/lib/Target/Mips/Disassembler/MipsDisassembler.cpp
llvm/trunk/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.h
llvm/trunk/lib/Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp
llvm/trunk/lib/Target/Mips/Mips.td
llvm/trunk/lib/Target/Mips/Mips32r6InstrFormats.td
llvm/trunk/lib/Target/Mips/Mips32r6InstrInfo.td
llvm/trunk/lib/Target/Mips/Mips64r6InstrInfo.td
llvm/trunk/lib/Target/Mips/MipsInstrInfo.td
llvm/trunk/lib/Target/Mips/MipsSchedule.td
llvm/trunk/lib/Target/Mips/MipsSubtarget.h
llvm/trunk/lib/Target/Mips/MipsSubtarget.cpp
llvm/trunk/lib/Target/Mips/MipsTargetStreamer.h
llvm/trunk/test/MC/Disassembler/Mips/crc/valid-32r6-el.txt
llvm/trunk/test/MC/Disassembler/Mips/crc/valid-32r6.txt
llvm/trunk/test/MC/Disassembler/Mips/crc/valid-64r6-el.txt
llvm/trunk/test/MC/Disassembler/Mips/crc/valid-64r6.txt
llvm/trunk/test/MC/Mips/crc/invalid.s
llvm/trunk/test/MC/Mips/crc/invalid64.s
llvm/trunk/test/MC/Mips/crc/module-crc.s
llvm/trunk/test/MC/Mips/crc/module-nocrc.s
llvm/trunk/test/MC/Mips/crc/set-crc-directive.s
llvm/trunk/test/MC/Mips/crc/set-nocrc-directive.s
llvm/trunk/test/MC/Mips/crc/valid.s
llvm/trunk/test/MC/Mips/crc/valid64.s
llvm/trunk/tools/llvm-readobj/ELFDumper.cpp
|