Displaying 5 results from an estimated 5 matches for "rrlogic".
Did you mean:
crlogic
2013 Apr 30
1
[LLVMdev] Define Integer to be of 2 Bytes for a Target
Hi,
Is there a way to specify the Integer type to be of 2Byte for a
Target? LLVM IR produces 4Bytes(i32) for Integer type. Clang can be
tweaked to make the integer to be of 2Byte(i16), but is there a way to
specify in the LLVM CodeGen?
--
Thanks and Regards,
Shashidhar
2013 Apr 10
0
[LLVMdev] What is the Use of "Implicit EFLAGS" in TableGen
Hi,
In the Table Gen format of defining Instructions for X86
architecture, some of the instruction patterns has both the dag
expression "(implicit EFLAGS)" as well as the definition "Defs =
[EFLAGS]". What is the difference between these two? Cant the
Instruction Selector consider the Defs list when doing pattern match. I
am confused when to use (implicit EFLAGS)
2013 Sep 30
2
[LLVMdev] Post Increment Indirect Move Instructions
Hi,
We have an architecture where the indirect move instruction
implicitly increments the pointer
value after the move. We have Instruction format and pattern for this
type of instructions.
How to encode the information that the pointer is incremented?
Thanks and regards,
Shashidhar
2013 Oct 08
1
[LLVMdev] Post Increment Indirect Move Instructions
Hi Hal,
On Tuesday 01 October 2013 06:22 PM, Hal Finkel wrote:
> ----- Original Message -----
>> Hi Hal,
>>
>>
>> Our Architecture has indirect move instruction which increments
>> the
>> pointer implicitly and the target only has i8 type values. So the
>> load
>> of i16 will be converted to two i8 target loads wherein after the
2013 Oct 01
2
[LLVMdev] Post Increment Indirect Move Instructions
Hi Hal,
Our Architecture has indirect move instruction which increments the
pointer implicitly and the target only has i8 type values. So the load
of i16 will be converted to two i8 target loads wherein after the first
load instruction, the pointer to the first i8 address will automatically
increment to point to the next i8 value. So the post increment nature is
in the Target. A normal