#4662 TieredCompilation is turned off.

Wed, 29 Mar 2017 09:41:51 +0800

author
aoqi
date
Wed, 29 Mar 2017 09:41:51 +0800
changeset 392
4bfb40d1e17a
parent 391
910b77f150c4
child 393
671cd2b861b4

#4662 TieredCompilation is turned off.
TieredCompilation is not supported yet.

make/linux/Makefile file | annotate | diff | comparison | revisions
src/cpu/mips/vm/vm_version_mips.cpp file | annotate | diff | comparison | revisions
     1.1 --- a/make/linux/Makefile	Fri Mar 31 12:43:02 2017 -0400
     1.2 +++ b/make/linux/Makefile	Wed Mar 29 09:41:51 2017 +0800
     1.3 @@ -70,6 +70,10 @@
     1.4  ifeq ($(ARCH),ppc64)
     1.5    FORCE_TIERED=0
     1.6  endif
     1.7 +# C1 is not ported on mips64, so we cannot build a tiered VM:
     1.8 +ifeq ($(ARCH),mips64)
     1.9 +  FORCE_TIERED=0
    1.10 +endif
    1.11  
    1.12  ifdef LP64
    1.13    ifeq ("$(filter $(LP64_ARCH),$(BUILDARCH))","")
     2.1 --- a/src/cpu/mips/vm/vm_version_mips.cpp	Fri Mar 31 12:43:02 2017 -0400
     2.2 +++ b/src/cpu/mips/vm/vm_version_mips.cpp	Wed Mar 29 09:41:51 2017 +0800
     2.3 @@ -124,6 +124,12 @@
     2.4      FLAG_SET_DEFAULT(Use3A2000, 0);
     2.5    }
     2.6  
     2.7 +  if (TieredCompilation) {
     2.8 +    if (!FLAG_IS_DEFAULT(TieredCompilation))
     2.9 +      warning("TieredCompilation not supported");
    2.10 +    FLAG_SET_DEFAULT(TieredCompilation, false);
    2.11 +  }
    2.12 +
    2.13    char buf[256];
    2.14    jio_snprintf(buf, sizeof(buf), "%s%s%s%s%s%s%s%s%s",
    2.15                (has_l2_cache() ? ", has_l2_cache" : ""),

mercurial