Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 160117
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T10:58:41+00:00 2026-05-11T10:58:41+00:00

I am new to assembly language. It seems that gcc doesn’t have _bittestandset function

  • 0

I am new to assembly language. It seems that gcc doesn’t have _bittestandset function in intrin.h like MSVC does, so I implemented a new one. This one works fine in linux, but it goes wrong with mingw in winVista machine, the code is:

inline unsigned char _bittestandset(unsigned long * a, unsigned long b) {     __asm__ ( 'bts %1, %[b]'           : '=g'(*a)           : [b]'Ir'(b), 'g'(*a) );     return 0; }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T10:58:42+00:00Added an answer on May 11, 2026 at 10:58 am

    Could you give some further explanation what’s not working? Maybe a simple example of the usage or so. It’s hard to guess what’s wrong with the code..

    One thing that looks cheesy so far: You execute a bit-test opcode but ignore the result. The bit that you test (and set) ends up in the carry flag after the opcode.

    If you want to get the result you need an additional instruction to get the carry flag into some other output register. (SBB EAX, EAX or something like that).

    Otherwise – if you don’t need the result – it’s much cheaper to replace the BTS instruction with three simpler assembler opcodes:

    Something along these lines:

      ; bit-index in cl   ; Value in ebx   ; eax used as a temporary (trashed)   mov eax, 1   shl eax, cl   or  ebx, eax 

    Since I don’t have mingw with your exact version running a assembly-output of a simple testcase could give us some clue what’s going wrong.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am relatively new to assembly language. I have found so many tutorials that
I'm new to assembly language, and would like to learn. I have Vista-64 (will
%windir%\Microsoft.NET\assembly\ is the new GAC . Does it mean now we have to manage
I have new problem. I'm working with strings in assembly language and I want
does anyone have any resources for learning assembly language on x86? I'm trying to
We have developed a .NET Assembly that stores language translation information and it needs
It seems that most new programming languages that have appeared in the last 20
I am new to assembly language. I have written a program for taking an
I am new to x86 assembly language, I have a signed integer saved in
I'm new here same as I'm new with assembly. I hope that you can

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.