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 8194231
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T04:45:07+00:00 2026-06-07T04:45:07+00:00

I saw a sentence in a paper Transforming branches into data dependencies to avoid

  • 0

I saw a sentence in a paper “Transforming branches into data dependencies to avoid mispredicted branches.” (Page 6)

I wonder how to change the code from branches into data dependencies.

This is the paper: http://www.adms-conf.org/p1-SCHLEGEL.pdf

Update: How to transform branches in the binary search?

  • 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. Editorial Team
    Editorial Team
    2026-06-07T04:45:09+00:00Added an answer on June 7, 2026 at 4:45 am

    The basic idea (I would presume) would be to change something like:

    if (a>b)
        return "A is greater than B";
    else
        return "A is less than or equal to B";
    

    into:

    static char const *strings[] = {
        "A is less than or equal to B", 
        "A is greater than B"
    };
    
    return strings[a>b];
    

    For branches in a binary search, let’s consider the basic idea of the "normal" binary search, which typically looks (at least vaguely) like this:

    while (left < right) {
        middle = (left + right)/2;
        if (search_for < array[middle])
            right = middle;
        else
            left = middle;
    }
    

    We could get rid of most of the branching here in pretty much the same way:

    size_t positions[] = {left, right};
    
    while (left < right) {
        size_t middle = (left + right)/2;
    
        positions[search_for >= array[middle]] = middle;
    }
    

    [For general purpose code use left + (right-left)/2 instead of (left+right)/2.]

    We do still have the branching for the loop itself, of course, but we’re generally a lot less concerned about that–that branch is extremely amenable to prediction, so even if we did eliminate it, doing so would gain little as a rule.

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

Sidebar

Related Questions

Again, I saw this sentence: A .classpath file snippet that can be included in
I've been examining one of my c# books and I just saw a sentence
I saw the docs on the Instagram developers page. http://instagram.com/developer/endpoints/ But I want to
I saw some code when studying the open source project: here . But I
I saw the following fragment of C code in a text book and it's
I saw some html that displays the results of a PHP code just by
Saw the code here . Can any one tell me what it means? Action
I saw this sentence not only in one place: A transaction should be kept
Saw this example on the jQuery examples page for Ajax: var xmlDocument = [create
Saw piece of code in book: T& operator[](int i) throw(RangeError) { if(i >= 0

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.