@@ -501,7 +501,7 @@ void Assembler::target_at_put(int pos, int target_pos, bool is_internal,
501501 *reinterpret_cast <uintptr_t *>(buffer_start_ + pos) = imm;
502502 return ;
503503 }
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 " ,
505505 reinterpret_cast <Instr*>(buffer_start_ + pos), pos,
506506 reinterpret_cast <Instr*>(buffer_start_ + target_pos),
507507 target_pos);
@@ -597,7 +597,7 @@ void Assembler::print(const Label* L) {
597597
598598void Assembler::bind_to (Label* L, int pos) {
599599 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);
601601 int trampoline_pos = kInvalidSlotPos ;
602602 bool is_internal = false ;
603603 if (L->is_linked () && !trampoline_emitted_) {
@@ -666,7 +666,7 @@ void Assembler::next(Label* L, bool is_internal) {
666666 L->Unuse ();
667667 } else {
668668 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,
670670 reinterpret_cast <Instr*>(buffer_start_ + link), link);
671671 L->link_to (link);
672672 }
@@ -740,7 +740,7 @@ int32_t Assembler::get_trampoline_entry(int32_t pos) {
740740
741741uintptr_t Assembler::jump_address (Label* L) {
742742 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,
744744 reinterpret_cast <Instr*>(buffer_start_ + pc_offset ()),
745745 pc_offset ());
746746 if (L->is_bound ()) {
@@ -771,7 +771,7 @@ uintptr_t Assembler::jump_address(Label* L) {
771771int32_t Assembler::branch_long_offset (Label* L) {
772772 intptr_t target_pos;
773773
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,
775775 reinterpret_cast <Instr*>(buffer_start_ + pc_offset ()),
776776 pc_offset ());
777777 if (L->is_bound ()) {
@@ -803,7 +803,7 @@ int32_t Assembler::branch_long_offset(Label* L) {
803803int32_t Assembler::branch_offset_helper (Label* L, OffsetSize bits) {
804804 int32_t target_pos;
805805
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,
807807 reinterpret_cast <Instr*>(buffer_start_ + pc_offset ()),
808808 pc_offset ());
809809 if (L->is_bound ()) {
@@ -835,7 +835,7 @@ int32_t Assembler::branch_offset_helper(Label* L, OffsetSize bits) {
835835
836836void Assembler::label_at_put (Label* L, int at_offset) {
837837 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,
839839 reinterpret_cast <Instr*>(buffer_start_ + at_offset), at_offset);
840840 if (L->is_bound ()) {
841841 target_pos = L->pos ();
@@ -1179,7 +1179,7 @@ void Assembler::li_ptr(Register rd, int64_t imm) {
11791179}
11801180
11811181void 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);
11831183 lui (rd, (imm + (1LL << 47 ) + (1LL << 35 ) + (1LL << 23 ) + (1LL << 11 )) >>
11841184 48 ); // Bits 63:48
11851185 addiw (rd, rd,
@@ -1236,7 +1236,7 @@ void Assembler::li_ptr(Register rd, int32_t imm) {
12361236}
12371237
12381238void 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);
12401240 int32_t high_20 = ((imm + 0x800 ) >> 12 ); // bits31:12
12411241 int32_t low_12 = imm & 0xfff ; // bits11:0
12421242 lui (rd, high_20);
@@ -1335,7 +1335,7 @@ int Assembler::RelocateInternalReference(RelocInfo::Mode rmode, Address pc,
13351335 DCHECK (RelocInfo::IsInternalReferenceEncoded (rmode));
13361336 if (IsLui (instr)) {
13371337 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);
13391339 set_target_value_at (pc, target_address);
13401340#if V8_TARGET_ARCH_RISCV64
13411341 return 8 ; // Number of instructions patched.
0 commit comments