Fixing alloy analysis warnings.
This commit is contained in:
parent
50587974b5
commit
a02f5c3e7a
|
@ -1242,7 +1242,7 @@ static uint8_t __lvsr_table[17][16] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
uint32_t IntCode_LOAD_VECTOR_SHL(IntCodeState& ics, const IntCode* i) {
|
uint32_t IntCode_LOAD_VECTOR_SHL(IntCodeState& ics, const IntCode* i) {
|
||||||
int8_t sh = ics.rf[i->src1_reg].i8 & 0x1F;
|
int8_t sh = MIN(16, ics.rf[i->src1_reg].i8);
|
||||||
vec128_t& dest = ics.rf[i->dest_reg].v128;
|
vec128_t& dest = ics.rf[i->dest_reg].v128;
|
||||||
for (int n = 0; n < 16; n++) {
|
for (int n = 0; n < 16; n++) {
|
||||||
dest.b16[n] = __lvsl_table[sh][n];
|
dest.b16[n] = __lvsl_table[sh][n];
|
||||||
|
@ -1254,7 +1254,7 @@ int Translate_LOAD_VECTOR_SHL(TranslationContext& ctx, Instr* i) {
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t IntCode_LOAD_VECTOR_SHR(IntCodeState& ics, const IntCode* i) {
|
uint32_t IntCode_LOAD_VECTOR_SHR(IntCodeState& ics, const IntCode* i) {
|
||||||
int8_t sh = ics.rf[i->src1_reg].i8 & 0x1F;
|
int8_t sh = MIN(16, ics.rf[i->src1_reg].i8);
|
||||||
vec128_t& dest = ics.rf[i->dest_reg].v128;
|
vec128_t& dest = ics.rf[i->dest_reg].v128;
|
||||||
for (int n = 0; n < 16; n++) {
|
for (int n = 0; n < 16; n++) {
|
||||||
dest.b16[n] = __lvsr_table[sh][n];
|
dest.b16[n] = __lvsr_table[sh][n];
|
||||||
|
|
|
@ -631,7 +631,7 @@ int InstrEmit_vcmpxxfp_(PPCHIRBuilder& f, InstrData& i, vcmpxxfp_op cmpop, uint3
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
XEASSERTALWAYS();
|
XEASSERTALWAYS();
|
||||||
break;
|
return 1;
|
||||||
}
|
}
|
||||||
if (rc) {
|
if (rc) {
|
||||||
f.UpdateCR6(v);
|
f.UpdateCR6(v);
|
||||||
|
|
|
@ -674,7 +674,7 @@ XEEMITTER(andisx, 0x74000000, D )(PPCHIRBuilder& f, InstrData& i) {
|
||||||
// RA <- (RS) & (i32.0 || UI || i16.0)
|
// RA <- (RS) & (i32.0 || UI || i16.0)
|
||||||
Value* ra = f.And(
|
Value* ra = f.And(
|
||||||
f.LoadGPR(i.D.RT),
|
f.LoadGPR(i.D.RT),
|
||||||
f.LoadConstant((uint64_t)(i.D.DS << 16)));
|
f.LoadConstant((uint64_t(i.D.DS) << 16)));
|
||||||
f.UpdateCR(0, ra);
|
f.UpdateCR(0, ra);
|
||||||
f.StoreGPR(i.D.RA, ra);
|
f.StoreGPR(i.D.RA, ra);
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -839,7 +839,7 @@ XEEMITTER(oris, 0x64000000, D )(PPCHIRBuilder& f, InstrData& i) {
|
||||||
// RA <- (RS) | (i32.0 || UI || i16.0)
|
// RA <- (RS) | (i32.0 || UI || i16.0)
|
||||||
Value* ra = f.Or(
|
Value* ra = f.Or(
|
||||||
f.LoadGPR(i.D.RT),
|
f.LoadGPR(i.D.RT),
|
||||||
f.LoadConstant((uint64_t)(i.D.DS << 16)));
|
f.LoadConstant((uint64_t(i.D.DS) << 16)));
|
||||||
f.StoreGPR(i.D.RA, ra);
|
f.StoreGPR(i.D.RA, ra);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -869,7 +869,7 @@ XEEMITTER(xoris, 0x6C000000, D )(PPCHIRBuilder& f, InstrData& i) {
|
||||||
// RA <- (RS) XOR (i32.0 || UI || i16.0)
|
// RA <- (RS) XOR (i32.0 || UI || i16.0)
|
||||||
Value* ra = f.Xor(
|
Value* ra = f.Xor(
|
||||||
f.LoadGPR(i.D.RT),
|
f.LoadGPR(i.D.RT),
|
||||||
f.LoadConstant((uint64_t)(i.D.DS << 16)));
|
f.LoadConstant((uint64_t(i.D.DS) << 16)));
|
||||||
f.StoreGPR(i.D.RA, ra);
|
f.StoreGPR(i.D.RA, ra);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -149,7 +149,8 @@ int PPCHIRBuilder::Emit(FunctionInfo* symbol_info, bool with_debug_info) {
|
||||||
|
|
||||||
void PPCHIRBuilder::AnnotateLabel(uint64_t address, Label* label) {
|
void PPCHIRBuilder::AnnotateLabel(uint64_t address, Label* label) {
|
||||||
char name_buffer[13];
|
char name_buffer[13];
|
||||||
xesnprintfa(name_buffer, XECOUNT(name_buffer), "loc_%.8X", address);
|
xesnprintfa(name_buffer, XECOUNT(name_buffer),
|
||||||
|
"loc_%.8X", (uint32_t)address);
|
||||||
label->name = (char*)arena_->Alloc(sizeof(name_buffer));
|
label->name = (char*)arena_->Alloc(sizeof(name_buffer));
|
||||||
xe_copy_struct(label->name, name_buffer, sizeof(name_buffer));
|
xe_copy_struct(label->name, name_buffer, sizeof(name_buffer));
|
||||||
}
|
}
|
||||||
|
|
|
@ -307,7 +307,7 @@ void HIRBuilder::InsertLabel(Label* label, Instr* prev_instr) {
|
||||||
label->prev = label->next = NULL;
|
label->prev = label->next = NULL;
|
||||||
|
|
||||||
Instr* prev_next = prev_instr->next;
|
Instr* prev_next = prev_instr->next;
|
||||||
Instr* old_prev_tail = prev_block->instr_tail;
|
Instr* old_prev_tail = prev_block ? prev_block->instr_tail : NULL;
|
||||||
if (prev_instr->next) {
|
if (prev_instr->next) {
|
||||||
Instr* prev_last = prev_instr->next->prev;
|
Instr* prev_last = prev_instr->next->prev;
|
||||||
prev_last->next = NULL;
|
prev_last->next = NULL;
|
||||||
|
|
|
@ -20,10 +20,10 @@ namespace alloy {
|
||||||
|
|
||||||
|
|
||||||
Mutex* alloy::AllocMutex(uint32_t spin_count) {
|
Mutex* alloy::AllocMutex(uint32_t spin_count) {
|
||||||
Mutex* mutex = (Mutex*)calloc(1, sizeof(Mutex));
|
Mutex* mutex = (Mutex*)xe_calloc(sizeof(Mutex));
|
||||||
|
|
||||||
if (spin_count) {
|
if (spin_count) {
|
||||||
InitializeCriticalSectionAndSpinCount(&mutex->value, spin_count);
|
XEIGNORE(InitializeCriticalSectionAndSpinCount(&mutex->value, spin_count));
|
||||||
} else {
|
} else {
|
||||||
InitializeCriticalSection(&mutex->value);
|
InitializeCriticalSection(&mutex->value);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue