index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
clang
/
lib
/
Sema
/
SemaStmtAsm.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Update for r164567.
Chad Rosier
2012-09-24
1
-2
/
+2
*
Replace an assertion with an error for empty __asm statements.
Bob Wilson
2012-09-24
1
-4
/
+12
*
Fix a comment typo and clean up formatting.
Bob Wilson
2012-09-24
1
-4
/
+5
*
[ms-inline asm] Use mnemonicIsValid() in a helpful assert.
Chad Rosier
2012-09-21
1
-0
/
+2
*
Add a few FIXMEs.
Chad Rosier
2012-09-13
1
-0
/
+3
*
[ms-inline asm] Handle the enumeration of input and output expressions in a
Chad Rosier
2012-09-13
1
-35
/
+105
*
[ms-inline asm] If we have a single asm operand that maps to multiple
Chad Rosier
2012-09-12
1
-55
/
+53
*
[ms-inline asm] isDef/NumDefs in this context only refer to register definiti...
Chad Rosier
2012-09-11
1
-3
/
+2
*
[ms-inline asm] As of r163657 this check is unnecessary.
Chad Rosier
2012-09-11
1
-5
/
+0
*
[ms-inline asm] Don't consider tokens or immediates when computing clobbers, ...
Chad Rosier
2012-09-11
1
-0
/
+4
*
[ms-inline asm] Add $$ before numeric constants in the IR.
Chad Rosier
2012-09-11
1
-8
/
+13
*
[ms-inline asm] Output empty asm statements for the directives we don't
Chad Rosier
2012-09-06
1
-10
/
+7
*
[ms-inline asm] The IR representation of inline assembly enumerates the input
Chad Rosier
2012-09-06
1
-0
/
+25
*
Update for r163187.
Chad Rosier
2012-09-05
1
-1
/
+1
*
[ms-inline asm] The MCInstrDesc only tracks register definitions. For now,
Chad Rosier
2012-09-04
1
-1
/
+2
*
Fix 80-column violation.
Chad Rosier
2012-09-04
1
-2
/
+2
*
[ms-inline asm] Use the new GetMCInstOperandNum() interface in the front-end.
Chad Rosier
2012-09-03
1
-3
/
+20
*
Removed unused argument.
Chad Rosier
2012-09-03
1
-3
/
+2
*
[ms-inline asm] Update for the MatchInstruction API change in r163101.
Chad Rosier
2012-09-03
1
-5
/
+7
*
Revert r162424 now that the scoping issue has been fixed in r162444.
Chad Rosier
2012-08-28
1
-2
/
+2
*
Tidy up.
Chad Rosier
2012-08-28
1
-1
/
+1
*
[ms-inline asm] Add constraints to MSAsmStmt. We don't currently compute
Chad Rosier
2012-08-28
1
-8
/
+23
*
[ms-inline asm] As part of a larger refactoring, rename AsmStmt to GCCAsmStmt.
Chad Rosier
2012-08-25
1
-13
/
+13
*
[ms-inline asm] Change the -fenable-experimental-ms-inline-asm option from a
Chad Rosier
2012-08-24
1
-2
/
+0
*
Remove unnecessary calls to c_str.
Benjamin Kramer
2012-08-24
1
-3
/
+3
*
[ms-inline asm] Generate the Input/Output expressions using
Chad Rosier
2012-08-24
1
-7
/
+14
*
Fix 80-column violation.
Chad Rosier
2012-08-24
1
-1
/
+2
*
[ms-inline asm] Add the basic APIs for Exprs to the MSAsmStmt AST. Next we need
Chad Rosier
2012-08-24
1
-4
/
+16
*
Now that ASTMultiPtr is nothing more than a array reference, make it a Mutabl...
Benjamin Kramer
2012-08-23
1
-3
/
+3
*
[ms-inline asm] Rename a few induction variables to avoid confusion and silence
Chad Rosier
2012-08-23
1
-7
/
+7
*
Don't recycle loop variables (to keep GCC happy).
Matt Beaumont-Gay
2012-08-23
1
-2
/
+2
*
Fix 80-column violation.
Chad Rosier
2012-08-23
1
-1
/
+3
*
[ms-inline asm] Compute the inputs and outputs. No test case (yet) as this
Chad Rosier
2012-08-22
1
-1
/
+28
*
[ms-inline asm] Refactor code so that we can begin computing the Inputs/Outputs.
Chad Rosier
2012-08-22
1
-11
/
+19
*
[ms-inline asm] Add comments.
Chad Rosier
2012-08-22
1
-1
/
+3
*
[ms-inline asm] Add comments.
Chad Rosier
2012-08-22
1
-1
/
+6
*
[ms-inline asm] Add helper function. No functional change intended.
Chad Rosier
2012-08-22
1
-2
/
+7
*
[ms-inline asm] Simplify logic. No functional change intended.
Chad Rosier
2012-08-22
1
-7
/
+2
*
[ms-inline asm] Compute the token range for each instruction within the asm.
Chad Rosier
2012-08-22
1
-4
/
+9
*
[ms-inline asm] Simplify logic. No functional change intended.
Chad Rosier
2012-08-22
1
-5
/
+11
*
[ms-inline asm] Start sending non-simple inline asms to the AsmParser.
Chad Rosier
2012-08-22
1
-15
/
+27
*
[ms-inline asm] Remove the patchMSAsmStrings function. After some discussion
Chad Rosier
2012-08-21
1
-134
/
+17
*
[ms-inline asm] Have buildMSAsmString build a vector of unmodified AsmStrings.
Chad Rosier
2012-08-21
1
-7
/
+35
*
[ms-inline asm] Do not report a Parser error when matching inline assembly.
Chad Rosier
2012-08-21
1
-1
/
+2
*
[ms-inline asm] Expose the ErrorInfo from the MatchInstructionImpl. In general,
Chad Rosier
2012-08-21
1
-1
/
+3
*
[ms-inline asm] Append identifier for better debugging.
Chad Rosier
2012-08-21
1
-0
/
+1
*
[ms-inline asm] Remove this test case and the associated special case code.
Chad Rosier
2012-08-21
1
-6
/
+0
*
[ms-inline asm] Remove old cruft now that MS-style asms their own code path.
Chad Rosier
2012-08-20
1
-4
/
+4
*
[ms-inline asm] Update comment.
Chad Rosier
2012-08-17
1
-1
/
+1
*
[ms-inline asm] Extract AsmStmt handling into a separate file, so as to not
Chad Rosier
2012-08-17
1
-0
/
+635
[prev]