Misha Brukman | a3ce429 | 2004-04-06 03:53:49 +0000 | [diff] [blame] | 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" |
| 2 | "http://www.w3.org/TR/html4/strict.dtd"> |
| 3 | <html> |
| 4 | <head> |
| 5 | <title>Extending LLVM: Adding instructions, intrinsics, types, etc.</title> |
| 6 | <link rel="stylesheet" href="llvm.css" type="text/css"> |
| 7 | </head> |
| 8 | |
| 9 | <body> |
| 10 | |
| 11 | <div class="doc_title"> |
| 12 | Extending LLVM: Adding instructions, intrinsics, types, etc. |
| 13 | </div> |
| 14 | |
| 15 | <ol> |
| 16 | <li><a href="#introduction">Introduction and Warning</a></li> |
Misha Brukman | a3ce429 | 2004-04-06 03:53:49 +0000 | [diff] [blame] | 17 | <li><a href="#intrinsic">Adding a new intrinsic function</a></li> |
Chris Lattner | 3636540 | 2004-04-09 19:24:20 +0000 | [diff] [blame] | 18 | <li><a href="#instruction">Adding a new instruction</a></li> |
Misha Brukman | a3ce429 | 2004-04-06 03:53:49 +0000 | [diff] [blame] | 19 | <li><a href="#type">Adding a new type</a> |
| 20 | <ol> |
| 21 | <li><a href="#fund_type">Adding a new fundamental type</a></li> |
| 22 | <li><a href="#derived_type">Adding a new derived type</a></li> |
| 23 | </ol></li> |
| 24 | </ol> |
| 25 | |
Chris Lattner | 7911ce2 | 2004-05-23 21:07:27 +0000 | [diff] [blame] | 26 | <div class="doc_author"> |
| 27 | <p>Written by <a href="http://misha.brukman.net">Misha Brukman</a></p> |
Misha Brukman | a3ce429 | 2004-04-06 03:53:49 +0000 | [diff] [blame] | 28 | </div> |
| 29 | |
| 30 | <!-- *********************************************************************** --> |
| 31 | <div class="doc_section"> |
| 32 | <a name="introduction">Introduction and Warning</a> |
| 33 | </div> |
| 34 | <!-- *********************************************************************** --> |
| 35 | |
| 36 | <div class="doc_text"> |
| 37 | |
| 38 | <p>During the course of using LLVM, you may wish to customize it for your |
| 39 | research project or for experimentation. At this point, you may realize that |
| 40 | you need to add something to LLVM, whether it be a new fundamental type, a new |
| 41 | intrinsic function, or a whole new instruction.</p> |
| 42 | |
| 43 | <p>When you come to this realization, stop and think. Do you really need to |
| 44 | extend LLVM? Is it a new fundamental capability that LLVM does not support at |
| 45 | its current incarnation or can it be synthesized from already pre-existing LLVM |
| 46 | elements? If you are not sure, ask on the <a |
| 47 | href="http://mail.cs.uiuc.edu/mailman/listinfo/llvmdev">LLVM-dev</a> list. The |
| 48 | reason is that extending LLVM will get involved as you need to update all the |
| 49 | different passes that you intend to use with your extension, and there are |
| 50 | <em>many</em> LLVM analyses and transformations, so it may be quite a bit of |
| 51 | work.</p> |
| 52 | |
Misha Brukman | b3b2827 | 2004-04-06 04:17:51 +0000 | [diff] [blame] | 53 | <p>Adding an <a href="#intrinsic">intrinsic function</a> is easier than adding |
| 54 | an instruction, and is transparent to optimization passes which treat it as an |
| 55 | unanalyzable function. If your added functionality can be expressed as a |
| 56 | function call, an intrinsic function is the method of choice for LLVM |
| 57 | extension.</p> |
| 58 | |
Misha Brukman | a3ce429 | 2004-04-06 03:53:49 +0000 | [diff] [blame] | 59 | <p>Before you invest a significant amount of effort into a non-trivial |
| 60 | extension, <span class="doc_warning">ask on the list</span> if what you are |
| 61 | looking to do can be done with already-existing infrastructure, or if maybe |
| 62 | someone else is already working on it. You will save yourself a lot of time and |
| 63 | effort by doing so.</p> |
| 64 | |
| 65 | <p>Finally, these are my notes, and since my extensions are not complete, I may |
| 66 | be missing steps. If you find some omissions, please let me know <a |
| 67 | href="http://misha.brukman.net/contact.html">directly</a> or post on <a |
| 68 | href="http://mail.cs.uiuc.edu/mailman/listinfo/llvmdev">LLVM-dev</a>.</p> |
| 69 | |
| 70 | </div> |
| 71 | |
| 72 | <!-- *********************************************************************** --> |
| 73 | <div class="doc_section"> |
Chris Lattner | 3636540 | 2004-04-09 19:24:20 +0000 | [diff] [blame] | 74 | <a name="intrinsic">Adding a new intrinsic function</a> |
| 75 | </div> |
| 76 | <!-- *********************************************************************** --> |
| 77 | |
| 78 | <div class="doc_text"> |
| 79 | |
| 80 | <p>Adding a new intrinsic function to LLVM is much easier than adding a new |
| 81 | instruction. Almost all extensions to LLVM should start as an intrinsic |
| 82 | function and then be turned into an instruction if warranted.</p> |
| 83 | |
| 84 | <ol> |
| 85 | <li><tt>llvm/docs/LangRef.html</tt>: |
| 86 | Document the intrinsic. Decide whether it is code generator specific and |
| 87 | what the restrictions are. Talk to other people about it so that you are |
| 88 | sure it's a good idea.</li> |
| 89 | |
| 90 | <li><tt>llvm/include/llvm/Intrinsics.h</tt>: |
| 91 | add an enum in the <tt>llvm::Intrinsic</tt> namespace</li> |
| 92 | |
Chris Lattner | 81519d9 | 2004-06-20 07:53:22 +0000 | [diff] [blame] | 93 | <li><tt>llvm/lib/CodeGen/IntrinsicLowering.cpp</tt>: |
Chris Lattner | 3636540 | 2004-04-09 19:24:20 +0000 | [diff] [blame] | 94 | implement the lowering for this intrinsic</li> |
| 95 | |
| 96 | <li><tt>llvm/lib/VMCore/Verifier.cpp</tt>: |
| 97 | Add code to check the invariants of the intrinsic are respected.</li> |
| 98 | |
| 99 | <li><tt>llvm/lib/VMCore/Function.cpp (<tt>Function::getIntrinsicID()</tt>)</tt>: |
| 100 | Identify the new intrinsic function, returning the enum for the intrinsic |
| 101 | that you added.</li> |
Chris Lattner | 0190fdb | 2004-04-10 06:56:53 +0000 | [diff] [blame] | 102 | |
| 103 | <li><tt>llvm/lib/Analysis/BasicAliasAnalysis.cpp</tt>: If the new intrinsic does |
Chris Lattner | 81519d9 | 2004-06-20 07:53:22 +0000 | [diff] [blame] | 104 | not access memory or does not write to memory, add it to the relevant list |
Chris Lattner | 0190fdb | 2004-04-10 06:56:53 +0000 | [diff] [blame] | 105 | of functions.</li> |
| 106 | |
Chris Lattner | d828bc6 | 2004-04-13 19:48:55 +0000 | [diff] [blame] | 107 | <li><tt>llvm/lib/Transforms/Utils/Local.cpp</tt>: If it is possible to constant |
| 108 | propagate your intrinsic, add support to it in the |
| 109 | <tt>canConstantFoldCallTo</tt> and <tt>ConstantFoldCall</tt> functions.</li> |
| 110 | |
Chris Lattner | 3636540 | 2004-04-09 19:24:20 +0000 | [diff] [blame] | 111 | <li>Test your intrinsic</li> |
| 112 | <li><tt>llvm/test/Regression/*</tt>: add your test cases to the test suite.</li> |
| 113 | </ol> |
| 114 | |
| 115 | <p>If this intrinsic requires code generator support (ie, it cannot be lowered). |
| 116 | You should also add support to the code generator in question.</p> |
| 117 | |
| 118 | </div> |
| 119 | |
| 120 | <!-- *********************************************************************** --> |
| 121 | <div class="doc_section"> |
Misha Brukman | a3ce429 | 2004-04-06 03:53:49 +0000 | [diff] [blame] | 122 | <a name="instruction">Adding a new instruction</a> |
| 123 | </div> |
| 124 | <!-- *********************************************************************** --> |
| 125 | |
| 126 | <div class="doc_text"> |
| 127 | |
| 128 | <p><span class="doc_warning">WARNING: adding instructions changes the bytecode |
Misha Brukman | b3b2827 | 2004-04-06 04:17:51 +0000 | [diff] [blame] | 129 | format, and it will take some effort to maintain compatibility with |
| 130 | the previous version.</span> Only add an instruction if it is absolutely |
Misha Brukman | a3ce429 | 2004-04-06 03:53:49 +0000 | [diff] [blame] | 131 | necessary.</p> |
| 132 | |
| 133 | <ol> |
Misha Brukman | b3b2827 | 2004-04-06 04:17:51 +0000 | [diff] [blame] | 134 | |
Misha Brukman | a3ce429 | 2004-04-06 03:53:49 +0000 | [diff] [blame] | 135 | <li><tt>llvm/include/llvm/Instruction.def</tt>: |
| 136 | add a number for your instruction and an enum name</li> |
| 137 | |
Misha Brukman | 47b14a4 | 2004-07-29 17:30:56 +0000 | [diff] [blame] | 138 | <li><tt>llvm/include/llvm/Instructions.h</tt>: |
Misha Brukman | a3ce429 | 2004-04-06 03:53:49 +0000 | [diff] [blame] | 139 | add a definition for the class that will represent your instruction</li> |
| 140 | |
| 141 | <li><tt>llvm/include/llvm/Support/InstVisitor.h</tt>: |
| 142 | add a prototype for a visitor to your new instruction type</li> |
| 143 | |
| 144 | <li><tt>llvm/lib/AsmParser/Lexer.l</tt>: |
| 145 | add a new token to parse your instruction from assembly text file</li> |
| 146 | |
| 147 | <li><tt>llvm/lib/AsmParser/llvmAsmParser.y</tt>: |
| 148 | add the grammar on how your instruction can be read and what it will |
| 149 | construct as a result</li> |
| 150 | |
| 151 | <li><tt>llvm/lib/Bytecode/Reader/InstructionReader.cpp</tt>: |
| 152 | add a case for your instruction and how it will be parsed from bytecode</li> |
| 153 | |
| 154 | <li><tt>llvm/lib/VMCore/Instruction.cpp</tt>: |
| 155 | add a case for how your instruction will be printed out to assembly</li> |
| 156 | |
Chris Lattner | 8f36321 | 2004-07-29 17:31:57 +0000 | [diff] [blame] | 157 | <li><tt>llvm/lib/VMCore/Instructions.cpp</tt>: |
| 158 | implement the class you defined in <tt>llvm/include/llvm/Instructions.h</tt></li> |
Misha Brukman | a3ce429 | 2004-04-06 03:53:49 +0000 | [diff] [blame] | 159 | |
| 160 | </ol> |
| 161 | |
| 162 | <p>Also, you need to implement (or modify) any analyses or passes that you want |
| 163 | to understand this new instruction.</p> |
| 164 | |
| 165 | </div> |
| 166 | |
Misha Brukman | a3ce429 | 2004-04-06 03:53:49 +0000 | [diff] [blame] | 167 | |
| 168 | <!-- *********************************************************************** --> |
| 169 | <div class="doc_section"> |
| 170 | <a name="type">Adding a new type</a> |
| 171 | </div> |
| 172 | <!-- *********************************************************************** --> |
| 173 | |
| 174 | <div class="doc_text"> |
| 175 | |
| 176 | <p><span class="doc_warning">WARNING: adding new types changes the bytecode |
| 177 | format, and will break compatibility with currently-existing LLVM |
| 178 | installations.</span> Only add new types if it is absolutely necessary.</p> |
| 179 | |
| 180 | </div> |
| 181 | |
| 182 | <!-- ======================================================================= --> |
| 183 | <div class="doc_subsection"> |
| 184 | <a name="fund_type">Adding a fundamental type</a> |
| 185 | </div> |
| 186 | |
| 187 | <div class="doc_text"> |
| 188 | |
| 189 | <ol> |
| 190 | |
| 191 | <li><tt>llvm/include/llvm/Type.def</tt>: |
| 192 | add enum for the type</li> |
| 193 | |
| 194 | <li><tt>llvm/include/llvm/Type.h</tt>: |
| 195 | add ID number for the new type; add static <tt>Type*</tt> for this type</li> |
| 196 | |
| 197 | <li><tt>llvm/lib/VMCore/Type.cpp</tt>: |
| 198 | add mapping from <tt>TypeID</tt> => <tt>Type*</tt>; |
| 199 | initialize the static <tt>Type*</tt></li> |
| 200 | |
| 201 | <li><tt>llvm/lib/AsmReader/Lexer.l</tt>: |
| 202 | add ability to parse in the type from text assembly</li> |
| 203 | |
| 204 | <li><tt>llvm/lib/AsmReader/llvmAsmParser.y</tt>: |
| 205 | add a token for that type</li> |
| 206 | |
| 207 | </ol> |
| 208 | |
| 209 | </div> |
| 210 | |
| 211 | <!-- ======================================================================= --> |
| 212 | <div class="doc_subsection"> |
| 213 | <a name="derived_type">Adding a derived type</a> |
| 214 | </div> |
| 215 | |
| 216 | <div class="doc_text"> |
| 217 | |
Chris Lattner | 8dad40c | 2004-08-12 19:06:24 +0000 | [diff] [blame] | 218 | <ol> |
| 219 | <li><tt>llvm/include/llvm/Type.def</tt>: |
| 220 | add enum for the type</li> |
| 221 | |
| 222 | <li><tt>llvm/include/llvm/Type.h</tt>: |
Misha Brukman | 7cc8a89 | 2004-08-12 19:58:43 +0000 | [diff] [blame^] | 223 | add ID number for the new type; add a forward declaration of the type |
| 224 | also</li> |
Chris Lattner | 8dad40c | 2004-08-12 19:06:24 +0000 | [diff] [blame] | 225 | |
| 226 | <li><tt>llvm/include/llvm/DerivedType.h</tt>: |
| 227 | add new class to represent new class in the hierarchy; add forward |
| 228 | declaration to the TypeMap value type</li> |
| 229 | |
| 230 | <li><tt>llvm/lib/VMCore/Type.cpp</tt>: |
| 231 | add support for derived type to: |
Misha Brukman | 7cc8a89 | 2004-08-12 19:58:43 +0000 | [diff] [blame^] | 232 | <div class="doc_code"> |
| 233 | <pre> |
| 234 | std::string getTypeDescription(const Type &Ty, |
| 235 | std::vector<const Type*> &TypeStack) |
| 236 | bool TypesEqual(const Type *Ty, const Type *Ty2, |
| 237 | std::map<const Type*, const Type*> & EqTypes) |
| 238 | </pre> |
| 239 | </div> |
| 240 | add necessary member functions for type, and factory methods</li> |
Chris Lattner | 8dad40c | 2004-08-12 19:06:24 +0000 | [diff] [blame] | 241 | |
| 242 | <li><tt>llvm/lib/AsmReader/Lexer.l</tt>: |
| 243 | add ability to parse in the type from text assembly</li> |
| 244 | |
| 245 | <li><tt>llvm/lib/ByteCode/Writer/Writer.cpp</tt>: |
Misha Brukman | 7cc8a89 | 2004-08-12 19:58:43 +0000 | [diff] [blame^] | 246 | modify <tt>void BytecodeWriter::outputType(const Type *T)</tt> to serialize |
| 247 | your type</li> |
Chris Lattner | 8dad40c | 2004-08-12 19:06:24 +0000 | [diff] [blame] | 248 | |
| 249 | <li><tt>llvm/lib/ByteCode/Reader/Reader.cpp</tt>: |
Misha Brukman | 7cc8a89 | 2004-08-12 19:58:43 +0000 | [diff] [blame^] | 250 | modify <tt>const Type *BytecodeReader::ParseType()</tt> to read your data |
| 251 | type</li> |
Chris Lattner | 8dad40c | 2004-08-12 19:06:24 +0000 | [diff] [blame] | 252 | |
| 253 | <li><tt>llvm/lib/VMCore/AsmWriter.cpp</tt>: |
Misha Brukman | 7cc8a89 | 2004-08-12 19:58:43 +0000 | [diff] [blame^] | 254 | modify |
| 255 | <div class="doc_code"> |
| 256 | <pre> |
| 257 | void calcTypeName(const Type *Ty, |
| 258 | std::vector<const Type*> &TypeStack, |
| 259 | std::map<const Type*,std::string> &TypeNames, |
| 260 | std::string & Result) |
| 261 | </pre> |
| 262 | </div> |
Chris Lattner | 8dad40c | 2004-08-12 19:06:24 +0000 | [diff] [blame] | 263 | to output the new derived type |
| 264 | </li> |
| 265 | |
| 266 | |
| 267 | </ol> |
Misha Brukman | a3ce429 | 2004-04-06 03:53:49 +0000 | [diff] [blame] | 268 | |
| 269 | </div> |
| 270 | |
| 271 | <!-- *********************************************************************** --> |
| 272 | |
| 273 | <hr> |
| 274 | <address> |
| 275 | <a href="http://jigsaw.w3.org/css-validator/check/referer"><img |
| 276 | src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!"></a> |
| 277 | <a href="http://validator.w3.org/check/referer"><img |
| 278 | src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!" /></a> |
| 279 | |
| 280 | <a href="http://misha.brukman.net">Misha Brukman</a><br> |
| 281 | <a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a> |
| 282 | <br> |
| 283 | Last modified: $Date$ |
| 284 | </address> |
| 285 | |
| 286 | </body> |
| 287 | </html> |