mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-13 09:33:50 +00:00
* Escape &, <, and >
* Wrap code in <tt> or for larger blocks, <div class="doc_text"> * Wrap lines at 80 cols git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15705 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a58561b917
commit
7cc8a899f5
@ -220,7 +220,8 @@ installations.</span> Only add new types if it is absolutely necessary.</p>
|
|||||||
add enum for the type</li>
|
add enum for the type</li>
|
||||||
|
|
||||||
<li><tt>llvm/include/llvm/Type.h</tt>:
|
<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>:
|
<li><tt>llvm/include/llvm/DerivedType.h</tt>:
|
||||||
add new class to represent new class in the hierarchy; add forward
|
add new class to represent new class in the hierarchy; add forward
|
||||||
@ -228,29 +229,37 @@ installations.</span> Only add new types if it is absolutely necessary.</p>
|
|||||||
|
|
||||||
<li><tt>llvm/lib/VMCore/Type.cpp</tt>:
|
<li><tt>llvm/lib/VMCore/Type.cpp</tt>:
|
||||||
add support for derived type to:
|
add support for derived type to:
|
||||||
std::string getTypeDescription(const Type &Ty,
|
<div class="doc_code">
|
||||||
std::vector<const Type *> &TypeStack)
|
<pre>
|
||||||
bool TypesEqual(const Type* Ty, const Type *Ty2,
|
std::string getTypeDescription(const Type &Ty,
|
||||||
std::map<const Type *, const Type *> & EqTypes)
|
std::vector<const Type*> &TypeStack)
|
||||||
add necessary member functions for type, and factory
|
bool TypesEqual(const Type *Ty, const Type *Ty2,
|
||||||
methods</li>
|
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>:
|
<li><tt>llvm/lib/AsmReader/Lexer.l</tt>:
|
||||||
add ability to parse in the type from text assembly</li>
|
add ability to parse in the type from text assembly</li>
|
||||||
|
|
||||||
<li><tt>llvm/lib/ByteCode/Writer/Writer.cpp</tt>:
|
<li><tt>llvm/lib/ByteCode/Writer/Writer.cpp</tt>:
|
||||||
modify void BytecodeWriter::outputType(const Type *T) to
|
modify <tt>void BytecodeWriter::outputType(const Type *T)</tt> to serialize
|
||||||
serialize your type</li>
|
your type</li>
|
||||||
|
|
||||||
<li><tt>llvm/lib/ByteCode/Reader/Reader.cpp</tt>:
|
<li><tt>llvm/lib/ByteCode/Reader/Reader.cpp</tt>:
|
||||||
modify const Type *BytecodeReader::ParseType() to
|
modify <tt>const Type *BytecodeReader::ParseType()</tt> to read your data
|
||||||
read your data type</li>
|
type</li>
|
||||||
|
|
||||||
<li><tt>llvm/lib/VMCore/AsmWriter.cpp</tt>:
|
<li><tt>llvm/lib/VMCore/AsmWriter.cpp</tt>:
|
||||||
modify void calcTypeName(const Type *Ty,
|
modify
|
||||||
std::vector<const Type *> &TypeStack,
|
<div class="doc_code">
|
||||||
std::map<const Type *,std::string> &TypeNames,
|
<pre>
|
||||||
std::string & Result)
|
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
|
to output the new derived type
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user