| Index: src/x64/assembler-x64.cc
|
| diff --git a/src/x64/assembler-x64.cc b/src/x64/assembler-x64.cc
|
| index d7e458972f309b6256a6bf253b148e0c49543976..06a575734c473ff3164eeb3377e5fdde0e77409d 100644
|
| --- a/src/x64/assembler-x64.cc
|
| +++ b/src/x64/assembler-x64.cc
|
| @@ -866,7 +866,6 @@ void Assembler::bsfq(Register dst, const Operand& src) {
|
|
|
|
|
| void Assembler::call(Label* L) {
|
| - positions_recorder()->WriteRecordedPositions();
|
| EnsureSpace ensure_space(this);
|
| // 1110 1000 #32-bit disp.
|
| emit(0xE8);
|
| @@ -888,7 +887,6 @@ void Assembler::call(Label* L) {
|
|
|
| void Assembler::call(Address entry, RelocInfo::Mode rmode) {
|
| DCHECK(RelocInfo::IsRuntimeEntry(rmode));
|
| - positions_recorder()->WriteRecordedPositions();
|
| EnsureSpace ensure_space(this);
|
| // 1110 1000 #32-bit disp.
|
| emit(0xE8);
|
| @@ -899,7 +897,6 @@ void Assembler::call(Address entry, RelocInfo::Mode rmode) {
|
| void Assembler::call(Handle<Code> target,
|
| RelocInfo::Mode rmode,
|
| TypeFeedbackId ast_id) {
|
| - positions_recorder()->WriteRecordedPositions();
|
| EnsureSpace ensure_space(this);
|
| // 1110 1000 #32-bit disp.
|
| emit(0xE8);
|
| @@ -908,7 +905,6 @@ void Assembler::call(Handle<Code> target,
|
|
|
|
|
| void Assembler::call(Register adr) {
|
| - positions_recorder()->WriteRecordedPositions();
|
| EnsureSpace ensure_space(this);
|
| // Opcode: FF /2 r64.
|
| emit_optional_rex_32(adr);
|
| @@ -918,7 +914,6 @@ void Assembler::call(Register adr) {
|
|
|
|
|
| void Assembler::call(const Operand& op) {
|
| - positions_recorder()->WriteRecordedPositions();
|
| EnsureSpace ensure_space(this);
|
| // Opcode: FF /2 m64.
|
| emit_optional_rex_32(op);
|
| @@ -932,7 +927,6 @@ void Assembler::call(const Operand& op) {
|
| // same Code object. Should not be used when generating new code (use labels),
|
| // but only when patching existing code.
|
| void Assembler::call(Address target) {
|
| - positions_recorder()->WriteRecordedPositions();
|
| EnsureSpace ensure_space(this);
|
| // 1110 1000 #32-bit disp.
|
| emit(0xE8);
|
|
|