@@ -10518,7 +10518,7 @@ Lowerer::LowerStLoopBodyCount(IR::Instr* instr)
10518
10518
IR::MemRefOpnd *loopBodyCounterOpnd = IR::MemRefOpnd::New((BYTE*)(header) + Js::LoopHeader::GetOffsetOfProfiledLoopCounter(), TyUint32, this->m_func);
10519
10519
instr->SetDst(loopBodyCounterOpnd);
10520
10520
instr->ReplaceSrc1(instr->GetSrc1()->AsRegOpnd()->UseWithNewType(TyUint32, this->m_func));
10521
- IR::AutoReuseOpnd(loopBodyCounterOpnd, this->m_func);
10521
+ IR::AutoReuseOpnd autoReuse (loopBodyCounterOpnd, this->m_func);
10522
10522
m_lowererMD.ChangeToAssign(instr);
10523
10523
return;
10524
10524
}
@@ -21155,8 +21155,12 @@ Lowerer::GenerateArgOutForStackArgs(IR::Instr* callInstr, IR::Instr* stackArgsIn
21155
21155
21156
21156
21157
21157
#if defined(_M_IX86)
21158
- Assert(false);
21159
- #endif
21158
+ // We get a compilation error on x86 due to assigning a negative to a uint
21159
+ // TODO: don't even define this function on x86 - we Assert(false) anyway there.
21160
+ // Alternatively, don't define when INT_ARG_REG_COUNT - 4 < 0
21161
+ AssertOrFailFast(false);
21162
+ return nullptr;
21163
+ #else
21160
21164
21161
21165
Assert(stackArgsInstr->m_opcode == Js::OpCode::ArgOut_A_FromStackArgs);
21162
21166
Assert(callInstr->m_opcode == Js::OpCode::CallIDynamic);
@@ -21224,14 +21228,7 @@ Lowerer::GenerateArgOutForStackArgs(IR::Instr* callInstr, IR::Instr* stackArgsIn
21224
21228
21225
21229
// 4 to denote this is 4th register after this, callinfo & function object
21226
21230
// INT_ARG_REG_COUNT is the number of parameters passed in int regs
21227
- uint current_reg_pass =
21228
- #if defined(_M_IX86)
21229
- // We get a compilation error on x86 due to assiging a negative to a uint
21230
- // TODO: don't even define this function on x86 - we Assert(false) anyway there.
21231
- 0;
21232
- #else
21233
- INT_ARG_REG_COUNT - 4;
21234
- #endif
21231
+ uint current_reg_pass = INT_ARG_REG_COUNT - 4;
21235
21232
21236
21233
do
21237
21234
{
@@ -21277,6 +21274,7 @@ Lowerer::GenerateArgOutForStackArgs(IR::Instr* callInstr, IR::Instr* stackArgsIn
21277
21274
21278
21275
/*return the length which will be used for callInfo generations & stack allocation*/
21279
21276
return saveLenInstr->GetDst()->AsRegOpnd();
21277
+ #endif
21280
21278
}
21281
21279
21282
21280
void
0 commit comments