Displaying 10 results from an estimated 10 matches for "ltmp13".
Did you mean:
ltmp1
2013 Sep 20
2
[LLVMdev] LLVM ERROR: expected relocatable expression
This example generates the following error:
.Ltmp3:
.Ltmp5:
.Ltmp13:
.word (.Ltmp5-.Ltmp3)-.Ltmp13
./llvm-mc ex.s -filetype=obj
LLVM ERROR: expected relocatable expression when using:
--
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
hosted by The Linux Foundation
2013 Sep 20
0
[LLVMdev] LLVM ERROR: expected relocatable expression
On Fri, Sep 20, 2013 at 2:50 PM, Sid Manning <sidneym at codeaurora.org> wrote:
>
> This example generates the following error:
> .Ltmp3:
> .Ltmp5:
> .Ltmp13:
> .word (.Ltmp5-.Ltmp3)-.Ltmp13
>
> ./llvm-mc ex.s -filetype=obj
> LLVM ERROR: expected relocatable expression when using:
>
>
Umm, isn't this equivalent to the following? What do you expect LLVM to do
with it?
.Ltmp13:
.word -.Ltmp13
-Eli
-------------- next...
2013 Sep 22
2
[LLVMdev] LLVM ERROR: expected relocatable expression
On 09/20/2013 06:00 PM, Eli Friedman wrote:
> On Fri, Sep 20, 2013 at 2:50 PM, Sid Manning <sidneym at codeaurora.org
> <mailto:sidneym at codeaurora.org>> wrote:
>
>
> This example generates the following error:
> .Ltmp3:
> .Ltmp5:
> .Ltmp13:
> .word (.Ltmp5-.Ltmp3)-.Ltmp13
>
> ./llvm-mc ex.s -filetype=obj
> LLVM ERROR: expected relocatable expression when using:
>
>
> Umm, isn't this equivalent to the following? What do you expect LLVM to
> do with it?
>
> .Ltmp13:
> .w...
2013 Sep 22
0
[LLVMdev] LLVM ERROR: expected relocatable expression
...Friedman wrote:
>
>> On Fri, Sep 20, 2013 at 2:50 PM, Sid Manning <sidneym at codeaurora.org
>> <mailto:sidneym at codeaurora.org**>> wrote:
>>
>>
>> This example generates the following error:
>> .Ltmp3:
>> .Ltmp5:
>> .Ltmp13:
>> .word (.Ltmp5-.Ltmp3)-.Ltmp13
>>
>> ./llvm-mc ex.s -filetype=obj
>> LLVM ERROR: expected relocatable expression when using:
>>
>>
>> Umm, isn't this equivalent to the following? What do you expect LLVM to
>> do with it?...
2012 Mar 28
2
[LLVMdev] Suboptimal code due to excessive spilling
...0.0;
for (int i = 0; i != k;++i)
{
s += sum(&x[i], 18);
p[i] = 5; // xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
}
return s;
}
====== Output A ======
======================
foo: # @foo
.Ltmp12:
.cfi_startproc
# BB#0:
pushl %ebx
.Ltmp13:
.cfi_def_cfa_offset 8
pushl %edi
.Ltmp14:
.cfi_def_cfa_offset 12
pushl %esi
.Ltmp15:
.cfi_def_cfa_offset 16
subl $88, %esp
.Ltmp16:
.cfi_def_cfa_offset 104
.Ltmp17:
.cfi_offset %esi, -16
.Ltmp18:
.cfi_offset %edi, -12
.Ltmp19:
.cfi_offset %ebx, -8
pxor %xmm0, %xmm0
movl 112(%esp), %eax...
2012 Apr 05
0
[LLVMdev] Suboptimal code due to excessive spilling
...0.0;
for (int i = 0; i != k;++i)
{
s += sum(&x[i], 18);
p[i] = 5; // xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
}
return s;
}
====== Output A ======
======================
foo: # @foo
.Ltmp12:
.cfi_startproc
# BB#0:
pushl %ebx
.Ltmp13:
.cfi_def_cfa_offset 8
pushl %edi
.Ltmp14:
.cfi_def_cfa_offset 12
pushl %esi
.Ltmp15:
.cfi_def_cfa_offset 16
subl $88, %esp
.Ltmp16:
.cfi_def_cfa_offset 104
.Ltmp17:
.cfi_offset %esi, -16
.Ltmp18:
.cfi_offset %edi, -12
.Ltmp19:
.cfi_offset %ebx, -8
pxor %xmm0, %xmm0
movl 112(%esp), %eax...
2016 Aug 05
2
A thought to improve IPRA
...t; ## BB#0: ## %entry
> pushq %rbp
> Ltmp9:
> .cfi_def_cfa_offset 16
> Ltmp10:
> .cfi_offset %rbp, -16
> movq %rsp, %rbp
> Ltmp11:
> .cfi_def_cfa_register %rbp
> pushq %rsi
> pushq %rcx
> Ltmp12:
> .cfi_offset %rcx, -32
> Ltmp13:
> .cfi_offset %rsi, -24
> movl %edi, %eax
> movl $-1, %edi
> popq %rcx
> popq %rsi
> popq %rbp
> jmp _opts_IdEqual ## TAILCALL
> .cfi_endproc
>
> Here before tailcall due to odl values are returned back result is generated wrong.
> I am also con...
2016 Aug 16
2
A thought to improve IPRA
...# %entry
>> pushq %rbp
>> Ltmp9:
>> .cfi_def_cfa_offset 16
>> Ltmp10:
>> .cfi_offset %rbp, -16
>> movq %rsp, %rbp
>> Ltmp11:
>> .cfi_def_cfa_register %rbp
>> pushq %rsi
>> pushq %rcx
>> Ltmp12:
>> .cfi_offset %rcx, -32
>> Ltmp13:
>> .cfi_offset %rsi, -24
>> movl %edi, %eax
>> movl $-1, %edi
>> popq %rcx
>> popq %rsi
>> popq %rbp
>> jmp _opts_IdEqual ## TAILCALL
>> .cfi_endproc
>>
>> Here before tailcall due to odl values are returned back result is
>&...
2016 Jul 29
2
A thought to improve IPRA
----- Original Message -----
> From: "vivek pandya" <vivekvpandya at gmail.com>
> To: "Hal Finkel" <hfinkel at anl.gov>
> Cc: "llvm-dev" <llvm-dev at lists.llvm.org>, "Quentin Colombet"
> <qcolombet at apple.com>, "Mehdi Amini" <mehdi.amini at apple.com>
> Sent: Friday, July 29, 2016 5:02:44 AM
>
2016 Jul 29
0
A thought to improve IPRA
On Fri, Jul 29, 2016 at 9:01 AM, Hal Finkel <hfinkel at anl.gov> wrote:
> ----- Original Message -----
> > From: "vivek pandya" <vivekvpandya at gmail.com>
> > To: "Mehdi Amini" <mehdi.amini at apple.com>
> > Cc: "llvm-dev" <llvm-dev at lists.llvm.org>, "Hal Finkel" <hfinkel at anl.gov>,
> "Quentin