Index: src/mips64/assembler-mips64.cc |
diff --git a/src/mips64/assembler-mips64.cc b/src/mips64/assembler-mips64.cc |
index ae849b7d09ed66669c4be0aa51c59b2edcb82111..bd4e3e225fbee830479f418fe50b641d9c1b9e6e 100644 |
--- a/src/mips64/assembler-mips64.cc |
+++ b/src/mips64/assembler-mips64.cc |
@@ -1252,7 +1252,6 @@ void Assembler::b(int16_t offset) { |
void Assembler::bal(int16_t offset) { |
- positions_recorder()->WriteRecordedPositions(); |
bgezal(zero_reg, offset); |
} |
@@ -1265,7 +1264,6 @@ void Assembler::bc(int32_t offset) { |
void Assembler::balc(int32_t offset) { |
DCHECK(kArchVariant == kMips64r6); |
- positions_recorder()->WriteRecordedPositions(); |
GenInstrImmediate(BALC, offset, CompactBranchType::COMPACT_BRANCH); |
} |
@@ -1312,7 +1310,6 @@ void Assembler::bgec(Register rs, Register rt, int16_t offset) { |
void Assembler::bgezal(Register rs, int16_t offset) { |
DCHECK(kArchVariant != kMips64r6 || rs.is(zero_reg)); |
BlockTrampolinePoolScope block_trampoline_pool(this); |
- positions_recorder()->WriteRecordedPositions(); |
GenInstrImmediate(REGIMM, rs, BGEZAL, offset); |
BlockTrampolinePoolFor(1); // For associated delay slot. |
} |
@@ -1383,7 +1380,6 @@ void Assembler::bltz(Register rs, int16_t offset) { |
void Assembler::bltzal(Register rs, int16_t offset) { |
DCHECK(kArchVariant != kMips64r6 || rs.is(zero_reg)); |
BlockTrampolinePoolScope block_trampoline_pool(this); |
- positions_recorder()->WriteRecordedPositions(); |
GenInstrImmediate(REGIMM, rs, BLTZAL, offset); |
BlockTrampolinePoolFor(1); // For associated delay slot. |
} |
@@ -1419,7 +1415,6 @@ void Assembler::bnvc(Register rs, Register rt, int16_t offset) { |
void Assembler::blezalc(Register rt, int16_t offset) { |
DCHECK(kArchVariant == kMips64r6); |
DCHECK(!(rt.is(zero_reg))); |
- positions_recorder()->WriteRecordedPositions(); |
GenInstrImmediate(BLEZ, zero_reg, rt, offset, |
CompactBranchType::COMPACT_BRANCH); |
} |
@@ -1428,7 +1423,6 @@ void Assembler::blezalc(Register rt, int16_t offset) { |
void Assembler::bgezalc(Register rt, int16_t offset) { |
DCHECK(kArchVariant == kMips64r6); |
DCHECK(!(rt.is(zero_reg))); |
- positions_recorder()->WriteRecordedPositions(); |
GenInstrImmediate(BLEZ, rt, rt, offset, CompactBranchType::COMPACT_BRANCH); |
} |
@@ -1437,7 +1431,6 @@ void Assembler::bgezall(Register rs, int16_t offset) { |
DCHECK(kArchVariant != kMips64r6); |
DCHECK(!(rs.is(zero_reg))); |
BlockTrampolinePoolScope block_trampoline_pool(this); |
- positions_recorder()->WriteRecordedPositions(); |
GenInstrImmediate(REGIMM, rs, BGEZALL, offset); |
BlockTrampolinePoolFor(1); // For associated delay slot. |
} |
@@ -1446,7 +1439,6 @@ void Assembler::bgezall(Register rs, int16_t offset) { |
void Assembler::bltzalc(Register rt, int16_t offset) { |
DCHECK(kArchVariant == kMips64r6); |
DCHECK(!(rt.is(zero_reg))); |
- positions_recorder()->WriteRecordedPositions(); |
GenInstrImmediate(BGTZ, rt, rt, offset, CompactBranchType::COMPACT_BRANCH); |
} |
@@ -1454,7 +1446,6 @@ void Assembler::bltzalc(Register rt, int16_t offset) { |
void Assembler::bgtzalc(Register rt, int16_t offset) { |
DCHECK(kArchVariant == kMips64r6); |
DCHECK(!(rt.is(zero_reg))); |
- positions_recorder()->WriteRecordedPositions(); |
GenInstrImmediate(BGTZ, zero_reg, rt, offset, |
CompactBranchType::COMPACT_BRANCH); |
} |
@@ -1463,7 +1454,6 @@ void Assembler::bgtzalc(Register rt, int16_t offset) { |
void Assembler::beqzalc(Register rt, int16_t offset) { |
DCHECK(kArchVariant == kMips64r6); |
DCHECK(!(rt.is(zero_reg))); |
- positions_recorder()->WriteRecordedPositions(); |
GenInstrImmediate(ADDI, zero_reg, rt, offset, |
CompactBranchType::COMPACT_BRANCH); |
} |
@@ -1472,7 +1462,6 @@ void Assembler::beqzalc(Register rt, int16_t offset) { |
void Assembler::bnezalc(Register rt, int16_t offset) { |
DCHECK(kArchVariant == kMips64r6); |
DCHECK(!(rt.is(zero_reg))); |
- positions_recorder()->WriteRecordedPositions(); |
GenInstrImmediate(DADDI, zero_reg, rt, offset, |
CompactBranchType::COMPACT_BRANCH); |
} |
@@ -1538,7 +1527,6 @@ void Assembler::jal(Label* target) { |
uint64_t imm = jump_offset(target); |
if (target->is_bound()) { |
BlockTrampolinePoolScope block_trampoline_pool(this); |
- positions_recorder()->WriteRecordedPositions(); |
GenInstrJump(static_cast<Opcode>(kJalRawMark), |
static_cast<uint32_t>(imm >> 2) & kImm26Mask); |
BlockTrampolinePoolFor(1); // For associated delay slot. |
@@ -1551,9 +1539,6 @@ void Assembler::jal(Label* target) { |
void Assembler::jr(Register rs) { |
if (kArchVariant != kMips64r6) { |
BlockTrampolinePoolScope block_trampoline_pool(this); |
- if (rs.is(ra)) { |
- positions_recorder()->WriteRecordedPositions(); |
- } |
GenInstrRegister(SPECIAL, rs, zero_reg, zero_reg, 0, JR); |
BlockTrampolinePoolFor(1); // For associated delay slot. |
} else { |
@@ -1564,7 +1549,6 @@ void Assembler::jr(Register rs) { |
void Assembler::jal(int64_t target) { |
BlockTrampolinePoolScope block_trampoline_pool(this); |
- positions_recorder()->WriteRecordedPositions(); |
GenInstrJump(JAL, static_cast<uint32_t>(target >> 2) & kImm26Mask); |
BlockTrampolinePoolFor(1); // For associated delay slot. |
} |
@@ -1573,7 +1557,6 @@ void Assembler::jal(int64_t target) { |
void Assembler::jalr(Register rs, Register rd) { |
DCHECK(rs.code() != rd.code()); |
BlockTrampolinePoolScope block_trampoline_pool(this); |
- positions_recorder()->WriteRecordedPositions(); |
GenInstrRegister(SPECIAL, rs, zero_reg, rd, 0, JALR); |
BlockTrampolinePoolFor(1); // For associated delay slot. |
} |
@@ -1587,7 +1570,6 @@ void Assembler::jic(Register rt, int16_t offset) { |
void Assembler::jialc(Register rt, int16_t offset) { |
DCHECK(kArchVariant == kMips64r6); |
- positions_recorder()->WriteRecordedPositions(); |
GenInstrImmediate(POP76, zero_reg, rt, offset); |
} |