[Valgrind-users] I found some text, need to confirm .. //答复: 答复: Some question about linker dlopen with valgrind

2019-04-23 Thread Wuweijia
details of leaked memory ==8142== ==8142== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) ==8142== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) -邮件原件- 发件人: Wuweijia [mailto:wuwei...@huawei.com] 发送时间: 2019年4月24日 10:56 收件人: John Reiser ; valgrind-users@lis

[Valgrind-users] 答复: Some question about linker dlopen with valgrind

2019-04-23 Thread Wuweijia
Is there any ways to make valgrind to support init_array to dlopen shared object; I think linker can make the right jump to the malloc function without valgirind, so the source is right; I want some ways to trace the valgirnd why redir module to malloc is failue; -邮件原件- 发件人: John

[Valgrind-users] 答复: Some question about linker dlopen with valgrind

2019-04-23 Thread Wuweijia
Android Q The libc source as below: __attribute__((constructor(1))) static void __libc_preinit() { // The linker has initialized its copy of the global stack_chk_guard, and filled in the main // thread's TLS slot with that value. Initialize the local global stack guard with its value. _

[Valgrind-users] Some question about linker dlopen with valgrind

2019-04-23 Thread Wuweijia
Hi On the Android OS, there is a question about the linker program with vaglrind memcheck; The 1st experiment, the libc module do call the dlopen function to load some shared object, before the linker call the pre_init functions ( before transfer the cpu control to the m

[Valgrind-users] 答复: [HELP] Android use LD to link the program but the valgrind can not report malloc leak;

2019-04-08 Thread Wuweijia
localhost:/system/bin # ./valgrind -v --undef-value-errors=no ./test ==30806== Memcheck, a memory error detector ==30806== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==30806== Using Valgrind-3.14.0-353a3587bb-20181007X and LibVEX; rerun with -h for copyright info ==30806== Co

[Valgrind-users] [HELP] Android use LD to link the program but the valgrind can not report malloc leak;

2019-04-07 Thread Wuweijia
Elf file type is DYN (Shared object file) Entry point 0x47000 There are 9 program headers, starting at offset 64 Program Headers: Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align PHDR 0x40 0x0040 0x0040 0x0001f8 0

[Valgrind-users] 答复: [HELP] there is some unknown aarch64 fp16 instruction for valgrind 3.13 3.14

2019-02-22 Thread Wuweijia
Hi: Is there any plan for the implementation of AArch64 8.2A new instruction? BR Owen 发件人: Wuweijia 发送时间: 2019年2月14日 11:50 收件人: 'valgrind-users@lists.sourceforge.net' 抄送: Fanbohao 主题: [HELP] there is some unknown aarch64 fp16 instruction for valgrind 3.13 3.14 The sourc

[Valgrind-users] [HELP] there is some unknown aarch64 fp16 instruction for valgrind 3.13 3.14

2019-02-13 Thread Wuweijia
The source as below: #include #include #include #include int process(){ __fp16* zcb_hal16 = (__fp16*)malloc(100); zcb_hal16[0] = 0; float16x8_t vblkA0, vblkB0, vblkC0; vblkC0 = vfmaq_n_f16(vblkC0, vblkB0, vblkA0[0]); __asm __volatile("fmla %[c0].8h, %[b0].8h, %[a0].h

[Valgrind-users] 转发: hi, there is a quesion about fp16 running in arm server

2018-08-28 Thread Wuweijia
Is there any guy help me to re-send to Mr. Andreas Pinkert ? I do not know his email address. 发件人: Zwinkau Andreas (CC-AD/ESW1) [mailto:andreas.zwin...@de.bosch.com] 发送时间: 2018年8月28日 22:41 收件人: Wuweijia 主题: Automatische Antwort: hi, there is a quesion about fp16 running in arm server Thank

[Valgrind-users] hi, there is a quesion about fp16 running in arm server

2018-08-28 Thread Wuweijia
Hi: I wrote the program running in the arm64 server. There is something difference with other program. I use fp16 to compute the result; The fp16 program can run successfully without valgrind. But with valgrind, it ran failed. There is call stack

[Valgrind-users] 答复: [help] I run the pocl , memcheck report this error (the red text), what it meant.

2018-04-19 Thread Wuweijia
I re-send the mail against , because the mail was delivered failed -邮件原件- 发件人: Wuweijia 发送时间: 2018年4月19日 13:26 收件人: 'Philippe Waroquiers' ; valgrind-users@lists.sourceforge.net 抄送: Fanbohao 主题: 答复: [Valgrind-users] [help] I run the pocl , memcheck report this error (th

[Valgrind-users] 答复: [help] I run the pocl , memcheck report this error (the red text), what it meant.

2018-04-18 Thread Wuweijia
How do I check it. -邮件原件- 发件人: Philippe Waroquiers [mailto:philippe.waroqui...@skynet.be] 发送时间: 2018年4月19日 12:36 收件人: Wuweijia ; valgrind-users@lists.sourceforge.net 抄送: Fanbohao 主题: Re: [Valgrind-users] [help] I run the pocl , memcheck report this error (the red text), what it meant

[Valgrind-users] [help] I run the pocl , memcheck report this error (the red text), what it meant.

2018-04-18 Thread Wuweijia
[2018-04-15 23:44:37] [HSN_RAW_AP][I] setup_opencl_hdrp : 175 cl_path_name = /system/bin/ pocl_llvm_build_program: Final options: -Dcl_khr_byte_addressable_store -Dcl_khr_global_int32_base_atomics -Dcl_khr_global_int32_extended_atomics -Dcl_khr_local_int32_base_atomics -Dcl_khr_local_int32_exten

[Valgrind-users] 答复: 答复: [HELP] I run the valgrind in the unreleased android version(arm32), I am confused by function stack. Can you show me why?

2018-04-12 Thread Wuweijia
Hi John You mean I need hide to the symbal operator new in libc.so ? So I trip the libc.so , so there is no symbals operator new in libc.so localhost:/system/bin # readelf -s ../lib64/libc++.so | grep Znam 696: 0005cd2044 FUNCWEAK DEFAULT 12 _ZnamRKSt9not

[Valgrind-users] 答复: 答复: [HELP] I run the valgrind in the unreleased android version(arm32), I am confused by function stack. Can you show me why?

2018-04-12 Thread Wuweijia
t const&) -邮件原件- 发件人: John Reiser [mailto:jrei...@bitwagon.com] 发送时间: 2018年4月12日 4:23 收件人: valgrind-users@lists.sourceforge.net 主题: Re: [Valgrind-users] 答复: [HELP] I run the valgrind in the unreleased android version(arm32), I am confused by function stack. Can you show me why?

[Valgrind-users] 答复: [HELP] I run the valgrind in the unreleased android version(arm32), I am confused by function stack. Can you show me why?

2018-04-10 Thread Wuweijia
Hi John: I follow your instruction that upgrade the valgrind from 3.12 to 3.13. It seem to be okay, Thank you. I did not find any change in the vg_preload.c vg_redir.c . Can you tell me why the error do not occur. But there is some mistake, I still need to find out why.

[Valgrind-users] [Bug] There is the bug about valgrind decode armv8 thumb instruction

2018-04-04 Thread Wuweijia
Hi When the machine code is 0x4503, the op is cmp, but this is the T2 format , N bit(7-bit) is 0 , so the thumb instrunction cmp-hi is unhandled. And the decode action is failure . The 0x4503 machine code is generate by clang4.0\5.0\6.0, the machine cpu

[Valgrind-users] [HELP] I run the valgrind in the unreleased android version(arm32), I am confused by function stack. Can you show me why?

2018-04-04 Thread Wuweijia
HI Why I call the strcmp, but function stack show that the strcat is called not the strcmp, but the file is belong to the function strcmp Can you show the how to replace the strcmp with "STRCMP(VG_Z_LIBC_SONAME, strcmp)", and then I can follow the code to find

[Valgrind-users] 答复: [help]There is question about valgrind with clang 5.0

2018-03-01 Thread Wuweijia
Hi Is there any guy focus on this issue? BR Owen 发件人: Wuweijia 发送时间: 2018年2月28日 15:16 收件人: valgrind-users@lists.sourceforge.net 抄送: Fanbohao 主题: [help]There is question about valgrind with clang 5.0 Hi I write android aarch32 demo , and run with valgrind, It

[Valgrind-users] [Need Help] There is some error about scheduler modue

2018-02-10 Thread Wuweijia
Hi: There is valgrind assert failure when valgrind run the process. But it does not always occurred ,sometimes. There is only two thread , One the thread is sleeping and waiting the message, another thread is running. I do not how to debug it, ca

[Valgrind-users] 答复: 答复: 答复: 答复: [Help] Valgrind sometime run the program very slowly sometimes , it last at least one hour. can you show me why or some way to analyze it?

2018-02-06 Thread Wuweijia
our. can you show me why or some way to analyze it? On 01/25/2018 15:37 UTC, Wuweijia wrote: > Function1: > bool CDynamicScheduling::GetProcLoop( > int& nBegin, > int& nEndPlusOne) > { > int curr = __sync_fetch_and_add(&m_nCurrent, m_

[Valgrind-users] 答复: 答复: 答复: 答复: [Help] Valgrind sometime run the program very slowly sometimes , it last at least one hour. can you show me why or some way to analyze it?

2018-01-25 Thread Wuweijia
gon.com] 发送时间: 2018年1月26日 12:44 收件人: valgrind-users@lists.sourceforge.net 主题: Re: [Valgrind-users] 答复: 答复: 答复: [Help] Valgrind sometime run the program very slowly sometimes , it last at least one hour. can you show me why or some way to analyze it? On 01/25/2018 15:37 UTC, Wuweijia wrote: > Function1:

[Valgrind-users] 答复: 答复: 答复: [Help] Valgrind sometime run the program very slowly sometimes , it last at least one hour. can you show me why or some way to analyze it?

2018-01-25 Thread Wuweijia
I still compile the source code failed in arm32, I need both aarch64 and arm32. They run together. So I want to try new way, build the valgrind 3.13 and try it. BR Owen -邮件原件- 发件人: Ivo Raisr [mailto:iv...@ivosh.net] 发送时间: 2018年1月24日 12:36 收件人: Wuweijia 抄送: valgrind-users@l

[Valgrind-users] other quesion about running in android-aarch64.

2018-01-24 Thread Wuweijia
: mmap(0x108000, 4239360) failed in UME with error 22 (Invalid argument). valgrind: this can be caused by executables with very large text, data or bss segments. BR Owen -邮件原件- 发件人: Ivo Raisr [mailto:iv...@ivosh.net] 发送时间: 2018年1月24日 12:36 收件人: Wuweijia 抄送: valgrind-users

[Valgrind-users] 答复: other quesion about running in android-aarch64.

2018-01-24 Thread Wuweijia
It is valgrind 3.14 -邮件原件- 发件人: Wuweijia 发送时间: 2018年1月25日 11:35 收件人: 'Ivo Raisr' 抄送: valgrind-users@lists.sourceforge.net; Fanbohao 主题: other quesion about running in android-aarch64. Hi: Do you never compile in arm32 mode. I want to know how to modify t

[Valgrind-users] 答复: 答复: 答复: [Help] Valgrind sometime run the program very slowly sometimes , it last at least one hour. can you show me why or some way to analyze it?

2018-01-24 Thread Wuweijia
Hi I compile the source in arm32 mode, there is some error occurred, some function lack of param. BR Owen -邮件原件- 发件人: Ivo Raisr [mailto:iv...@ivosh.net] 发送时间: 2018年1月24日 12:36 收件人: Wuweijia 抄送: valgrind-users@lists.sourceforge.net; Fanbohao 主题: Re: 答复: 答复: [Valgrind

[Valgrind-users] 答复: 答复: 答复: [Help] Valgrind sometime run the program very slowly sometimes , it last at least one hour. can you show me why or some way to analyze it?

2018-01-23 Thread Wuweijia
Ivo Raisr [mailto:iv...@ivosh.net] 发送时间: 2018年1月24日 12:36 收件人: Wuweijia 抄送: valgrind-users@lists.sourceforge.net; Fanbohao 主题: Re: 答复: 答复: [Valgrind-users] [Help] Valgrind sometime run the program very slowly sometimes , it last at least one hour. can you show me why or some way to anal

[Valgrind-users] 答复: 答复: [Help] Valgrind sometime run the program very slowly sometimes , it last at least one hour. can you show me why or some way to analyze it?

2018-01-23 Thread Wuweijia
Hi: But I can not access the git of valgrind. Is there any way to get the newest source code; Maybe the network configuration do not allow it; BR Owen -邮件原件- 发件人: Ivo Raisr [mailto:iv...@ivosh.net] 发送时间: 2018年1月23日 21:54 收件人: Wuweijia 抄送: valgrind-users@lists.sourceforge.net

[Valgrind-users] 答复: [Help] Valgrind sometime run the program very slowly sometimes , it last at least one hour. can you show me why or some way to analyze it?

2018-01-23 Thread Wuweijia
- 发件人: Ivo Raisr [mailto:iv...@ivosh.net] 发送时间: 2018年1月23日 17:43 收件人: Wuweijia 抄送: valgrind-users@lists.sourceforge.net; Fanbohao 主题: Re: [Valgrind-users] [Help] Valgrind sometime run the program very slowly sometimes , it last at least one hour. can you show me why or some way to analyze it

[Valgrind-users] [Help] Valgrind sometime run the program very slowly sometimes , it last at least one hour. can you show me why or some way to analyze it?

2018-01-22 Thread Wuweijia
Hi I ran the program with mem-check, 99% is okay, it will not last long. But sometimes it last very long, at least one hour in one function. And then I add the -trace-signals=yes to find what it happen. Valgrind show me some signal happened. Is there something related to the time

[Valgrind-users] 答复: 答复: 答复: 转发: [HELP] Is there any bug with the program built by the clang4.0 with thumbv7--linux-android command para.

2017-09-18 Thread Wuweijia
Hi John: I had sent you the shared object last week. Can you re-product the error now? BR Owen -邮件原件- 发件人: John Reiser [mailto:jrei...@bitwagon.com] 发送时间: 2017年9月15日 5:32 收件人: Wuweijia 主题: Re: 答复: [Valgrind-users] 答复: 转发: [HELP] Is there any bug with the program built by

[Valgrind-users] 答复: 答复: 转发: [HELP] Is there any bug with the program built by the clang4.0 with thumbv7--linux-android command para.

2017-09-13 Thread Wuweijia
ailto:jrei...@bitwagon.com] 发送时间: 2017年9月14日 6:58 收件人: valgrind-users@lists.sourceforge.net 主题: Re: [Valgrind-users] 答复: 转发: [HELP] Is there any bug with the program built by the clang4.0 with thumbv7--linux-android command para. Wuweijia wrote: > I run the same application with valgrind

[Valgrind-users] 答复: 转发: [HELP] Is there any bug with the program built by the clang4.0 with thumbv7--linux-android command para.

2017-09-12 Thread Wuweijia
Hi John: I run the same application with valgrind 3.12 . I can the same stack when the application is down with your command line or not. The same stack when the valgrind is down: Thread 1: status = VgTs_Runnable (lwpid 29062) ==29062==at 0x1089B6: compare_ex

[Valgrind-users] 答复: 转发: [HELP] Is there any bug with the program built by the clang4.0 with thumbv7--linux-android command para.

2017-09-12 Thread Wuweijia
I think there is something different when I run the valgrind with your command . It show me that valgrind die at : Thread 1: status = VgTs_Runnable (lwpid 28961) ==28961==at 0x4039698: __dl_syscall (syscall.S:45) ==28961==by 0x40029A3: __dl__ZL24debuggerd_signal_handleriP7siginfoPv (debu

[Valgrind-users] 转发: [HELP] Is there any bug with the program built by the clang4.0 with thumbv7--linux-android command para.

2017-09-11 Thread Wuweijia
发件人: Wuweijia 发送时间: 2017年9月12日 12:34 收件人: 'valgrind-users@lists.sourceforge.net' 抄送: Fanbohao 主题: [HELP] Is there any bug with the program built by the clang4.0 with thumbv7--linux-android command para. Hello: First, I build the program with clang 4.0 with 32 b

[Valgrind-users] 答复: [hi] Do you provide any Commercial Support?

2017-07-07 Thread Wuweijia
Hi: Can you give me a reply. I am still waiting your answer. BR Owen 发件人: Wuweijia 发送时间: 2017年7月7日 15:52 收件人: 'valgrind-users@lists.sourceforge.net' 抄送: Fanbohao 主题: [hi] Do you provide any Commercial Support? Hi I have send the email to jul...@open-works.net<mailt

[Valgrind-users] [HELP] can you show me more how to develop the sub-tool for valgrind

2017-07-07 Thread Wuweijia
Hi: I am developing the sub-tool for valgrind in aarch64. I want to know more information about to develop. But there is no more details on the site. Is there any doc about how to develop the sub-tool for valgrind, and how to use api of coregrind, what the api of coregrind is

[Valgrind-users] [hi] Do you provide any Commercial Support?

2017-07-07 Thread Wuweijia
Hi I have send the email to jul...@open-works.net two weeks ago , but there is no reply till now. There are some requires for exp-dhat. Please give me the answer no matter you provide it. BR Owen ---

[Valgrind-users] [hello] Could sgcheck run in aarch64?

2017-07-06 Thread Wuweijia
Hi: In valgrind 3.12, I run sgcheck in aarch64. It show me the message "SGCheck doesn't work on ARM yet, sorry." why sgcheck not support in aarch64? What about sgcheck in valgrind 3.13? BR Owen -- Check out the vibrant

[Valgrind-users] [hello] I am debugging the new sub-tool for valgrind.

2017-07-04 Thread Wuweijia
Hi: There are some bug in the sub-tool for valgrind. I want to debug it via printing log, but there is a lot of log and run slowly I can not stand it . And is there any tools like gdb , I can the debug the sub-tool for vaglrind at some point in my test program. BR Owen ---

[Valgrind-users] 答复: Please check the dhat could run in the ELF32 mode in x86-64.

2017-06-24 Thread Wuweijia
Any guy focus on this bug? There is still no answer now. 发件人: Wuweijia 发送时间: 2017年6月23日 16:54 收件人: 'valgrind-users@lists.sourceforge.net' 抄送: Fanbohao 主题: 答复: Please check the dhat could run in the ELF32 mode in x86-64. Hi, there are some progress I analyzed. 1: If functi

[Valgrind-users] hi, there is an unknown instruction in arm32 mode. Does valgrind not support strmi instr?

2017-06-23 Thread Wuweijia
localhost:/system/bin # ./valgrind -v ./testDhat32 ==23313== Memcheck, a memory error detector ==23313== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==23313== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info ==23313== Command: ./testDhat32 ==23313== --23313-- V

[Valgrind-users] 答复: Please check the dhat could run in the ELF32 mode in x86-64.

2017-06-23 Thread Wuweijia
-m32 main.c 2: This static void final_tidyup(ThreadId tid) send the Vg_CoreClientReq cmd, and dh_handle_noninsn_write go the default branch. But In x86_64 mode, it never go the default branch. It is very urgent now. Can you show me how to resolve it . BR Owen 发件人: Wuweijia 发送时间: 2017年6月23日

[Valgrind-users] hi, I compile the valgrind with ndk(platform-24), but ndk does not provide the interface pthread_barrier_t and pthread_spinlock_t . how you compile it ?

2017-06-23 Thread Wuweijia
hg_intercepts.c:97:61: note: in definition of macro 'PTH_FUNC' ret_ty I_WRAP_SONAME_FNNAME_ZZ(VG_Z_LIBPTHREAD_SONAME,f)(args); \ ^ hg_intercepts.c:1644:10: error: unknown type name 'pthread_barrierattr_t' pthread_barrierattr

[Valgrind-users] Please check the dhat could run in the ELF32 mode in x86-64.

2017-06-22 Thread Wuweijia
Hi: I compile the code in x86-64 machine, and run dhat . it is ok. The compile cmd: gcc -g -O0 main.c The dhat cmd valgrind -tool=exp-dhat ./a.out But I compile the same code in the same machine, but another compile cmd, and run dhat. It failed. The compile cmd: gcc -g -O0 -m32 main.c The dhat

[Valgrind-users] How Can I make an andriod version with ndk.

2017-06-20 Thread Wuweijia
I want to make android build. But I can not find the sysroot parameter in configure command. And How I can make the android version. -- Check out the vibrant tech community on one of the world's most engaging tech si

[Valgrind-users] 答复: 答复: hello there is a question about callgrind on the arm64.

2017-06-11 Thread Wuweijia
I do not know what the shadow stack meant. Is there any idea for the option of compilation to correct it, and I can handle it quickly not modify your codes . Owen -邮件原件- 发件人: Josef Weidendorfer [mailto:josef.weidendor...@gmx.de] 发送时间: 2017年6月10日 1:04 收件人: Wuweijia ; valgrind-users

[Valgrind-users] 答复: hello there is a question about callgrind on the arm64.

2017-06-05 Thread Wuweijia
some point, there were patches promised by someone, but unfortunately nothing useful up to now... Josef Am 12.05.2017 um 05:11 schrieb Wuweijia: > Hi : > > I ran the code through the callgrind on the x86-64, it is ok , no > recursive cycle existed. > > But I ran the same the

[Valgrind-users] 答复: hello there is a question about callgrind on the arm64.

2017-05-15 Thread Wuweijia
Hi: Is there any news? BR Owen -邮件原件- 发件人: Wuweijia 发送时间: 2017年5月12日 12:40 收件人: 'John Reiser' ; valgrind-users@lists.sourceforge.net 抄送: Fanbohao 主题: 答复: [Valgrind-users] hello there is a question about callgrind on the arm64. #include #include #include char

[Valgrind-users] 答复: hello there is a question about callgrind on the arm64.

2017-05-11 Thread Wuweijia
#include #include #include char getCommon(char * argv) { char result = 0; result = argv[0]; for(int i = 0; i < 2; i++ ) { if( argv[1] > 100 ) { result += argv[1] + 10; } if( argv[2] < 30 ) { result += argv[2] * 2; } }

[Valgrind-users] 答复: hello there is a question about callgrind on the arm64.

2017-05-11 Thread Wuweijia
The source code(main.cpp) is in the my.rar. and the callgrind output are also in the my.rar. Did you never receive it ? -邮件原件- 发件人: John Reiser [mailto:jrei...@bitwagon.com] 发送时间: 2017年5月12日 11:18 收件人: valgrind-users@lists.sourceforge.net 主题: Re: [Valgrind-users] hello there is a ques

[Valgrind-users] hello there is a question about callgrind on the arm64.

2017-05-11 Thread Wuweijia
Hi : I ran the code through the callgrind on the x86-64, it is ok , no recursive cycle existed. But I ran the same the same code through the callgrind on the arm64, it show me there is recursive cycle existed. Between two callgrind.out. file: In arm64: There is function name main

[Valgrind-users] [Help] some question about callgrind_annotate in red and blue.

2017-05-09 Thread Wuweijia
I use the callgrind_annotate to analyze the source . but there are some question in my mind. 3987 . ^M 3988 . static ret_status GF_mem_core_2(const UINT8 *guided_Img, INT32 width, INT32 height, INT32 radius, UINT32 eps, INT8 scale_eps, UINT8* out_Img,^M 3989

[Valgrind-users] 答复: I ran the callgrind_annotate to create the report . but it failed (in the read). Can you tell me Why?

2017-05-09 Thread Wuweijia
Help, any guy can help me? Do you need any information. Just tell me. 发件人: Wuweijia 发送时间: 2017年5月8日 17:55 收件人: valgrind-users@lists.sourceforge.net 抄送: Fanbohao 主题: I ran the callgrind_annotate to create the report . but it failed (in the read). Can you tell me Why? $ callgrind_annotate

[Valgrind-users] [Question] Can dhat monitor the memory that alloc via mmap not malloc ?

2017-05-08 Thread Wuweijia
-- Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot___ Valgrind-users mailing list Valgrind-users@lists

[Valgrind-users] I ran the callgrind_annotate to create the report . but it failed (in the read). Can you tell me Why?

2017-05-08 Thread Wuweijia
$ callgrind_annotate --threshold=20 --auto=yes --tree=caller --auto=yes ./callgrind.out.7732 /cloud/jmaster/ndk_wwj/00.Trunk/Beauty_cmd/core/build/ndk/jni/../../../source/guidedfilter.cpp Profile data file './callg

[Valgrind-users] 答复: 答复: [Help] I run test application throght the massif with --pages-as-heap, it failed. But I run the same application throught the massif with no --pages-as-heap, it is ok.why?

2017-04-20 Thread Wuweijia
Hi I can not access svn address that you show me. Can you show the code you modify, and I merge it . BR Owen -邮件原件- 发件人: Philippe Waroquiers [mailto:philippe.waroqui...@skynet.be] 发送时间: 2017年4月20日 4:23 收件人: Wuweijia 抄送: valgrind-users@lists.sourceforge.net; Fanbohao 主题: Re: 答复

[Valgrind-users] [Help] I run test application throght the massif with --pages-as-heap, it failed. But I run the same application throught the massif with no --pages-as-heap, it is ok.why?

2017-04-16 Thread Wuweijia
The output as below: localhost:/system/bin # LD_PRELOAD=/system/bin/linker64 ./valgrind --tool=massif -v --pages-as-heap=yes ./mcfPQ --gtest_filter=*DISTANCE_001_001* ==20333== Massif, a heap profiler ==20333== Copyright (C) 2003-2015, and GNU GPL'd, by Nicholas Nethercote ==20333== Using Valg

[Valgrind-users] 答复: [Help] There is the problem.

2017-04-04 Thread Wuweijia
no, I ran the valgrind on sh, but sh call applicant test0; test0 is the external tools -邮件原件- 发件人: Alex Bligh [mailto:a...@alex.org.uk] 发送时间: 2017年4月2日 23:13 收件人: Wuweijia 抄送: Alex Bligh ; valgrind-users@lists.sourceforge.net; Fanbohao 主题: Re: [Valgrind-users] [Help] There is the

[Valgrind-users] [Help] There is the problem.

2017-04-01 Thread Wuweijia
HI: I ran the valgrind with sh cmd. There is no output. That is why? Run the valgrind cmd: valgrind --xml=yes --xml-file=./r.xml sh -c ./test0 The output as below: fd=4, errno=0 va=0x2800 0 There is no xml file generated; The code (tes0) as below: #include #include #include #include #

[Valgrind-users] [Help] How to resole the problem that massif show function name with ??? symbol.

2017-02-24 Thread Wuweijia
Hi all: I am new. When I use the massif, I create two output files. One the file show me the correct function name , but the another cant not show me the function name , it show me the ??? symbol. Can you tell you why? And how to resole it? I want it show the correct function name

[Valgrind-users] Valgrind may not compatible to gcc(4.9), Why?

2016-11-29 Thread Wuweijia
I compile a demo testcase with gcc 4.9 , run it in aarch64 server with valgrind . valgrind report there is some memory error as below. I do not think that it maybe a problem. ==6494== 1 errors in context 1 of 4: ==6494== Use of uninitialised value of size 4 ==6494==at 0x1089F8: main (testAlg

[Valgrind-users] The config takes exception when the address of an load/store is unaligned

2016-11-26 Thread Wuweijia
I am new. I run valgrind in arm64 server, it show me the information in red, and then valgrind exit. What problem is it ? Can you tell me how to make continue to run ( not exit ). [EIS_IVP][I] temporal_denoise_multi_frame:1885 frame[1]: imgSize / 3 / 2 = 1331712, motionPixNum = 0 Error: The c