summaryrefslogtreecommitdiffstats
path: root/llvm/docs/tutorial
Commit message (Collapse)AuthorAgeFilesLines
...
* Overhauled llvm/clang docs builds. Closes PR6613.mike-m2010-05-0618-18760/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | NOTE: 2nd part changeset for cfe trunk to follow. *** PRE-PATCH ISSUES ADDRESSED - clang api docs fail build from objdir - clang/llvm api docs collide in install PREFIX/ - clang/llvm main docs collide in install - clang/llvm main docs have full of hard coded destination assumptions and make use of absolute root in static html files; namely CommandGuide tools hard codes a website destination for cross references and some html cross references assume website root paths *** IMPROVEMENTS - bumped Doxygen from 1.4.x -> 1.6.3 - splits llvm/clang docs into 'main' and 'api' (doxygen) build trees - provide consistent, reliable doc builds for both main+api docs - support buid vs. install vs. website intentions - support objdir builds - document targets with 'make help' - correct clean and uninstall operations - use recursive dir delete only where absolutely necessary - added call function fn.RMRF which safeguards against botched 'rm -rf'; if any target (or any variable is evaluated) which attempts to remove any dirs which match a hard-coded 'safelist', a verbose error will be printed and make will error-stop. llvm-svn: 103213
* Fix the ocaml kaleidoscope tutorial to fix linking external libraries.Erick Tryzelaar2010-03-212-2/+2
| | | | llvm-svn: 99151
* Update the OCaml Kaleidoscope tutorial.Erick Tryzelaar2010-03-085-65/+58
| | | | llvm-svn: 97965
* Rewrite makefiles to explicitly reference DESTDIR to fix bug 3153.Erick Tryzelaar2010-03-041-1/+1
| | | | | | We need this so can not bake DESTDIR into the O'Caml symlinks. llvm-svn: 97743
* Floating-point add, sub, and mul are now spelled fadd, fsub, and fmul,Dan Gohman2010-03-028-77/+77
| | | | | | respectively. llvm-svn: 97531
* irbuilder is doing constant folding now by default, PR6092Chris Lattner2010-02-171-3/+3
| | | | llvm-svn: 96502
* fix some out of date prose dating from the LLVMContext changes.Chris Lattner2010-02-171-3/+3
| | | | llvm-svn: 96500
* Make Kaleidoscope not link against the interpreter, since that didn'tJeffrey Yasskin2010-02-114-9/+25
| | | | | | | | 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-0315-15/+15
| | | | | | | 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-274-47/+22
| | | | | | | | | | | | | | | | | | | | | 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
* Remove the 'simple jit' tutorial as it wasn't really being maintained and itsNick Lewycky2009-11-304-417/+0
| | | | | | material is covered by the Kaleidoscope tutorial. llvm-svn: 90111
* Change the JIT to compile eagerly by default as agreed inJeffrey Yasskin2009-10-272-38/+28
| | | | | | | 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-124-6/+6
| | | | llvm-svn: 83849
* Sync c++ kaleidoscope tutorial with test.Erick Tryzelaar2009-09-226-88/+95
| | | | llvm-svn: 82572
* Expose initializing the native target for the execution engine.Erick Tryzelaar2009-09-144-0/+8
| | | | llvm-svn: 81800
* Make sure to initialize the fpm in the ocaml tutorial.Erick Tryzelaar2009-09-144-0/+10
| | | | llvm-svn: 81799
* Update the tutorial to match changes to examples/Kaleidoscope.Nick Lewycky2009-09-135-29/+77
| | | | | | | 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-264-144/+145
| | | | | | 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
* Update the ocaml docs to work with LLVMContext.Erick Tryzelaar2009-08-195-13/+18
| | | | llvm-svn: 79431
* #include <cstdlib> in the code listing for strtod.John McCall2009-08-171-0/+1
| | | | llvm-svn: 79285
* Push LLVMContexts through the IntegerType APIs.Owen Anderson2009-08-137-65/+65
| | | | llvm-svn: 78948
* Documentation: fix HTML validation errors.Benjamin Kramer2009-08-052-4/+4
| | | | llvm-svn: 78196
* Move a few more APIs back to 2.5 forms. The only remaining ones left to ↵Owen Anderson2009-07-313-3/+3
| | | | | | | | change back are metadata related, which I'm waiting on to avoid conflicting with Devang. llvm-svn: 77721
* Move types back to the 2.5 API.Owen Anderson2009-07-295-6/+6
| | | | llvm-svn: 77516
* Move ConstantFP construction back to the 2.5-ish API.Owen Anderson2009-07-275-20/+20
| | | | llvm-svn: 77247
* Get rid of the Pass+Context magic.Owen Anderson2009-07-223-3/+3
| | | | llvm-svn: 76702
* Various doc updates from Edward O'Callaghan!Chris Lattner2009-07-212-4/+4
| | | | llvm-svn: 76668
* Add EngineBuilder to ExecutionEngine in favor of the five optional argument ↵Reid Kleckner2009-07-184-5/+5
| | | | | | | | EE::create(). Also a test commit. llvm-svn: 76276
* Privatize the ConstantFP table. I'm on a roll!Owen Anderson2009-07-165-30/+30
| | | | llvm-svn: 76097
* Begin the painful process of tearing apart the rat'ss nest that is ↵Owen Anderson2009-07-133-3/+3
| | | | | | | | | Constants.cpp and ConstantFold.cpp. This involves temporarily hard wiring some parts to use the global context. This isn't ideal, but it's the only way I could figure out to make this process vaguely incremental. llvm-svn: 75445
* Push LLVMContext _back_ through IRBuilder.Owen Anderson2009-07-085-10/+15
| | | | llvm-svn: 75040
* Use llvm::raw_stream instead of llvm::Streams.Bill Wendling2009-05-122-2/+4
| | | | llvm-svn: 71573
* Fix compile error. Pointed out by mait on #llvm IRC!Nick Lewycky2009-04-122-2/+2
| | | | llvm-svn: 68910
* do not pretend llvm/.../*.h being system headersGabor Greif2009-03-112-13/+13
| | | | llvm-svn: 66697
* fix validator errorsGabor Greif2009-03-112-2/+2
| | | | llvm-svn: 66688
* Fix exaples using IRBuilder. Thanks, Quadrescence and Glip7 from IRC!Gabor Greif2009-03-117-12/+12
| | | | llvm-svn: 66687
* mention rdynamic, PR3431, patch by Stein Roger Skafløtten!Chris Lattner2009-02-091-0/+5
| | | | llvm-svn: 64106
* fix some incorrect links.Chris Lattner2008-12-121-3/+3
| | | | llvm-svn: 60919
* fix typoTorok Edwin2008-10-291-1/+1
| | | | llvm-svn: 58384
* adjust calls to ConstantFP::get to new APIGabor Greif2008-06-105-20/+20
| | | | llvm-svn: 52165
* Update text to point people at the right version of the tutorial forChris Lattner2008-05-281-1/+5
| | | | | | their release. llvm-svn: 51638
* adapt to new APIGabor Greif2008-05-212-2/+2
| | | | llvm-svn: 51387
* Grammar fix.Bill Wendling2008-05-191-1/+9
| | | | llvm-svn: 51236
* Delete module.Bill Wendling2008-05-191-1/+2
| | | | llvm-svn: 51235
* Convert non-ASCII apostrophes into ASCII apostrophes.Bill Wendling2008-05-191-7/+7
| | | | llvm-svn: 51234
* Delete the Module object.Bill Wendling2008-05-191-1/+2
| | | | llvm-svn: 51233
* s/insure/ensure/Bill Wendling2008-05-191-3/+12
| | | | llvm-svn: 51232
* merge of 49966 from branches/ggreif/use-diet to trunk. these are already ↵Gabor Greif2008-04-197-39/+39
| | | | | | active API changes llvm-svn: 49968
* A couple minor fixes suggested by Matthijs KooijmanChris Lattner2008-04-152-2/+2
| | | | llvm-svn: 49729
* improve diagnostics in call parsing, patch suggested byChris Lattner2008-04-146-7/+7
| | | | | | Matthijs Kooijman llvm-svn: 49648
OpenPOWER on IntegriCloud