mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-23 20:34:58 +00:00
[ms-inline asm] Add a new AsmRewriteKind, AOK_Delete. To be used in a future
commit. Part of rdar://13453209 llvm-svn: 179325
This commit is contained in:
parent
b3012065df
commit
9450b92496
@ -22,7 +22,8 @@ class MCInst;
|
||||
template <typename T> class SmallVectorImpl;
|
||||
|
||||
enum AsmRewriteKind {
|
||||
AOK_Align = 0, // Rewrite align as .align.
|
||||
AOK_Delete = 0, // Rewrite should be ignored.
|
||||
AOK_Align, // Rewrite align as .align.
|
||||
AOK_DotOperator, // Rewrite a dot operator expression as an immediate.
|
||||
// E.g., [eax].foo.bar -> [eax].8
|
||||
AOK_Emit, // Rewrite _emit as .byte.
|
||||
@ -35,15 +36,16 @@ enum AsmRewriteKind {
|
||||
};
|
||||
|
||||
const char AsmRewritePrecedence [] = {
|
||||
0, // AOK_Align
|
||||
0, // AOK_DotOperator
|
||||
0, // AOK_Emit
|
||||
2, // AOK_Imm
|
||||
2, // AOK_ImmPrefix
|
||||
1, // AOK_Input
|
||||
1, // AOK_Output
|
||||
3, // AOK_SizeDirective
|
||||
0 // AOK_Skip
|
||||
0, // AOK_Delete
|
||||
1, // AOK_Align
|
||||
1, // AOK_DotOperator
|
||||
1, // AOK_Emit
|
||||
3, // AOK_Imm
|
||||
3, // AOK_ImmPrefix
|
||||
2, // AOK_Input
|
||||
2, // AOK_Output
|
||||
4, // AOK_SizeDirective
|
||||
1 // AOK_Skip
|
||||
};
|
||||
|
||||
struct AsmRewrite {
|
||||
|
Loading…
x
Reference in New Issue
Block a user