summaryrefslogtreecommitdiffstats
path: root/llvm/docs/tutorial/LangImpl4.html
Commit message (Collapse)AuthorAgeFilesLines
* Make Kaleidoscope not link against the interpreter, since that didn'tJeffrey Yasskin2010-02-111-3/+7
| | | | | | | | work anyway (Interpreter::getPointerToFunction doesn't return a callable pointer), and improve the error message when an ExecutionEngine can't be created. llvm-svn: 95896
* Add "Author Date Id Revision" svn:keyword properties to these files, asDan Gohman2010-02-031-1/+1
| | | | | | | is done with the other html files in doc, to hopefully keep strings like "Last modified" current. llvm-svn: 95225
* Kill ModuleProvider and ghost linkage by inverting the relationship betweenJeffrey Yasskin2010-01-271-26/+13
| | | | | | | | | | | | | | | | | | | | | Modules and ModuleProviders. Because the "ModuleProvider" simply materializes GlobalValues now, and doesn't provide modules, it's renamed to "GVMaterializer". Code that used to need a ModuleProvider to materialize Functions can now materialize the Functions directly. Functions no longer use a magic linkage to record that they're materializable; they simply ask the GVMaterializer. Because the C ABI must never change, we can't remove LLVMModuleProviderRef or the functions that refer to it. Instead, because Module now exposes the same functionality ModuleProvider used to, we store a Module* in any LLVMModuleProviderRef and translate in the wrapper methods. The bindings to other languages still use the ModuleProvider concept. It would probably be worth some time to update them to follow the C++ more closely, but I don't intend to do it. Fixes http://llvm.org/PR5737 and http://llvm.org/PR5735. llvm-svn: 94686
* Change the JIT to compile eagerly by default as agreed inJeffrey Yasskin2009-10-271-20/+15
| | | | | | | http://llvm.org/PR5184, and beef up the comments to describe what both options do and the risks of lazy compilation in the presence of threads. llvm-svn: 85295
* Documentation: Perform automated correction of common typos.Benjamin Kramer2009-10-121-1/+1
| | | | llvm-svn: 83849
* Sync c++ kaleidoscope tutorial with test.Erick Tryzelaar2009-09-221-13/+12
| | | | llvm-svn: 82572
* Update the tutorial to match changes to examples/Kaleidoscope.Nick Lewycky2009-09-131-5/+18
| | | | | | | One change I'm not folding in is the removal of two unused variables that caused warnings, because those were there for expository purposes. llvm-svn: 81721
* Allocate the module provider in the Kaleidoscope code on the heap, not the ↵Reid Kleckner2009-08-261-53/+55
| | | | | | stack, so that it can be properly deleted. Also update the tutorial with the new code. This fixes PR4762, hopefully better than the last time. llvm-svn: 80138
* Push LLVMContexts through the IntegerType APIs.Owen Anderson2009-08-131-4/+4
| | | | llvm-svn: 78948
* Move types back to the 2.5 API.Owen Anderson2009-07-291-1/+1
| | | | llvm-svn: 77516
* Move ConstantFP construction back to the 2.5-ish API.Owen Anderson2009-07-271-1/+1
| | | | llvm-svn: 77247
* Add EngineBuilder to ExecutionEngine in favor of the five optional argument ↵Reid Kleckner2009-07-181-2/+2
| | | | | | | | EE::create(). Also a test commit. llvm-svn: 76276
* Privatize the ConstantFP table. I'm on a roll!Owen Anderson2009-07-161-2/+2
| | | | llvm-svn: 76097
* Push LLVMContext _back_ through IRBuilder.Owen Anderson2009-07-081-2/+3
| | | | llvm-svn: 75040
* fix validator errorsGabor Greif2009-03-111-1/+1
| | | | llvm-svn: 66688
* Fix exaples using IRBuilder. Thanks, Quadrescence and Glip7 from IRC!Gabor Greif2009-03-111-1/+1
| | | | llvm-svn: 66687
* mention rdynamic, PR3431, patch by Stein Roger Skafløtten!Chris Lattner2009-02-091-0/+5
| | | | llvm-svn: 64106
* adjust calls to ConstantFP::get to new APIGabor Greif2008-06-101-1/+1
| | | | llvm-svn: 52165
* merge of 49966 from branches/ggreif/use-diet to trunk. these are already ↵Gabor Greif2008-04-191-2/+2
| | | | | | active API changes llvm-svn: 49968
* A couple minor fixes suggested by Matthijs KooijmanChris Lattner2008-04-151-1/+1
| | | | llvm-svn: 49729
* improve diagnostics in call parsing, patch suggested byChris Lattner2008-04-141-1/+1
| | | | | | Matthijs Kooijman llvm-svn: 49648
* Merge LLVMBuilder and FoldingBuilder, callingDuncan Sands2008-04-131-34/+22
| | | | | | the result IRBuilder. Patch by Dominic Hamon. llvm-svn: 49604
* Various updates from Sam Bishop:Chris Lattner2008-02-101-0/+1
| | | | | | | | | | | | | | "I have been working my way through the JIT and Kaleidoscope tutorials in my (minuscule) spare time. Thanks again for writing them! I have attached a patch containing some minor changes, ranging from spelling and grammar fixes to adding a "Next: <next tutorial section>" hyperlink to the bottom of each page. Every page has been given the "next link" treatment, but otherwise I'm only half way through the Kaleidoscope tutorial. I will send a follow-on patch if time permits." llvm-svn: 46933
* dump the module *before* we delete it, not after.Chris Lattner2008-02-051-4/+4
| | | | llvm-svn: 46741
* fix typo noticed by Joshua PenningtonChris Lattner2007-12-021-1/+1
| | | | llvm-svn: 44522
* Many typos, grammaro, and wording fixes. Patch byChris Lattner2007-11-131-28/+27
| | | | | | Kelly Wilson, thanks! llvm-svn: 44043
* minor editsChris Lattner2007-11-071-25/+28
| | | | llvm-svn: 43807
* fixes from Ryan Brown.Chris Lattner2007-11-061-9/+11
| | | | llvm-svn: 43747
* add some links to the tutorial index and between chapters.Chris Lattner2007-11-051-0/+3
| | | | llvm-svn: 43730
* add table of contents to each chapter.Chris Lattner2007-11-051-6/+19
| | | | llvm-svn: 43723
* spell identifier correctly.Chris Lattner2007-11-051-3/+3
| | | | llvm-svn: 43718
* fix validationChris Lattner2007-10-311-1/+1
| | | | llvm-svn: 43549
* some minor edits, link to Passes.html, make one pointChris Lattner2007-10-251-2/+25
| | | | | | I forgot about yesterday. llvm-svn: 43350
* Fix an obvious typo.Owen Anderson2007-10-251-1/+1
| | | | llvm-svn: 43333
* Add chapter 4, feedback appreciated.Chris Lattner2007-10-251-8/+1024
| | | | llvm-svn: 43329
* Fix validation problems, which were somewhat ironically in the "valid html" ↵Chris Lattner2007-10-231-1/+1
| | | | | | button code :) llvm-svn: 43247
* add a skeleton for part 4Chris Lattner2007-10-231-0/+78
llvm-svn: 43246
OpenPOWER on IntegriCloud