search for: memtrack

Displaying 6 results from an estimated 6 matches for "memtrack".

Did you mean: memtrace
2018 Sep 10
2
OpenJDK8 failed to work after compiled by LLVM 8 for X86
...────────────────────────────────────────────────────────────────[ registers ]──── $rax   : 0x0 $rbx   : 0x0 $rcx   : 0x7ffff7315eb0      →  0x00007ffff6ae30a0  → <NativeCallStack::print_on(outputStream*)+0> xor edx, edx $rdx   : 0x0 $rsp   : 0x7fffffff9328      →  0x00007ffff6a76822  → <MemTracker::init_tracking_level()+178> mov edi, ebx $rbp   : 0x7fffffff93c0      →  0x00007fffffff94f0  → 0x00007fffffff9510  →  0x0000000000000002 $rsi   : 0x0 $rdi   : 0x7ffff7315e70      →  0x00007ffff7315eb0  → 0x00007ffff6ae30a0  → <NativeCallStack::print_on(outputStream*)+0> xor edx, edx $...
2018 Sep 11
3
OpenJDK8 failed to work after compiled by LLVM 8 for X86
...cible. 在 2018年09月11日 00:59, Dimitry Andric 写道: > Hi Leslie, > > This is likely the same problem as was reported in https://bugs.freebsd.org/225054#c8, and fixed by the following patch: > > https://svnweb.freebsd.org/ports/head/java/openjdk8/files/patch-hotspot_src_share_vm_services_memTracker.cpp?view=markup&pathrev=459368 > > Can you please try that out, and see if it fixes it for you too? > > -Dimitry > >> On 10 Sep 2018, at 18:20, Leslie Zhai via llvm-dev <llvm-dev at lists.llvm.org> wrote: >> >> Hi all, >> >> OpenJDK8 jdk8u-de...
2018 Sep 12
2
OpenJDK8 failed to work after compiled by LLVM 8 for X86
...dric 写道: >>> Hi Leslie, >>> >>> This is likely the same problem as was reported in https://bugs.freebsd.org/225054#c8, and fixed by the following patch: >>> >>> https://svnweb.freebsd.org/ports/head/java/openjdk8/files/patch-hotspot_src_share_vm_services_memTracker.cpp?view=markup&pathrev=459368 >>> >>> Can you please try that out, and see if it fixes it for you too? >>> >>> -Dimitry >>> >>>> On 10 Sep 2018, at 18:20, Leslie Zhai via llvm-dev <llvm-dev at lists.llvm.org> wrote: >>>&...
2018 Jul 20
3
error: ordered comparison between pointer and zero ('address' (aka 'unsigned char *') and 'int')
...42,7 +342,7 @@ (UseCompressedOops && (Universe::narrow_oop_base() != NULL) && Universe::narrow_oop_use_implicit_null_checks()) ? lcm(os::vm_page_size(), alignment) : 0) { - if (base() > 0) { + if (base() != NULL) { MemTracker::record_virtual_memory_type((address)base(), mtJavaHeap); } 在 2018年07月19日 19:37, Thomas Schatzl 写道: > Hi, > > On Thu, 2018-07-19 at 18:56 +0800, Leslie Zhai wrote: >> Hi HotSpot and LLVM developers, >> >> I am building OpenJDK8[1] with LLVM toolchain[2] for mips...
2018 Jul 23
2
error: ordered comparison between pointer and zero ('address' (aka 'unsigned char *') and 'int')
...niverse::narrow_oop_base() >> != >> NULL) && >> Universe::narrow_oop_use_implicit_null_checks()) ? >> lcm(os::vm_page_size(), alignment) : 0) { >> - if (base() > 0) { >> + if (base() != NULL) { >> MemTracker::record_virtual_memory_type((address)base(), >> mtJavaHeap); >> } >> >> >> >> >> 在 2018年07月19日 19:37, Thomas Schatzl 写道: >>> Hi, >>> >>> On Thu, 2018-07-19 at 18:56 +0800, Leslie Zhai wrote: >>>> Hi HotSpot and...
2018 Jul 19
2
error: ordered comparison between pointer and zero ('address' (aka 'unsigned char *') and 'int')
Hi HotSpot and LLVM developers, I am building OpenJDK8[1] with LLVM toolchain[2] for mips64el, it failed to build: /home/loongson/jdk8-mips/hotspot/src/share/vm/opto/lcm.cpp:52:35: error: ordered comparison between pointer and zero ('address' (aka 'unsigned char *') and 'int') if (Universe::narrow_oop_base() > 0) { // Implies UseCompressedOops.