index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
CodeGen
/
AsmPrinter
/
AsmPrinterInlineAsm.cpp
Age
Commit message (
Expand
)
Author
2013-02-11
Revert "Rename LLVMContext diagnostic handler types and functions."
Bob Wilson
2013-01-02
Move all of the header files which are involved in modelling the LLVM IR
Chandler Carruth
2012-12-25
Rename LLVMContext diagnostic handler types and functions.
Bob Wilson
2012-12-03
Use the new script to sort the includes of every file under lib.
Chandler Carruth
2012-09-11
[ms-inline asm] Split the parsing of IR asm strings into GCC and MS variants.
Chad Rosier
2012-09-10
[ms-inline asm] Properly emit the asm directives when the AsmPrinterVariant
Chad Rosier
2012-09-10
[ms-inline asm] Pass the correct AsmVariant to the PrintAsmOperand() function
Chad Rosier
2012-09-07
Fix indent.
Chad Rosier
2012-09-07
Update function names to conform to guidelines. No functional change intended.
Chad Rosier
2012-09-05
[ms-inline asm] Use the asm dialect from the MI to set the parser dialect.
Chad Rosier
2012-06-21
The inline asm operand modifier 'n' is suppose
Jack Carter
2012-06-21
The inline asm operand modifier 'c' is suppose
Jack Carter
2012-05-08
Formatting fixes.
Akira Hatanaka
2012-03-22
In erroneous inline assembly we could mistakenly try to access the
Eric Christopher
2011-09-21
Tidy up. Whitepsace.
Jim Grosbach
2011-08-24
Move TargetRegistry and TargetSelect from Target to Support where they belong.
Evan Cheng
2011-08-16
Remove unused Target argument from AsmParser construction methods.
Jim Grosbach
2011-07-26
Rename TargetAsmParser to MCTargetAsmParser and TargetAsmLexer to MCTargetAsm...
Evan Cheng
2011-07-23
Move TargetAsmParser.h TargetAsmBackend.h and TargetAsmLexer.h to MC where th...
Evan Cheng
2011-07-09
Change createAsmParser to take a MCSubtargetInfo instead of triple,
Evan Cheng
2011-07-08
Eliminate asm parser's dependency on TargetMachine:
Evan Cheng
2011-01-07
Do not model all INLINEASM instructions as having unmodelled side effects.
Evan Cheng
2010-11-17
With the newly simplified SourceMgr interfaces and the generalized
Chris Lattner
2010-11-17
now that AsmPrinter::EmitInlineAsm is factored right, we can eliminate the
Chris Lattner
2010-11-17
rearrange how the handler in SourceMgr is installed, eliminating the use of
Chris Lattner
2010-11-17
refactor the interface to EmitInlineAsm a bit, no functionality change.
Chris Lattner
2010-10-01
Nuke trailing whitespace.
Jim Grosbach
2010-07-19
Target: Give the TargetAsmParser access to the TargetMachine.
Daniel Dunbar
2010-07-18
MC: Move several clients to using AsmParser constructor function.
Daniel Dunbar
2010-07-15
a more graceful fix for test/Other/inline-asm-newline-terminator.ll,
Chris Lattner
2010-07-02
Propagate the AlignStack bit in InlineAsm's to the
Dale Johannesen
2010-07-01
MC: Pass the target instance to the AsmParser constructor.
Daniel Dunbar
2010-05-14
Inline Asm: Ensure buffer is newline terminated to match how the text is prin...
Daniel Dunbar
2010-04-08
implicit defs get added to the end of machine instrs sometimes. Scan the who...
Chris Lattner
2010-04-08
Use twines to simplify calls to report_fatal_error. For code size and readabi...
Benjamin Kramer
2010-04-07
introduce a new recoverable error handling API to LLVMContext
Chris Lattner
2010-04-07
rename llvm::llvm_report_error -> llvm::report_fatal_error
Chris Lattner
2010-04-07
Have the inst emitter add the !srcloc mdnode to the machine instr.
Chris Lattner
2010-04-07
remove another magic number.
Chris Lattner
2010-04-06
propagate cookie management out one layer of function calls.
Chris Lattner
2010-04-06
report errors through LLVMContext's inline asm handler if available.
Chris Lattner
2010-04-05
Give AsmParser an option to control whether it finalizes
Chris Lattner
2010-04-05
add .o file writing for inline asm in llc. Here's a silly
Chris Lattner
2010-04-05
stringref-ize the MemoryBuffer::get apis. This requires
Chris Lattner
2010-04-04
move uleb/sleb printing into AsmPrinter from DwarfPrinter.
Chris Lattner
2010-04-04
use stringref instead of strtol to avoid errno gymnastics.
Chris Lattner
2010-04-04
split inline asm support out to its own .cpp file.
Chris Lattner