diff options
author | Chris Lattner <sabre@nondot.org> | 2004-08-12 19:06:24 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-08-12 19:06:24 +0000 |
commit | 8dad40c337cbdcc5d777a543407dc246651cb396 (patch) | |
tree | ab5c4894c5fe97a4144f4e6b35de947bc8a0f63b /docs/ExtendingLLVM.html | |
parent | 09431e187f9abd45af08461df728204ee9731fd7 (diff) | |
download | external_llvm-8dad40c337cbdcc5d777a543407dc246651cb396.zip external_llvm-8dad40c337cbdcc5d777a543407dc246651cb396.tar.gz external_llvm-8dad40c337cbdcc5d777a543407dc246651cb396.tar.bz2 |
Add information on adding a derived type to LLVM, patch contributed by
Brad Jones!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15703 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/ExtendingLLVM.html')
-rw-r--r-- | docs/ExtendingLLVM.html | 42 |
1 files changed, 41 insertions, 1 deletions
diff --git a/docs/ExtendingLLVM.html b/docs/ExtendingLLVM.html index 810b5a7..775a431 100644 --- a/docs/ExtendingLLVM.html +++ b/docs/ExtendingLLVM.html @@ -215,7 +215,47 @@ installations.</span> Only add new types if it is absolutely necessary.</p> <div class="doc_text"> -<p>TODO</p> +<ol> +<li><tt>llvm/include/llvm/Type.def</tt>: + add enum for the type</li> + +<li><tt>llvm/include/llvm/Type.h</tt>: + add ID number for the new type; add a forward declaration of the type also</li> + +<li><tt>llvm/include/llvm/DerivedType.h</tt>: + add new class to represent new class in the hierarchy; add forward + declaration to the TypeMap value type</li> + +<li><tt>llvm/lib/VMCore/Type.cpp</tt>: + add support for derived type to: + std::string getTypeDescription(const Type &Ty, + std::vector<const Type *> &TypeStack) + bool TypesEqual(const Type* Ty, const Type *Ty2, + std::map<const Type *, const Type *> & EqTypes) + add necessary member functions for type, and factory + methods</li> + +<li><tt>llvm/lib/AsmReader/Lexer.l</tt>: + add ability to parse in the type from text assembly</li> + +<li><tt>llvm/lib/ByteCode/Writer/Writer.cpp</tt>: + modify void BytecodeWriter::outputType(const Type *T) to + serialize your type</li> + +<li><tt>llvm/lib/ByteCode/Reader/Reader.cpp</tt>: + modify const Type *BytecodeReader::ParseType() to + read your data type</li> + +<li><tt>llvm/lib/VMCore/AsmWriter.cpp</tt>: + modify void calcTypeName(const Type *Ty, + std::vector<const Type *> &TypeStack, + std::map<const Type *,std::string> &TypeNames, + std::string & Result) + to output the new derived type +</li> + + +</ol> </div> |