=========================================================== .___ __ __ _________________ __ __ __| _/|__|/ |_ / ___\_` __ \__ \ | | \/ __ | | \\_ __\ / /_/ > | \// __ \| | / /_/ | | || | \___ /|__| (____ /____/\____ | |__||__| /_____/ \/ \/ grep rough audit - static analysis tool v2.8 written by @Wireghoul =================================[justanotherhacker.com]=== iwyu-8.15/.travis.yml-21- # Absolute paths to LLVM's root and bin directory iwyu-8.15/.travis.yml:22: - PREFIX_PATH=`llvm-config-$VERSION --prefix` iwyu-8.15/.travis.yml:23: - BIN_PATH=`llvm-config-$VERSION --bindir` iwyu-8.15/.travis.yml-24- ############################################## iwyu-8.15/gcc.libc.imp-172- # Top-level #includes that just forward to another file: iwyu-8.15/gcc.libc.imp:173: # $ for i in /usr/include/*; do [ -f $i ] } && [ `wc -l < $i` = 1 ] } && echo $i; done iwyu-8.15/gcc.libc.imp-174- # (poll.h, syscall.h, syslog.h, ustat.h, wait.h). ############################################## iwyu-8.15/gcc.libc.imp-185- # do all (or lots) of the work. Note these are private->private. iwyu-8.15/gcc.libc.imp:186: # $ for i in /usr/include/bits/*; do for dir in asm linux; do grep -H -e $dir/`basename $i` $i; done; done iwyu-8.15/gcc.libc.imp-187- { include: [ "<linux/errno.h>", private, "<bits/errno.h>", private ] }, ############################################## iwyu-8.15/gcc.libc.imp-190- { include: [ "<linux/socket.h>", private, "<bits/socket.h>", private ] }, iwyu-8.15/gcc.libc.imp:191: # Some asm files have 32- and 64-bit variants: iwyu-8.15/gcc.libc.imp-192- # $ ls /usr/include/asm/*_{32,64}.h ############################################## iwyu-8.15/iwyu.cc-4140- // assembly. We do this unconditionally, because it allows an IWYU iwyu-8.15/iwyu.cc:4141: // built for non-X86 targets to parse MS inline asm without choking. iwyu-8.15/iwyu.cc-4142- LLVMInitializeX86TargetInfo(); ############################################## iwyu-8.15/iwyu_include_picker.cc-428- // Top-level #includes that just forward to another file: iwyu-8.15/iwyu_include_picker.cc:429: // $ for i in /usr/include/*; do [ -f $i ] && [ `wc -l < $i` = 1 ] && echo $i; done iwyu-8.15/iwyu_include_picker.cc-430- // (poll.h, syscall.h, syslog.h, ustat.h, wait.h). ############################################## iwyu-8.15/iwyu_include_picker.cc-441- // do all (or lots) of the work. Note these are private->private. iwyu-8.15/iwyu_include_picker.cc:442: // $ for i in /usr/include/bits/*; do for dir in asm linux; do grep -H -e $dir/`basename $i` $i; done; done iwyu-8.15/iwyu_include_picker.cc-443- { "<linux/errno.h>", kPrivate, "<bits/errno.h>", kPrivate }, ############################################## iwyu-8.15/iwyu_include_picker.cc-446- { "<linux/socket.h>", kPrivate, "<bits/socket.h>", kPrivate }, iwyu-8.15/iwyu_include_picker.cc:447: // Some asm files have 32- and 64-bit variants: iwyu-8.15/iwyu_include_picker.cc-448- // $ ls /usr/include/asm/*_{32,64}.h ############################################## iwyu-8.15/iwyu_include_picker.cc-473- // mapping.) Here is how I identified the files to map: iwyu-8.15/iwyu_include_picker.cc:474: // $ for i in /usr/include/c++/4.4/c* ; do ls /usr/include/`basename $i | cut -b2-`.h /usr/lib/gcc/*/4.4/include/`basename $i | cut -b2-`.h 2>/dev/null ; done iwyu-8.15/iwyu_include_picker.cc-475- // ############################################## iwyu-8.15/stl.c.headers.imp-10- # mapping.) Here is how I identified the files to map: iwyu-8.15/stl.c.headers.imp:11: # $ for i in /usr/include/c++/4.4/c* ; do ls /usr/include/`basename $i | cut -b2-`.h /usr/lib/gcc/*/4.4/include/`basename $i | cut -b2-`.h 2>/dev/null ; done iwyu-8.15/stl.c.headers.imp-12- # ############################################## iwyu-8.15/tests/cxx/ms_inline_asm.cc-15- int r; iwyu-8.15/tests/cxx/ms_inline_asm.cc:16: __asm { iwyu-8.15/tests/cxx/ms_inline_asm.cc-17- // TODO: Add a use here, e.g. by using IndirectClass::statica