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

  • SEARCH
  • Home
  • 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

Ask A Question

Stats

  • Questions 123k
  • Answers 123k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer since that warning don't have a number you cannot suppress… May 12, 2026 at 12:56 am
  • Editorial Team
    Editorial Team added an answer You need ASP.NET MVC v1.0 Futures assembly: <%= Html.ActionLink<MyController>(x =>… May 12, 2026 at 12:56 am
  • Editorial Team
    Editorial Team added an answer A class to a varchar? I'm not aware of any… May 12, 2026 at 12:56 am

Related Questions

I am new to assembly language. It seems that gcc doesn't have _bittestandset function
Hello there and Merry Christmas !!! I am new to WPF and I am
I am a firm believer in the idea that one of the most important
Does anyone know if it possible to define the equivalent of a java custom
I am wondering if it is possible to extract the index position in a

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.