Displaying 9 results from an estimated 9 matches for "bundle_lock".
2012 Dec 06
2
[LLVMdev] Proposal: Adding aligned instruction bundle support to MC
...e early comments on this.
> * .bundle_align_start -> .bundle_align_mode N ?
> * .bundle_align_end -> .bundle_align_mode 0 ?
The initial proposal does not cover .bundle_align{start|end} on
purpose, to keep things simple. We do plan to add them, eventually,
probably as attributes on .bundle_lock.
> * Add unit test showing .bundle_lock/unlock can be nested.
Yes.
>
> I like the way you modified the existing ARM tests to show how the existing
> instructions are predicated.
Thanks. When upstreaming, I should remember using the new FileCheck
feature I recently added (variable re...
2012 Dec 04
5
[LLVMdev] Proposal: Adding aligned instruction bundle support to MC
...rt for aligned
instruction bundles in MC (assembler) level. This support exists in
gas since binutils version 2.23
(http://sourceware.org/binutils/docs/as/Bundle-directives.html#Bundle-directives).
Succinctly, the initial proposal is to add the following directives:
.bundle_align_mode <num>
.bundle_lock
.bundle_unlock
With the following semantics:
When aligned instruction bundle mode ("bundling" in short) is enabled
(.bundle_align_mode was encountered with an argument > 0, which is the
power of 2 to which the bundle size is equal), single
instructions and groups of instructions betw...
2012 Dec 06
0
[LLVMdev] Proposal: Adding aligned instruction bundle support to MC
>>> groups of instructions between .bundle_lock and
>>> .bundle_unlock directives cannot cross a bundle boundary
>>
>> Can this be relaxed to: A data instruction cannot fall on a bundle
>> boundary. ?
>
> I'm not sure what you mean, can you elaborate?
Nevermind, what I suggested was not strict enough. I s...
2012 Dec 06
0
[LLVMdev] Proposal: Adding aligned instruction bundle support to MC
Maybe I'm jumping the gun, but some initial thoughts after browsing the MC
layer changes:
* .bundle_align_start -> .bundle_align_mode N ?
* .bundle_align_end -> .bundle_align_mode 0 ?
* Add unit test showing .bundle_lock/unlock can be nested.
I like the way you modified the existing ARM tests to show how the existing
instructions are predicated. Overall, I think the concept of Native Client
is well-documented and easy to follow. Has anyone done work to show that
assembly in this form can be disassembled to a mem...
2012 Dec 06
2
[LLVMdev] Proposal: Adding aligned instruction bundle support to MC
On Wed, Dec 5, 2012 at 6:01 PM, Greg Fitzgerald <garious at gmail.com> wrote:
>> But if you just want to see the code and the diff against upstream...
>
> If others are interested as well, here's all your changes via Github's
> "compare" feature:
>
> https://github.com/garious/llvm/compare/master...chromium
>
> Fascinating stuff guys. What a
2012 Dec 05
0
[LLVMdev] Proposal: Adding aligned instruction bundle support to MC
...(assembler) level. This support exists in
> gas since binutils version 2.23
> (
> http://sourceware.org/binutils/docs/as/Bundle-directives.html#Bundle-directives
> ).
> Succinctly, the initial proposal is to add the following directives:
>
> .bundle_align_mode <num>
> .bundle_lock
> .bundle_unlock
>
> With the following semantics:
>
> When aligned instruction bundle mode ("bundling" in short) is enabled
> (.bundle_align_mode was encountered with an argument > 0, which is the
> power of 2 to which the bundle size is equal), single
> instru...
2012 Dec 05
2
[LLVMdev] Proposal: Adding aligned instruction bundle support to MC
...is support exists in
>> gas since binutils version 2.23
>>
>> (http://sourceware.org/binutils/docs/as/Bundle-directives.html#Bundle-directives).
>> Succinctly, the initial proposal is to add the following directives:
>>
>> .bundle_align_mode <num>
>> .bundle_lock
>> .bundle_unlock
>>
>> With the following semantics:
>>
>> When aligned instruction bundle mode ("bundling" in short) is enabled
>> (.bundle_align_mode was encountered with an argument > 0, which is the
>> power of 2 to which the bundle size i...
2012 Dec 06
0
[LLVMdev] Proposal: Adding aligned instruction bundle support to MC
...dles in MC (assembler) level. This support exists in
> gas since binutils version 2.23
> (http://sourceware.org/binutils/docs/as/Bundle-directives.html#Bundle-directives).
> Succinctly, the initial proposal is to add the following directives:
>
> .bundle_align_mode <num>
> .bundle_lock
> .bundle_unlock
>
> With the following semantics:
>
> When aligned instruction bundle mode ("bundling" in short) is enabled
> (.bundle_align_mode was encountered with an argument > 0, which is the
> power of 2 to which the bundle size is equal), single
> inst...
2012 Dec 06
0
[LLVMdev] Proposal: Adding aligned instruction bundle support to MC
...nutils version 2.23
> >>
> >> (
> http://sourceware.org/binutils/docs/as/Bundle-directives.html#Bundle-directives
> ).
> >> Succinctly, the initial proposal is to add the following directives:
> >>
> >> .bundle_align_mode <num>
> >> .bundle_lock
> >> .bundle_unlock
> >>
> >> With the following semantics:
> >>
> >> When aligned instruction bundle mode ("bundling" in short) is enabled
> >> (.bundle_align_mode was encountered with an argument > 0, which is the
> >> po...