Re: [PATCH v6 1/9] Makefile: Prepare for using macros for inline asm

2018-07-24 Thread Nadav Amit
at 4:14 AM, Ingo Molnar wrote: > > * Masahiro Yamada wrote: > >> 2018-06-23 2:22 GMT+09:00 Nadav Amit : >>> Using macros for inline assembly improves both readability and >>> compilation decisions that are distorted by big assembly blocks that use >>> alternative sections. Compile macros.S and

Re: [PATCH v6 1/9] Makefile: Prepare for using macros for inline asm

2018-07-24 Thread Ingo Molnar
* Masahiro Yamada wrote: > 2018-06-23 2:22 GMT+09:00 Nadav Amit : > > Using macros for inline assembly improves both readability and > > compilation decisions that are distorted by big assembly blocks that use > > alternative sections. Compile macros.S and use it to assemble all C > > files. Cu

Re: [PATCH v6 1/9] Makefile: Prepare for using macros for inline asm

2018-07-17 Thread Masahiro Yamada
2018-06-23 2:22 GMT+09:00 Nadav Amit : > Using macros for inline assembly improves both readability and > compilation decisions that are distorted by big assembly blocks that use > alternative sections. Compile macros.S and use it to assemble all C > files. Currently, only x86 will use it. > > Cc:

[PATCH v6 1/9] Makefile: Prepare for using macros for inline asm

2018-06-22 Thread Nadav Amit
Using macros for inline assembly improves both readability and compilation decisions that are distorted by big assembly blocks that use alternative sections. Compile macros.S and use it to assemble all C files. Currently, only x86 will use it. Cc: Sam Ravnborg Cc: Masahiro Yamada Cc: Michal Mare