From 547aed434e4ba016cdc691296b25e5b6a232a356 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 21 Sep 2010 04:03:39 +0000 Subject: [PATCH] random cruft in my tree. llvm-svn: 114387 --- docs/CodeGenerator.html | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/docs/CodeGenerator.html b/docs/CodeGenerator.html index 7185f4d0a62..0041b866f88 100644 --- a/docs/CodeGenerator.html +++ b/docs/CodeGenerator.html @@ -1862,18 +1862,35 @@ to implement an assembler for your target.

- +
Implementing a Native Assembler
+
-

TODO

+

Though you're probably reading this because you want to write or maintain a +compiler backend, LLVM also fully supports building a native assemblers too. +We've tried hard to automate the generation of the assembler from the .td files +(in particular the instruction syntax and encodings), which means that a large +part of the manual and repetitive data entry can be factored and shared with the +compiler.

+ +
+ +
+ Prolog/Epilog Code Insertion +
+

To Be Written

+ + + +
Target-specific Implementation Notes