@@ -501,7 +501,7 @@ void Assembler::target_at_put(int pos, int target_pos, bool is_internal,
501
501
*reinterpret_cast <uintptr_t *>(buffer_start_ + pos) = imm;
502
502
return ;
503
503
}
504
- DEBUG_PRINTF (" target_at_put : %p (%d) to %p (%d)\n " ,
504
+ DEBUG_PRINTF (" \t target_at_put : %p (%d) to %p (%d)\n " ,
505
505
reinterpret_cast <Instr*>(buffer_start_ + pos), pos,
506
506
reinterpret_cast <Instr*>(buffer_start_ + target_pos),
507
507
target_pos);
@@ -597,7 +597,7 @@ void Assembler::print(const Label* L) {
597
597
598
598
void Assembler::bind_to (Label* L, int pos) {
599
599
DCHECK (0 <= pos && pos <= pc_offset ()); // Must have valid binding position.
600
- DEBUG_PRINTF (" binding %d to label %p\n " , pos, L);
600
+ DEBUG_PRINTF (" \t binding %d to label %p\n " , pos, L);
601
601
int trampoline_pos = kInvalidSlotPos ;
602
602
bool is_internal = false ;
603
603
if (L->is_linked () && !trampoline_emitted_) {
@@ -666,7 +666,7 @@ void Assembler::next(Label* L, bool is_internal) {
666
666
L->Unuse ();
667
667
} else {
668
668
DCHECK_GE (link , 0 );
669
- DEBUG_PRINTF (" next : %p to %p (%d)\n " , L,
669
+ DEBUG_PRINTF (" \t next : %p to %p (%d)\n " , L,
670
670
reinterpret_cast <Instr*>(buffer_start_ + link ), link );
671
671
L->link_to (link );
672
672
}
@@ -740,7 +740,7 @@ int32_t Assembler::get_trampoline_entry(int32_t pos) {
740
740
741
741
uintptr_t Assembler::jump_address (Label* L) {
742
742
intptr_t target_pos;
743
- DEBUG_PRINTF (" jump_address : %p to %p (%d)\n " , L,
743
+ DEBUG_PRINTF (" \t jump_address : %p to %p (%d)\n " , L,
744
744
reinterpret_cast <Instr*>(buffer_start_ + pc_offset ()),
745
745
pc_offset ());
746
746
if (L->is_bound ()) {
@@ -771,7 +771,7 @@ uintptr_t Assembler::jump_address(Label* L) {
771
771
int32_t Assembler::branch_long_offset (Label* L) {
772
772
intptr_t target_pos;
773
773
774
- DEBUG_PRINTF (" branch_long_offset : %p to %p (%d)\n " , L,
774
+ DEBUG_PRINTF (" \t branch_long_offset : %p to %p (%d)\n " , L,
775
775
reinterpret_cast <Instr*>(buffer_start_ + pc_offset ()),
776
776
pc_offset ());
777
777
if (L->is_bound ()) {
@@ -803,7 +803,7 @@ int32_t Assembler::branch_long_offset(Label* L) {
803
803
int32_t Assembler::branch_offset_helper (Label* L, OffsetSize bits) {
804
804
int32_t target_pos;
805
805
806
- DEBUG_PRINTF (" branch_offset_helper : %p to %p (%d)\n " , L,
806
+ DEBUG_PRINTF (" \t branch_offset_helper : %p to %p (%d)\n " , L,
807
807
reinterpret_cast <Instr*>(buffer_start_ + pc_offset ()),
808
808
pc_offset ());
809
809
if (L->is_bound ()) {
@@ -835,7 +835,7 @@ int32_t Assembler::branch_offset_helper(Label* L, OffsetSize bits) {
835
835
836
836
void Assembler::label_at_put (Label* L, int at_offset) {
837
837
int target_pos;
838
- DEBUG_PRINTF (" label_at_put : %p @ %p (%d)\n " , L,
838
+ DEBUG_PRINTF (" \t label_at_put : %p @ %p (%d)\n " , L,
839
839
reinterpret_cast <Instr*>(buffer_start_ + at_offset), at_offset);
840
840
if (L->is_bound ()) {
841
841
target_pos = L->pos ();
@@ -1179,7 +1179,7 @@ void Assembler::li_ptr(Register rd, int64_t imm) {
1179
1179
}
1180
1180
1181
1181
void Assembler::li_constant (Register rd, int64_t imm) {
1182
- DEBUG_PRINTF (" li_constant (%d, %lx <%ld>)\n " , ToNumber (rd), imm, imm);
1182
+ DEBUG_PRINTF (" \t li_constant (%d, %lx <%ld>)\n " , ToNumber (rd), imm, imm);
1183
1183
lui (rd, (imm + (1LL << 47 ) + (1LL << 35 ) + (1LL << 23 ) + (1LL << 11 )) >>
1184
1184
48 ); // Bits 63:48
1185
1185
addiw (rd, rd,
@@ -1236,7 +1236,7 @@ void Assembler::li_ptr(Register rd, int32_t imm) {
1236
1236
}
1237
1237
1238
1238
void Assembler::li_constant (Register rd, int32_t imm) {
1239
- DEBUG_PRINTF (" li_constant (%d, %x <%d>)\n " , ToNumber (rd), imm, imm);
1239
+ DEBUG_PRINTF (" \t li_constant (%d, %x <%d>)\n " , ToNumber (rd), imm, imm);
1240
1240
int32_t high_20 = ((imm + 0x800 ) >> 12 ); // bits31:12
1241
1241
int32_t low_12 = imm & 0xfff ; // bits11:0
1242
1242
lui (rd, high_20);
@@ -1335,7 +1335,7 @@ int Assembler::RelocateInternalReference(RelocInfo::Mode rmode, Address pc,
1335
1335
DCHECK (RelocInfo::IsInternalReferenceEncoded (rmode));
1336
1336
if (IsLui (instr)) {
1337
1337
uintptr_t target_address = target_address_at (pc) + pc_delta;
1338
- DEBUG_PRINTF (" target_address 0x%" PRIxPTR " \n " , target_address);
1338
+ DEBUG_PRINTF (" \t target_address 0x%" PRIxPTR " \n " , target_address);
1339
1339
set_target_value_at (pc, target_address);
1340
1340
#if V8_TARGET_ARCH_RISCV64
1341
1341
return 8 ; // Number of instructions patched.
0 commit comments