retdec
idioms_types.h
Go to the documentation of this file.
1 
7 #ifndef RETDEC_BIN2LLVMIR_OPTIMIZATIONS_IDIOMS_IDIOMS_TYPES_H
8 #define RETDEC_BIN2LLVMIR_OPTIMIZATIONS_IDIOMS_IDIOMS_TYPES_H
9 
10 namespace retdec {
11 namespace bin2llvmir {
12 
17  CC_ANY = 0, //unrecognized compiler
24 };
28 enum CC_arch {
29  ARCH_ANY = 0, //unknown architecture
34  ARCH_x86
35 };
36 
37 } // namespace bin2llvmir
38 } // namespace retdec
39 
40 #endif
The frontend-end part of the decompiler.
CC_arch
Target architecture.
Definition: idioms_types.h:28
@ ARCH_POWERPC
Definition: idioms_types.h:31
@ ARCH_ARM
Definition: idioms_types.h:32
@ ARCH_x86
Definition: idioms_types.h:34
@ ARCH_ANY
Definition: idioms_types.h:29
@ ARCH_MIPS
Definition: idioms_types.h:30
@ ARCH_THUMB
Definition: idioms_types.h:33
CC_compiler
Compiler type.
Definition: idioms_types.h:16
@ CC_VStudio
Definition: idioms_types.h:23
@ CC_ANY
Definition: idioms_types.h:17
@ CC_LLVM
Definition: idioms_types.h:21
@ CC_OWatcom
Definition: idioms_types.h:22
@ CC_Intel
Definition: idioms_types.h:20
@ CC_Borland
Definition: idioms_types.h:18
@ CC_GCC
Definition: idioms_types.h:19
Definition: archive_wrapper.h:19