The branch-prediction tag has no wiki summary.
0
votes
2answers
35 views
Ruby Benchmarking Accuracy - Branch Prediction at its finest?
So this morning I decided to play around with Benchmarking for the first time.
I was curious about the speed different between code with "do-end" block formatting vs. "{ }" formatting.
So I stored ...
4
votes
3answers
73 views
Realistic examples of optimization through branch removal
According to Intel, branch removal is one of the most effective ways of optimizing C code for use in tight loops. However, the examples in the linked page only cover loop unrolling and moving ...
0
votes
1answer
33 views
Branch predictor based on probability
Given some assembly code ,it is known that 90% of branches should be taken.
I have no knowledge regarding branch conditions.And decision about take or not take for each branch should be done only ...
3
votes
1answer
40 views
How can I dynamically hint a branch target to an x64 CPU?
I'd like to know how to write efficient jump tables for x64 processors, either in C, C++ or assembly. The input is known in advance, but impossible to predict algorithmically. Assuming I can look as ...
3
votes
3answers
94 views
compare chars for equality without branching
On a previous question where I wanted to optimize this function:
static
lvh_distance levenshtein_distance( const std::string & s1, const std::string & s2 )
{
const size_t len1 = ...
1
vote
0answers
44 views
Two-bit branch prediction should give higher percentage
I have small program that is supposed to calculate percentage of successfull predicition of a 2-bit branch predictor. I have it all done but my output isn't what I have expected, the percantage stops ...
0
votes
1answer
78 views
Inline assembly with “jmp 0f” or “b 0f” at the beginning
updated
Changed the 2nd line of assembly to the mnemonic actually being used (mflr) and added more info at the bottom.
I ran across some code (using gcc) resembling the following (paraphrased):
...
9
votes
3answers
396 views
Micro-optimizing a c++ comparison function
I have a Compare() function that looks like this:
inline bool Compare(bool greater, int p1, int p2) {
if (greater) return p1>=p2;
else return p1<=p2;
}
I decided to optimize to avoid ...
0
votes
0answers
35 views
Calculating the # of delay slots
I have a homework problem and I'm a little confused with how to get started.
We're given:
Pipeline depth: 25
Issue width: 2
Branches execute in stage: 17
Branch predictor accuracy: 92%
Branches as a ...
5
votes
1answer
191 views
Can I use GCC's __builtin_expect() with ternary operator in C
The GCC manual only shows examples where __builtin_expect() is placed around the entire condition of an 'if' statement.
I also noticed that GCC does not complain if I use it, for example, with a ...
2
votes
1answer
143 views
What is the overhead of using Intel Last Branch Record?
Last Branch Record refers to a collection of register pairs (MSRs) that store the source and destination addresses related to recently executed branches. ...
1
vote
1answer
121 views
How do I perform an (almost-)branch-less binary search on arbitrary sorted data?
How do I perform an (almost-)branch-less binary search on arbitrary sorted arrays in a preferably portable fashion? (e.g. code that helps compilers generate the CMOV instruction would be great for ...
4
votes
2answers
191 views
Intel x86 0x2E/0x3E Prefix Branch Prediction actually used?
In the latest Intel software dev manual it describes two opcode prefixes:
Group 2 > Branch Hints
0x2E: Branch Not Taken
0x3E: Branch Taken
These allow for explicit branch prediction of ...
11
votes
2answers
494 views
Branch Prediction: Writing Code to Understand it; Getting Weird Results
I'm trying to get a good understanding of branch prediction by measuring the time to run loops with predictable branches vs. loops with random branches.
So I wrote a program that takes large arrays ...
2
votes
1answer
92 views
different branch prediction results in different processors
I would like to ask some things on branch prediction. I am completely aware of what it is and how do they work or their different types. My question is this: How does the processor that i will use ...
1
vote
0answers
139 views
Return stack buffer?
As I understood, Return Stack Buffer only supports 4 to 16 entries (from wiki: http://en.wikipedia.org/wiki/Branch_predictor#Prediction_of_function_returns) and is not pair of key-value(based on ...
3
votes
1answer
135 views
An additional conditional statement is making a program faster
After reading the Why is processing a sorted array faster than an unsorted array?, I added one additional test in the primary loop. It seems that this additional test is making the program faster.
...
0
votes
1answer
42 views
Reporting profile-guided compilation to the source code
In this question I will focus on Visual Studio 2012 and GCC 4.7
On the one hand, profile-guided compilation optimizes branch prediction by instrumenting the code at run-time, and then using this ...
6
votes
3answers
269 views
Branch-free implementation of f(x) := if x == 0 then 0 else (x * log(x))
I have this C function:
double f(int x)
{
if (x <= 0)
return 0.0;
else
return x * log(x);
}
which I am calling in a tight loop, and would like to get rid of the branch to ...
3
votes
1answer
196 views
sequence of branch taken or not-taken that reduces the branch misprediction rate
Increasing the size of a branch prediction table implies that the two branches in a program are less likely to share a common predictor. A single predictor predicting a single branch instruction is ...
0
votes
1answer
121 views
Can branch predictors predict perfectly when the number of loop iterations is not constant?
Would the following code incur a branch misprediction penalty on let say an Intel Core i7?
for(i = 0, count = *ptr; i < count; i++) {
// do something
}
count can be 0, 1, or 2.
0
votes
1answer
129 views
How to make this python script fast? (benchmarking related to branch prediction from a post from here)
From here - a branching prediction problem, I started to write the Python version of the program to check the runtime of the sorted/unsorted versions in Python.
I tried sorted first.
Here's the ...
4
votes
2answers
154 views
Is there a way to acces RTTI directly in c++ to improve branch prediction in virtual calls?
So I'm creating a library that will have a class someBase {}; which will be derived by downstream users in a number of classes.
class someBase {
public:
virtual void foo()=0;
};
What I also ...
2
votes
1answer
177 views
How large is the branch prediction buffer for a typical modern CPU?
The application that I'm dealing with has a large number of a if-statements with the characteristics that in any one execution, only one of the branches is executed 90% of the time.
Now, I can test ...
1
vote
2answers
303 views
Performance of branch prediction in a loop
Would there be any noticeable speed difference between these two snippets of code? Naively, I think the second snippet would be faster because branch instructions are encountered a lot less, but on ...
8
votes
4answers
582 views
How to deal with branch prediction when using a switch case in CPU emulation
I recently read the question here Why is processing a sorted array faster than an unsorted array? and found the answer to be absolutely fascinating and it has completely changed my outlook on ...
2
votes
1answer
96 views
How does the branch predictor know it has made a wrong guess?
My question comes out of Mystical's answer. As I have understood, you have a branch instruction, it can either go to another instruction, say like, 0x123344 or it can continue executing.
If a branch ...
10
votes
1answer
540 views
Can I measure branch-prediction failures on a modern Intel Core CPU with any commercial or open-source profiling tools, on Windows?
This question and its answer, which was recently tagged as an Epic Answer, has prompted me to wonder; Can I measure the performance of a running application in Windows in terms of its CPU branch ...
0
votes
1answer
251 views
gcc branch prediction
Here's my demo program:
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int cmp(const void *d1, const void *d2)
{
int a, b;
a = *(int const *) d1;
b = *(int ...
4664
votes
11answers
241k views
Why is processing a sorted array faster than an unsorted array?
Here is a piece of C++ code that shows some very peculiar performance. For some strange reason, sorting the data miraculously speeds up the code by almost 6x:
#include <algorithm>
#include ...
2
votes
2answers
308 views
Branch prediction - questions about target prediction and using the PC
So I understand the basic techniques that are used in branch prediction for pipelined processors - stuff like 2-bit saturated counters, two level adaptive predictors, etc.
Here are my questions:
...
0
votes
1answer
162 views
Branch Prediction - Global Share Implementation Explanation [closed]
I'm working on an assignment in my Computer Architecture class where we have to implement a branch prediction algorithm in C++ (for the Alpha 21264 microprocessor architecture).
There is a solution ...
7
votes
4answers
853 views
C/C++ most efficient if statement evaluation
X is true nearly 99.9% of the time but I need to handle Y and Z as well. Although the body of the X condition is empty, I'm thinking it should be faster than potentially checking 2 other conditions Y ...
0
votes
1answer
293 views
Static Branch prediction for the ARM with __builtin_expect is not functional!!?
Im doing the optimization in the C code running in the Cortex-R4.
first of all I haven't seen any change in the assembly code output when I indicated the "__builtin_expect" in condition check.
It seem ...
10
votes
3answers
645 views
How prevalent is branch prediction on current CPUs?
Due to the huge impact on performance, I never wonder if my current day desktop CPU has branch prediction. Of course it does. But how about the various ARM offerings? Does iPhone or android phones ...
1
vote
4answers
370 views
Intel: serializing instructions and branch prediction
The Intel Architecture's Developer's Manual (Vol3A, Section 8-26), says:
The Pentium processor and more recent processor families use
branch-prediction techniques to improve performance by ...
15
votes
5answers
3k views
Portable branch prediction hints
Is there any portable way of doing branch prediction hints? Consider the following example:
if (unlikely_condition) {
/* ..A.. */
} else {
/* ..B.. */
}
Is this any different than ...


