[llvm] r256229 - [libFuzzer] add AFL-style dictionary for C++, remove the old file with tokens

Kostya Serebryany via llvm-commits llvm-commits at lists.llvm.org
Mon Dec 21 17:50:51 PST 2015


Author: kcc
Date: Mon Dec 21 19:50:51 2015
New Revision: 256229

URL: http://llvm.org/viewvc/llvm-project?rev=256229&view=rev
Log:
[libFuzzer] add AFL-style dictionary for C++, remove the old file with tokens

Added:
    llvm/trunk/lib/Fuzzer/cxx.dict
Removed:
    llvm/trunk/lib/Fuzzer/cxx_fuzzer_tokens.txt

Added: llvm/trunk/lib/Fuzzer/cxx.dict
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Fuzzer/cxx.dict?rev=256229&view=auto
==============================================================================
--- llvm/trunk/lib/Fuzzer/cxx.dict (added)
+++ llvm/trunk/lib/Fuzzer/cxx.dict Mon Dec 21 19:50:51 2015
@@ -0,0 +1,122 @@
+"++"
+"--"
+"<<"
+">>"
+"+="
+"-="
+"*="
+"/="
+">>="
+"<<="
+"&="
+"|="
+"^="
+"%="
+"!="
+"&&"
+"||"
+"=="
+">="
+"<="
+"->"
+"alignas"
+"alignof"
+"and"
+"and_eq"
+"asm"
+"auto"
+"bitand"
+"bitor"
+"bool"
+"break"
+"case"
+"catch"
+"char"
+"char16_t"
+"char32_t"
+"class"
+"compl"
+"concept"
+"const"
+"constexpr"
+"const_cast"
+"continue"
+"decltype"
+"default"
+"delete"
+"do"
+"double"
+"dynamic_cast"
+"else"
+"enum"
+"explicit"
+"export"
+"extern"
+"false"
+"float"
+"for"
+"friend"
+"goto"
+"if"
+"inline"
+"int"
+"long"
+"mutable"
+"namespace"
+"new"
+"noexcept"
+"not"
+"not_eq"
+"nullptr"
+"operator"
+"or"
+"or_eq"
+"private"
+"protected"
+"public"
+"register"
+"reinterpret_cast"
+"requires"
+"return"
+"short"
+"signed"
+"sizeof"
+"static"
+"static_assert"
+"static_cast"
+"struct"
+"switch"
+"template"
+"this"
+"thread_local"
+"throw"
+"true"
+"try"
+"typedef"
+"typeid"
+"typename"
+"union"
+"unsigned"
+"using"
+"virtual"
+"void"
+"volatile"
+"wchar_t"
+"while"
+"xor"
+"xor_eq"
+"if"
+"elif"
+"else"
+"endif"
+"defined"
+"ifdef"
+"ifndef"
+"define"
+"undef"
+"include"
+"line"
+"error"
+"pragma"
+"override"
+"final"

Removed: llvm/trunk/lib/Fuzzer/cxx_fuzzer_tokens.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Fuzzer/cxx_fuzzer_tokens.txt?rev=256228&view=auto
==============================================================================
--- llvm/trunk/lib/Fuzzer/cxx_fuzzer_tokens.txt (original)
+++ llvm/trunk/lib/Fuzzer/cxx_fuzzer_tokens.txt (removed)
@@ -1,218 +0,0 @@
-#
-##
-`
-~
-!
-@
-$
-%
-^
-&
-*
-(
-)
-_
--
-_
-=
-+
-{
-}
-[
-]
-|
-\
-,
-.
-/
-?
->
-<
-;
-:
-'
-"
-++
---
-<<
->>
-+=
--=
-*=
-/=
->>=
-<<=
-&=
-|=
-^=
-%=
-!=
-&&
-||
-==
->=
-<=
-->
-0
-1
-2
-3
-4
-5
-6
-7
-8
-9
-A
-B
-C
-D
-E
-F
-G
-H
-I
-J
-K
-L
-M
-N
-O
-P
-Q
-R
-S
-T
-U
-V
-W
-X
-Y
-Z
-a
-b
-c
-d
-e
-f
-g
-h
-i
-j
-k
-l
-m
-n
-o
-p
-q
-r
-s
-t
-u
-v
-w
-x
-y
-z
-alignas
-alignof
-and
-and_eq
-asm
-auto
-bitand
-bitor
-bool
-break
-case
-catch
-char
-char16_t
-char32_t
-class
-compl
-concept
-const
-constexpr
-const_cast
-continue
-decltype
-default
-delete
-do
-double
-dynamic_cast
-else
-enum
-explicit
-export
-extern
-false
-float
-for
-friend
-goto
-if
-inline
-int
-long
-mutable
-namespace
-new
-noexcept
-not
-not_eq
-nullptr
-operator
-or
-or_eq
-private
-protected
-public
-register
-reinterpret_cast
-requires
-return
-short
-signed
-sizeof
-static
-static_assert
-static_cast
-struct
-switch
-template
-this
-thread_local
-throw
-true
-try
-typedef
-typeid
-typename
-union
-unsigned
-using
-virtual
-void
-volatile
-wchar_t
-while
-xor
-xor_eq
-if
-elif
-else
-endif
-defined
-ifdef
-ifndef
-define
-undef
-include
-line
-error
-pragma
-override
-final




More information about the llvm-commits mailing list