[Code Reorganization] remove trailing whitespace to pass jcheck test

Mon, 06 Nov 2017 16:51:47 +0800

author
aoqi
date
Mon, 06 Nov 2017 16:51:47 +0800
changeset 7997
6cbff0651f1a
parent 7996
2102a5402a07
child 7998
367db633bbea

[Code Reorganization] remove trailing whitespace to pass jcheck test

src/cpu/mips/vm/macroAssembler_mips.cpp file | annotate | diff | comparison | revisions
src/cpu/mips/vm/sharedRuntime_mips_64.cpp file | annotate | diff | comparison | revisions
src/cpu/mips/vm/templateTable_mips_64.cpp file | annotate | diff | comparison | revisions
src/os_cpu/linux_mips/vm/linux_mips.s file | annotate | diff | comparison | revisions
src/share/vm/runtime/sharedRuntime.cpp file | annotate | diff | comparison | revisions
src/share/vm/runtime/sharedRuntime.hpp file | annotate | diff | comparison | revisions
     1.1 --- a/src/cpu/mips/vm/macroAssembler_mips.cpp	Fri Oct 20 13:15:58 2017 +0800
     1.2 +++ b/src/cpu/mips/vm/macroAssembler_mips.cpp	Mon Nov 06 16:51:47 2017 +0800
     1.3 @@ -1198,7 +1198,7 @@
     1.4    get_thread(java_thread);
     1.5  #else
     1.6  #ifdef ASSERT
     1.7 -  { 
     1.8 +  {
     1.9      Label L;
    1.10      get_thread(AT);
    1.11      beq(java_thread, AT, L);
     2.1 --- a/src/cpu/mips/vm/sharedRuntime_mips_64.cpp	Fri Oct 20 13:15:58 2017 +0800
     2.2 +++ b/src/cpu/mips/vm/sharedRuntime_mips_64.cpp	Mon Nov 06 16:51:47 2017 +0800
     2.3 @@ -1801,7 +1801,7 @@
     2.4    // in a platform independent way. So after the call we switch to
     2.5    // ebp relative addressing.
     2.6    //FIXME actually , the fp_adjustment may not be the right, because andr(sp,sp,at)may change
     2.7 -  //the SP 
     2.8 +  //the SP
     2.9    int fp_adjustment = stack_size - 2*wordSize;
    2.10  
    2.11  #ifdef COMPILER2
     3.1 --- a/src/cpu/mips/vm/templateTable_mips_64.cpp	Fri Oct 20 13:15:58 2017 +0800
     3.2 +++ b/src/cpu/mips/vm/templateTable_mips_64.cpp	Mon Nov 06 16:51:47 2017 +0800
     3.3 @@ -225,7 +225,7 @@
     3.4  void TemplateTable::dconst(int value) {
     3.5    transition(vtos, dtos);
     3.6    switch( value ) {
     3.7 -    case 0:  __ dmtc1(R0, FSF);  
     3.8 +    case 0:  __ dmtc1(R0, FSF);
     3.9               return;
    3.10      case 1:  __ daddiu(AT, R0, 1);
    3.11               __ dmtc1(AT, FSF);
    3.12 @@ -244,7 +244,7 @@
    3.13    transition(vtos, itos);
    3.14    __ lb(FSR, BCP, 1);
    3.15    __ lbu(AT, BCP, 2);
    3.16 -  __ dsll(FSR, FSR, 8); 
    3.17 +  __ dsll(FSR, FSR, 8);
    3.18    __ orr(FSR, FSR, AT);
    3.19  }
    3.20  
    3.21 @@ -1849,7 +1849,7 @@
    3.22    if (!is_wide) {
    3.23      __ lb(A7, BCP, 1);
    3.24      __ lbu(AT, BCP, 2);
    3.25 -    __ dsll(A7, A7, 8); 
    3.26 +    __ dsll(A7, A7, 8);
    3.27      __ orr(A7, A7, AT);
    3.28    } else {
    3.29      __ get_4_byte_integer_at_bcp(A7, AT, 1);
     4.1 --- a/src/os_cpu/linux_mips/vm/linux_mips.s	Fri Oct 20 13:15:58 2017 +0800
     4.2 +++ b/src/os_cpu/linux_mips/vm/linux_mips.s	Mon Nov 06 16:51:47 2017 +0800
     4.3 @@ -1,4 +1,4 @@
     4.4 -# 
     4.5 +#
     4.6  # Copyright (c) 2004, 2013, Oracle and/or its affiliates. All rights reserved.
     4.7  # Copyright (c) 2015, 2016, Loongson Technology. All rights reserved.
     4.8  # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     5.1 --- a/src/share/vm/runtime/sharedRuntime.cpp	Fri Oct 20 13:15:58 2017 +0800
     5.2 +++ b/src/share/vm/runtime/sharedRuntime.cpp	Mon Nov 06 16:51:47 2017 +0800
     5.3 @@ -227,28 +227,28 @@
     5.4    }
     5.5  }
     5.6  #endif // PRODUCT
     5.7 -void SharedRuntime::print_long(long long i) { 
     5.8 -		tty->print("%llx", i);
     5.9 +void SharedRuntime::print_long(long long i) {
    5.10 +  tty->print("%llx", i);
    5.11  }
    5.12  
    5.13 -void SharedRuntime::print_int(int i) { 
    5.14 -        tty->print("%x", i);
    5.15 +void SharedRuntime::print_int(int i) {
    5.16 +  tty->print("%x", i);
    5.17  }
    5.18  
    5.19 -void SharedRuntime::print_float(float f) { 
    5.20 -        tty->print("ld:%ld ", f);
    5.21 -        tty->print("lx:%lx ", f);
    5.22 -        tty->print("lf:%g ", f);
    5.23 +void SharedRuntime::print_float(float f) {
    5.24 +  tty->print("ld:%ld ", f);
    5.25 +  tty->print("lx:%lx ", f);
    5.26 +  tty->print("lf:%g ", f);
    5.27  }
    5.28  
    5.29 -void SharedRuntime::print_double(double f) { 
    5.30 -        tty->print("%ld ", f);
    5.31 -        tty->print("0x%lx ", f);
    5.32 -        tty->print("%g ", f);
    5.33 +void SharedRuntime::print_double(double f) {
    5.34 +  tty->print("%ld ", f);
    5.35 +  tty->print("0x%lx ", f);
    5.36 +  tty->print("%g ", f);
    5.37  }
    5.38  
    5.39  void SharedRuntime::print_str(char *str) {
    5.40 -        tty->print("%s", str);
    5.41 +  tty->print("%s", str);
    5.42  }
    5.43  
    5.44  void SharedRuntime::print_reg_with_pc(char *reg_name, long i, long pc) {
     6.1 --- a/src/share/vm/runtime/sharedRuntime.hpp	Fri Oct 20 13:15:58 2017 +0800
     6.2 +++ b/src/share/vm/runtime/sharedRuntime.hpp	Mon Nov 06 16:51:47 2017 +0800
     6.3 @@ -587,13 +587,13 @@
     6.4    static void print_ic_miss_histogram();
     6.5  
     6.6  #endif // PRODUCT
     6.7 -  static void print_long(long long i); 
     6.8 -  static void print_int(int i); 
     6.9 -  static void print_float(float i); 
    6.10 -  static void print_double(double i); 
    6.11 +  static void print_long(long long i);
    6.12 +  static void print_int(int i);
    6.13 +  static void print_float(float i);
    6.14 +  static void print_double(double i);
    6.15    static void print_str(char *str);
    6.16  
    6.17 -  static void print_reg_with_pc(char *reg_name, long i, long pc); 
    6.18 +  static void print_reg_with_pc(char *reg_name, long i, long pc);
    6.19  };
    6.20  
    6.21  

mercurial