search for: unsuffix

Displaying 8 results from an estimated 8 matches for "unsuffix".

Did you mean: upnsuffix
2013 Jul 13
2
[LLVMdev] [PATCH] x86: disambiguate unqualified btr, bts
...aves similarly. For the memory, immediate form without the suffix, it seems like the options are 1. If the immediate value is in [0,15], use btsl/btrl since it saves a byte, otherwise error; 2. Follow both gas's behavior and the Solaris assembler manual Jim Grosbach linked to which stated that unsuffixed instructions are assumed to be long and alias bts to btsl and btr to btrl; or 3. Always error even when there is no ambiguity. I have no opinion on which option LLVM should follow. -- Stephen Checkoway -------------- next part -------------- A non-text attachment was scrubbed... Name: imm.c...
2013 Jul 14
0
[LLVMdev] [PATCH] x86: disambiguate unqualified btr, bts
...> For the memory, immediate form without the suffix, it seems like the options are > 1. If the immediate value is in [0,15], use btsl/btrl since it saves a byte, otherwise error; > 2. Follow both gas's behavior and the Solaris assembler manual Jim Grosbach linked to which stated that unsuffixed instructions are assumed to be long and alias bts to btsl and btr to btrl; or > 3. Always error even when there is no ambiguity. > > I have no opinion on which option LLVM should follow. Okay, so while digging through the history of the linux.git tree, I found this. The patch _replaces...
2020 Mar 06
1
Re: [PATCH nbdkit 2/4] server: Add nbdkit_shutdown() call.
...ugin.c > + > +static int64_t > +shutdown_get_size (void *handle) > +{ > + return INT64_C (1024*1024); This looks fishy. POSIX says that: https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdint.h.html#tag_13_48 "The argument in any instance of these macros shall be an unsuffixed integer constant with a value that does not exceed the limits for the corresponding type. ...For example, if uint_least64_t is a name for the type unsigned long long, then UINT64_C(0x123) might expand to the integer constant 0x123ULL." In fact, in glibc's /usr/include/stdint.h, we ha...
2013 Jul 11
0
[LLVMdev] [PATCH] x86: disambiguate unqualified btr, bts
On Wed, Jul 10, 2013 at 7:15 PM, Jim Grosbach <grosbach at apple.com> wrote: > > On Jul 10, 2013, at 6:54 PM, Stephen Checkoway <s at pahtak.org> wrote: > > On Jul 10, 2013, at 17:44, Jim Grosbach <grosbach at apple.com> wrote: > > The length specifier is, as I understand it, required when the instruction > references memory but is optional (and inferred from
2019 Jan 20
0
[klibc:master] Build and install kinit and sh without ".shared" suffix
...the same name regardless of whether they use a static or shared library. The two exceptions to this are kinit and sh, which are installed with the suffix ".shared" if they use a shared library. Build these binaries in subdirectories, so that the static and shared versions have the same (unsuffixed) name. Signed-off-by: Ben Hutchings <ben at decadent.org.uk> --- usr/dash/Kbuild | 19 +++++++++++-------- usr/kinit/Kbuild | 33 ++++++++++++++++++--------------- 2 files changed, 29 insertions(+), 23 deletions(-) diff --git a/usr/dash/Kbuild b/usr/dash/Kbuild index 8682c0d..c0f8dcb 1...
2013 Jul 11
2
[LLVMdev] [PATCH] x86: disambiguate unqualified btr, bts
On Jul 10, 2013, at 6:54 PM, Stephen Checkoway <s at pahtak.org> wrote: > On Jul 10, 2013, at 17:44, Jim Grosbach <grosbach at apple.com> wrote: >> The length specifier is, as I understand it, required when the instruction references memory but is optional (and inferred from the registers) for the register variants. >> >> The best reference I know of for the
2018 Jul 20
0
Wine release 3.13
...ml: Add IHTMLPerformance::navigation property implementation. mshtml: Add IHTMLPerformance::timing property implementation. mshtml: Expose window.performance property to scripts. mshtml: Use DWORD for event id argument in node-specific event handlers. winegcc: Check also for unsuffixed lib/ dir in get_lib_dir. wine/vulkan.h: Properly declare enum values that use value attribute in spec. Jactry Zeng (2): riched20/tests: Rewrite tests for ITextServices_TxGetNaturalSize(). riched20: Some cleanup for CHARFORMAT convertor functions. Jason Edmeades (4): cmd:...
2020 Mar 04
7
[PATCH nbdkit 0/4] server: Add nbdkit_shutdown() call and two new filters.
This adds a new nbdkit_shutdown() API whereby plugins and filters can request that the server shuts down (asynchronously) during the serving phase. Two new filters are added, one of which depends on this feature and the other not needing it but being somewhat related. Rich.