In getFieldSignExtended(int,int,int), I have if-else statements inside if-else statements. I have int result as a global variable of this function. Depending on where program control flows, I want this function to return result2.
At first I had one return statement at the bottom of this function, that didn't work and I found out that scope in C is not like in Java. Thus I return 1; at the bottom of the function, and I have 8 return result2 statements in the if-else blocks.
Is there a better way to organize this function? I don't want to nest if-else blocks and I want as few return statements as possible.
This is homework, but it was already graded and I'm just correcting a few errors that came up.
getFieldSignExtended(int,int,int) gets a bitfield from value from hi to lo inclusive (hi and lo can be == to eachother, etc.) and sign extends it (based on testing the sign bit). All of this code deals with 2's complement.
If you find any other big C convention mistakes, I'll be glad to correct them.
Thanks in advance.
int getFieldSignExtended (int value, int hi, int lo) {
unsigned int result = 0;
int result2 = 0;
unsigned int mask1 = 0xffffffff;
int numberOfOnes = 0;
if((hi == 31) && (lo == 0)) {
result2 = value;
return result2;
}
if((lo == 31) && (hi == 0)) {
result2 = value;
return result2;
}
else if(hi < lo) {
// Compute size of mask (number of ones).
numberOfOnes = lo-hi+1;
mask1 = mask1 << (32-numberOfOnes);
mask1 = mask1 >> (32-numberOfOnes);
mask1 = mask1 << hi;
result = value & mask1;
result = result >> hi;
if(result & (0x1 << (numberOfOnes-1))){
// if negative
int maskMinus = (0x1 << numberOfOnes);
maskMinus = maskMinus -1;
maskMinus = ~maskMinus;
result2 = maskMinus | result;
}
} else if(lo < hi) {
// The number of ones are at the 'far right' side of a 32 bit number.
numberOfOnes = hi-lo+1;
mask1 = mask1 >> (32-numberOfOnes);
mask1 = mask1 << lo;
result = value & mask1;
result = result >> lo;
if(result & (0x1 << (numberOfOnes-1))){
//if negative
int maskMinus = (0x1 << numberOfOnes);
maskMinus = maskMinus -1;
maskMinus = ~maskMinus;
result2 = maskMinus | result;
return result2;
}
}else{
// hi == lo
unsigned int mask2 = 0x1;
// Move mask2 left.
mask2 = mask2 << hi;
result = mask2 & value;
result = result >> hi;
if(result == 0x1){
result2 = 0xffffffff;
return result2;
}
else{
result2 = 0x0;
return result2;
}
}
return 1;
}

;instead of{. – Eregrith Sep 11 '12 at 12:11getFieldSignExtendedfunction, and at least remove all the debugging printf cruft? Did you even take a good look at the code yourself? The expression((lo == 31) && (hi == 0))is tested twice with exactly the same statements in the if-clause. ThenumberOfOnesvariable is initialized to exactly the same value at different locations in the function. These are only a few examples of things you could have fixed easily, and let other users focus on your real problem instead of having to clean up first – Bart Sep 11 '12 at 12:26