Home | History | Annotate | Download | only in HowToUseJIT

Lines Matching full:create

14 //  The goal of this snippet is to create in the memory
58 // Create some module to put our function into it.
61 // Create the add1 function entry and insert this entry into module M. The
71 BasicBlock *BB = BasicBlock::Create(Context, "EntryBlock", Add1F);
73 // Create a basic block builder with default parameters. The builder will
85 // Create the add instruction, inserting it into the end of BB.
88 // Create the return instruction and add it to the basic block
94 // Now we're going to create function `foo', which returns an int and takes no
101 BB = BasicBlock::Create(Context, "EntryBlock", FooF);
113 // Create the return instruction and add it to the basic block.
116 // Now we create the JIT.
117 ExecutionEngine* EE = EngineBuilder(M).create();