search for: 0b001011

Displaying 2 results from an estimated 2 matches for "0b001011".

Did you mean: 0b000011
2020 Jan 09
2
unified register set question
My target machine uses the same 64-bit registers for integers and floating point. Do I have to specify a different register class for floating point that uses the same set of registers? Is there a target which does this I can copy? thanks, brian
2011 Jul 03
0
[LLVMdev] DLX backend
...----------------------===// 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 : RegisterImmediateFormat<"and", 0b001100, and>; defm OR : RegisterImmediateFormat<"or", 0b001101, or>; defm XOR : RegisterImmediateFormat<&quot...