Displaying 4 results from an estimated 4 matches for "tamazov".
Did you mean:
amazon
2016 Feb 18
2
Bug in X86 assembler?
..., %r8 # encoding: [0x49,0xc7,0xc0,0x78,0x56,0x34,0x12]
I would recommend you some studying of x86 instruction set.
Another recommendation is to look at existing tests when you suspect a bug.
Regards,
--artem.
From: Jun Koi [mailto:junkoi2004 at gmail.com]
Sent: 18 February, 2016 15:09
To: Tamazov, Artem
Subject: RE: [llvm-dev] Bug in X86 assembler?
On Feb 18, 2016 7:27 PM, "Tamazov, Artem" <Artem.Tamazov at amd.com<mailto:Artem.Tamazov at amd.com>> wrote:
>
> movabsq %rax,0xabcdef1234567890
Cool, but i want to use mov to copy immediate to 64 reg, and f...
2016 Feb 17
2
How to define data for X86 assembler?
Hi,
Is there any documentation on the syntax accepted by X86 assembler?
I have this code in my .asm file to define data:
text db "127.1.1.1 google.lk"
But X86 assembler fails to understand it, with error:
error: unexpected token in argument list
text db "127.1.1.1 google.lk"
^
Any ideas how to fix this problem?
I tried to find some
2018 Sep 05
4
Can I control HSA config generated by AMDGPU backend?
...; clrxasm. It seems working and clrxasm seems support this dispatch kernel
> ptr thing. But it would be nice if I can turn it off. Reading the LLVM code
> it seems this intrinsic is hard coded? Hope not.
>
> Regards!
> Changdao from cell phone
>
> On Sep 4, 2018, at 4:12 AM, Tamazov, Artem <Artem.Tamazov at amd.com> wrote:
>
> ...
>
>
>
> Hi Artem,
>
>
>
> Thanks for replying!
>
> I am working on OpenCL program that runs with AMDGPU Pro driver.
>
> However, the compiler comes with it doesn't support inline assembly. So my
&g...
2017 Nov 28
3
storing MBB MCSymbol in custom section
Dear llvm-dev-list,
I have created my own custom section to be added at the end into a
binary upon compilation which contains address of all basic blocks. As
the final address of the basic block is not known until link time, I
collect the MCSymbol* Symbol Values per BB in a temp array and at the
in the custom section and emit it (emitSymbolValue) into my section
within EmitEndOfAsmFile()
I have