Searched refs:newInstruction (Results 1 – 4 of 4) sorted by relevance
103 std::unique_ptr<Instruction> newInstruction( in ReplaceMultiplyByPowerOf2() local108 (*inst) = (*inst).InsertBefore(std::move(newInstruction)); in ReplaceMultiplyByPowerOf2()
374 uint32_t newInstruction = (instruction & 0xFF000000); in setDisplacementInArmBranch() local378 newInstruction = 0xFA000000; in setDisplacementInArmBranch()391 newInstruction = 0xEB000000; in setDisplacementInArmBranch()393 newInstruction |= (h << 24) | ((displacement >> 2) & 0x00FFFFFF); in setDisplacementInArmBranch()394 return newInstruction; in setDisplacementInArmBranch()432 uint32_t newInstruction = (instruction & 0xD000F800); in setDisplacementInThumbBranch() local435 newInstruction = 0xD000F000; // Use bl in setDisplacementInThumbBranch()437 newInstruction = 0xC000F000; // Use blx in setDisplacementInThumbBranch()458 newInstruction |= (nextDisp << 16) | firstDisp; in setDisplacementInThumbBranch()459 return newInstruction; in setDisplacementInThumbBranch()