llvm-native-core 0.1.0

LLVM-native core semantic engine — IR, CodeGen, X86 MC, Clang frontend pipeline
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod asm_parser;
pub mod attributes;
pub mod basic_block;
pub mod clang;
pub mod codegen;
pub mod constants;
pub mod context;
pub mod function;
pub mod instruction;
pub mod ir_builder;
pub mod mc_assembler;
pub mod mc_inst;
pub mod mc_streamer;
pub mod module;
pub mod opcode;
pub mod types;
pub mod value;