SageTV Community  

Go Back   SageTV Community > SageTV Development and Customizations > SageTV Github Development
Forum Rules FAQs Community Downloads Today's Posts Search

Notices

SageTV Github Development Discussion related to SageTV Open Source Development. Use this forum for development topics about the Open Source versions of SageTV, hosted on Github.

Reply
 
Thread Tools Search this Thread Display Modes
  #61  
Old 11-13-2018, 09:44 AM
wnjj wnjj is offline
Sage Icon
 
Join Date: Jan 2009
Posts: 1,514
Quote:
Originally Posted by routerunner View Post
Exactly, and that means that the assembly code doesn't need to change, but the Microsoft assembler (MASM) need to be instructed properly. Please look for conditional compilation part in the assembly source file and flags in the MASM part of your MSVC2017 project. Best hint is to look for existing conditionals and flags for the 32bit compiled version for Windows as starting point.

Huge and massive thanks to wnjj for doing this, it might help me to find time to complete the new generation of the TS decrypter + commercial skipper for the 64bit architectures (Linux/Windows) I've been working on

Cheers
Eddy
FFmpeg is compiled under MinGW which uses gcc/yasm so it’s not too different than Linux. All of the codecs compile OK and with asm disabled it all compiles. There’s just this one hang up. I found some “cmp” instructions in the code in the form of “cmp reg, constant” which the interwebs say is “Intel” syntax so I suspect Yasm needs to be told that. I’m just not sure why it’s only a 64-bit issue. 32-bit FFmpeg compiles fine.

Also, I am using VS2015 for the rest. I hijacked this thread but really should have started a new one. Oh well.

Thanks for the suggestions.
Reply With Quote
  #62  
Old 11-13-2018, 09:50 AM
routerunner's Avatar
routerunner routerunner is offline
Sage Icon
 
Join Date: May 2008
Location: Wiltshire, UK
Posts: 1,384
Quote:
Originally Posted by wnjj View Post
There’s just this one hang up. I found some “cmp” instructions in the code in the form of “cmp reg, constant” which the interwebs say is “Intel” syntax so I suspect Yasm needs to be told that. I’m just not sure why it’s only a 64-bit issue. 32-bit FFmpeg compiles fine.
It might a stupid question but is that "cmp" refers to the RXX (ie. RAX) which is 64 bit vs EXX (i.e EAX) which is the 32bit version of the same register? Is also the constant 64bit? You cannot have "cmp" with a mix of 32 and 64 bit reg/constant combo.

Eddy
__________________

Automatic Power Off | Squeezeslave | DVB-S Importer | DVB Decrypter & Card Client | Tuner Preroll


Every man is a damn fool for at least five minutes every day; wisdom consists in not exceeding the limit. ~ Elbert Hubbard
Reply With Quote
  #63  
Old 11-13-2018, 10:09 AM
wnjj wnjj is offline
Sage Icon
 
Join Date: Jan 2009
Posts: 1,514
Quote:
Originally Posted by routerunner View Post
It might a stupid question but is that "cmp" refers to the RXX (ie. RAX) which is 64 bit vs EXX (i.e EAX) which is the 32bit version of the same register? Is also the constant 64bit? You cannot have "cmp" with a mix of 32 and 64 bit reg/constant combo.

Eddy
It’s “cmp r4d, 0”. To be honest I don’t have a clue if that’s the one causing the error since the compiler puts the asm together into a temp file which it then conveniently deletes so I can’t check the line listed. This is just one of the cmp’s I found in the source using grep. There may be others. I assume the constant is coerced the the right size by the compiler?

If 64-bit compiles for Linux there must be a flag that tells yasm how to treat these sorts of things that MinGW is missing.
Reply With Quote
  #64  
Old 11-13-2018, 11:22 AM
wnjj wnjj is offline
Sage Icon
 
Join Date: Jan 2009
Posts: 1,514
Quote:
Originally Posted by wnjj View Post
It’s “cmp r4d, 0”. To be honest I don’t have a clue if that’s the one causing the error since the compiler puts the asm together into a temp file which it then conveniently deletes so I can’t check the line listed. This is just one of the cmp’s I found in the source using grep. There may be others. I assume the constant is coerced the the right size by the compiler?

If 64-bit compiles for Linux there must be a flag that tells yasm how to treat these sorts of things that MinGW is missing.
Ok, so by commenting out and iterating, I found the statement that it's choking on:

https://github.com/google/sagetv/blo...mplate.c#L2491
Code:
"cmp %2, %%"REG_a" \n\t"
"REG_a is defined as "rax" for x64 and "eax" x86 for in a header file.

Ok, now that I read up a little on this. "%2" is argument 2 to the function this inline asm is in. Here's the function:

Code:
static inline void RENAME(hcscale_fast)(SwsContext *c, int16_t *dst,
                                        long dstWidth, const uint8_t *src1,
                                        const uint8_t *src2, int srcW, int xInc)
Arg 2 is a 'long' which is 32-bits.

Then I found this section:
Code:
/* GCC 3.3 makes MPlayer crash on IA-32 machines when using "g" operand here,
which is needed to support GCC 4.0. */
#if ARCH_X86_64 && AV_GCC_VERSION_AT_LEAST(3,4)
            :: "m" (src1), "m" (dst), "g" (dstWidth), "m" (xInc_shr16), "m" (xInc_mask),
#else
            :: "m" (src1), "m" (dst), "m" (dstWidth), "m" (xInc_shr16), "m" (xInc_mask),
#endif
This is what must help the arguments to match the register sizes. When I forced it to take the 'else', it works. So this may be the GCC version Stuckless referred to. I'll try to figure out how to make this work for us. I'm not sure supporting IA-32 matters specifically for Sage so I could just comment it out, or add our own #define to override.

Last edited by wnjj; 11-13-2018 at 11:42 AM.
Reply With Quote
  #65  
Old 11-13-2018, 11:51 AM
routerunner's Avatar
routerunner routerunner is offline
Sage Icon
 
Join Date: May 2008
Location: Wiltshire, UK
Posts: 1,384
Quote:
Originally Posted by wnjj View Post
Ok, so by commenting out and iterating, I found the statement that it's choking on:

https://github.com/google/sagetv/blo...mplate.c#L2491
Code:
"cmp %2, %%"REG_a" \n\t"
"REG_a is defined as "rax" for x64 and "eax" x86 for in a header file.

Ok, now that I read up a little on this. "%2" is argument 2 to the function this inline asm is in. Here's the function:

Code:
static inline void RENAME(hcscale_fast)(SwsContext *c, int16_t *dst,
                                        long dstWidth, const uint8_t *src1,
                                        const uint8_t *src2, int srcW, int xInc)
Arg 2 is a 'long' which is 32-bits.

Then I found this section:
Code:
/* GCC 3.3 makes MPlayer crash on IA-32 machines when using "g" operand here,
which is needed to support GCC 4.0. */
#if ARCH_X86_64 && AV_GCC_VERSION_AT_LEAST(3,4)
            :: "m" (src1), "m" (dst), "g" (dstWidth), "m" (xInc_shr16), "m" (xInc_mask),
#else
            :: "m" (src1), "m" (dst), "m" (dstWidth), "m" (xInc_shr16), "m" (xInc_mask),
#endif
This is what must help the arguments to match the register sizes. When I forced it to take the 'else', it works. So this may be the GCC version Stuckless referred to. I'll try to figure out how to make this work for us. I'm not sure supporting IA-32 matters specifically for Sage so I could just comment it out, or add our own #define to override.
Yep, sounds like it, the #2 argument must be a long long, or you could change the register to be EAX regardless the architecture, chances are the maximum number does still fit the 32bit, I was using a very similar mechanism in the 90' when developing for 16/32 bits architectures E[AX].

I would also find out what the 'm' and 'g' means.

Eddy
__________________

Automatic Power Off | Squeezeslave | DVB-S Importer | DVB Decrypter & Card Client | Tuner Preroll


Every man is a damn fool for at least five minutes every day; wisdom consists in not exceeding the limit. ~ Elbert Hubbard
Reply With Quote
  #66  
Old 11-13-2018, 12:01 PM
wnjj wnjj is offline
Sage Icon
 
Join Date: Jan 2009
Posts: 1,514
Quote:
Originally Posted by routerunner View Post
Yep, sounds like it, the #2 argument must be a long long, or you could change the register to be EAX regardless the architecture, chances are the maximum number does still fit the 32bit, I was using a very similar mechanism in the 90' when developing for 16/32 bits architectures E[AX].

I would also find out what the 'm' and 'g' means.

Eddy
Changing to this makes it happy too (adding a cast to the arg):
Code:
#if ARCH_X86_64 && AV_GCC_VERSION_AT_LEAST(3,4)
            :: "m" (src1), "m" (dst), "g" ((long long) dstWidth), "m" (xInc_shr16), "m" (xInc_mask),
#else
            :: "m" (src1), "m" (dst), "m" (dstWidth), "m" (xInc_shr16), "m" (xInc_mask),
#endif
Here's some explanation of constraints (https://gcc.gnu.org/onlinedocs/gcc-4...le-Constraints) but it doesn't really help decide the correct answer. I think I'll stick with the cast since that's what I'd do in pure C when faced with a long value headed to a 64-bit destination.
Reply With Quote
  #67  
Old 11-13-2018, 12:08 PM
routerunner's Avatar
routerunner routerunner is offline
Sage Icon
 
Join Date: May 2008
Location: Wiltshire, UK
Posts: 1,384
Quote:
Originally Posted by wnjj View Post
Changing to this makes it happy too (adding a cast to the arg):
Code:
#if ARCH_X86_64 && AV_GCC_VERSION_AT_LEAST(3,4)
            :: "m" (src1), "m" (dst), "g" ((long long) dstWidth), "m" (xInc_shr16), "m" (xInc_mask),
#else
            :: "m" (src1), "m" (dst), "m" (dstWidth), "m" (xInc_shr16), "m" (xInc_mask),
#endif
Here's some explanation of constraints (https://gcc.gnu.org/onlinedocs/gcc-4...le-Constraints) but it doesn't really help decide the correct answer. I think I'll stick with the cast since that's what I'd do in pure C when faced with a long value headed to a 64-bit destination.
Very good. This sounds more a meta-assembly to me, in my days you would never include asm into C code that way, but things have changed in the last 25 years or so .

Cheers
Eddy
__________________

Automatic Power Off | Squeezeslave | DVB-S Importer | DVB Decrypter & Card Client | Tuner Preroll


Every man is a damn fool for at least five minutes every day; wisdom consists in not exceeding the limit. ~ Elbert Hubbard

Last edited by routerunner; 11-13-2018 at 12:11 PM.
Reply With Quote
  #68  
Old 11-13-2018, 12:19 PM
wnjj wnjj is offline
Sage Icon
 
Join Date: Jan 2009
Posts: 1,514
Quote:
Originally Posted by routerunner View Post
Very good. This sounds more a meta-assembly to me, in my days you would never include asm into C code that way, but things have changed in the last 25 years or so .

Cheers
Eddy
I hear ya. Nowadays everything is macroed, wrapped, embedded, etc. I have a tough time finding the actual code sometimes. I checked a newer version of this file and see they smartly changed that argument to an int so it automatically scales.

Last edited by wnjj; 11-13-2018 at 03:28 PM.
Reply With Quote
Reply

Tags
64bit, vs2017


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Linux 64bit MiniClient (issues with JTux on 64bit) stuckless SageTV Github Development 23 08-19-2015 12:54 PM
xp 64bit & HVR-2250 vikingisson Hardware Support 13 06-07-2010 10:05 PM
New Build with Sage7 - Win7 or no? 64bit or 32bit? ThePaladinTech SageTV Beta Test Software 6 05-22-2010 09:01 AM
Any advantage to using XP 64bit rdefino General Discussion 4 10-15-2006 01:47 AM
To 64bit or not to 64bit teknubic Hardware Support 19 07-25-2006 10:57 AM


All times are GMT -6. The time now is 12:47 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2023, vBulletin Solutions Inc.
Copyright 2003-2005 SageTV, LLC. All rights reserved.