[llvm-commits] CVS: llvm/docs/ExtendingLLVM.html

Misha Brukman brukman at cs.uiuc.edu
Thu Aug 12 12:58:53 PDT 2004



Changes in directory llvm/docs:

ExtendingLLVM.html updated: 1.10 -> 1.11
---
Log message:

* Escape &, <, and >
* Wrap code in <tt> or for larger blocks, <div class="doc_text">
* Wrap lines at 80 cols


---
Diffs of the changes:  (+25 -16)

Index: llvm/docs/ExtendingLLVM.html
diff -u llvm/docs/ExtendingLLVM.html:1.10 llvm/docs/ExtendingLLVM.html:1.11
--- llvm/docs/ExtendingLLVM.html:1.10	Thu Aug 12 14:06:24 2004
+++ llvm/docs/ExtendingLLVM.html	Thu Aug 12 14:58:43 2004
@@ -220,7 +220,8 @@
     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>
+    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 
@@ -228,29 +229,37 @@
 
 <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>
+<div class="doc_code">
+<pre>
+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)
+</pre>
+</div>
+    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>
+    modify <tt>void BytecodeWriter::outputType(const Type *T)</tt> 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> 
+    modify <tt>const Type *BytecodeReader::ParseType()</tt> 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)
+    modify
+<div class="doc_code">
+<pre>
+void calcTypeName(const Type *Ty,
+                  std::vector<const Type*> &TypeStack,
+                  std::map<const Type*,std::string> &TypeNames,
+                  std::string & Result)
+</pre>
+</div>
     to output the new derived type
 </li>  
  
@@ -271,7 +280,7 @@
   <a href="http://misha.brukman.net">Misha Brukman</a><br>
   <a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a>
   <br>
-  Last modified: $Date: 2004/08/12 19:06:24 $
+  Last modified: $Date: 2004/08/12 19:58:43 $
 </address>
 
 </body>






More information about the llvm-commits mailing list