Displaying 2 results from an estimated 2 matches for "machinemode".
Did you mean:
machinecode
2018 Sep 20
3
Comparing Clang and GCC: only clang stores updated value in each iteration.
... # -- End function
.type a, at object # @a
.data
.globl a
.p2align 2
a:
.long 1 # 0x1
.size a, 4
gcc -O3 -march=z13:
.file "testfun.i"
.machinemode zarch
.machine "z13"
.text
.align 8
.globl b
.type b, @function
b:
.LFB0:
.cfi_startproc
larl %r1,a
lt %r1,0(%r1)
je .L1
larl %r1,a
mvhi 0(%r1),0
.L1:
br %r14
.cfi...
2018 Sep 21
2
Comparing Clang and GCC: only clang stores updated value in each iteration.
...;> .data
>> .globl a
>> .p2align 2
>> a:
>> .long 1 # 0x1
>> .size a, 4
>>
>>
>> gcc -O3 -march=z13:
>>
>> .file "testfun.i"
>> .machinemode zarch
>> .machine "z13"
>> .text
>> .align 8
>> .globl b
>> .type b, @function
>> b:
>> .LFB0:
>> .cfi_startproc
>> larl %r1,a
>> lt %r1,0(%r1)
>> je ....