Displaying 1 result from an estimated 1 matches for "immediateformat".
2011 Jul 03
0
[LLVMdev] DLX backend
...-----------===//
//===----------------------------------------------------------------------===//
// Instruction format superclass
//===----------------------------------------------------------------------===//
include "DLXInstrFormats.td"
// arithmetic instructions
defm ADD : RegisterImmediateFormat<"add", 0b001000, add>;
defm DIV : RegisterImmediateFormat<"div", 0b001001, udiv>;
defm MUL : RegisterImmediateFormat<"mul", 0b001011, mul>;
defm SUB : RegisterImmediateFormat<"sub", 0b001010, sub>;
// logical instructions
defm AND : R...