mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-22 19:49:49 +00:00
bug 263:
Provide parsing for the target triple and dependent libraries. llvm-svn: 15209
This commit is contained in:
parent
282e14928d
commit
4b76a409e5
@ -912,7 +912,8 @@ Module *llvm::RunVMAsmParser(const std::string &Filename, FILE *F) {
|
|||||||
%token IMPLEMENTATION ZEROINITIALIZER TRUETOK FALSETOK BEGINTOK ENDTOK
|
%token IMPLEMENTATION ZEROINITIALIZER TRUETOK FALSETOK BEGINTOK ENDTOK
|
||||||
%token DECLARE GLOBAL CONSTANT VOLATILE
|
%token DECLARE GLOBAL CONSTANT VOLATILE
|
||||||
%token TO DOTDOTDOT NULL_TOK CONST INTERNAL LINKONCE WEAK APPENDING
|
%token TO DOTDOTDOT NULL_TOK CONST INTERNAL LINKONCE WEAK APPENDING
|
||||||
%token OPAQUE NOT EXTERNAL TARGET ENDIAN POINTERSIZE LITTLE BIG
|
%token OPAQUE NOT EXTERNAL TARGET TRIPLE ENDIAN POINTERSIZE LITTLE BIG
|
||||||
|
%token DEPLIBS
|
||||||
|
|
||||||
// Basic Block Terminating Operators
|
// Basic Block Terminating Operators
|
||||||
%token <TermOpVal> RET BR SWITCH INVOKE UNWIND
|
%token <TermOpVal> RET BR SWITCH INVOKE UNWIND
|
||||||
@ -1422,6 +1423,8 @@ ConstPool : ConstPool OptAssign TYPE TypesV { // Types can be defined in the co
|
|||||||
}
|
}
|
||||||
| ConstPool TARGET TargetDefinition {
|
| ConstPool TARGET TargetDefinition {
|
||||||
}
|
}
|
||||||
|
| ConstPool DEPLIBS '=' LibrariesDefinition {
|
||||||
|
}
|
||||||
| /* empty: end of list */ {
|
| /* empty: end of list */ {
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -1440,8 +1443,26 @@ TargetDefinition : ENDIAN '=' BigOrLittle {
|
|||||||
CurModule.CurrentModule->setPointerSize(Module::Pointer64);
|
CurModule.CurrentModule->setPointerSize(Module::Pointer64);
|
||||||
else
|
else
|
||||||
ThrowException("Invalid pointer size: '" + utostr($3) + "'!");
|
ThrowException("Invalid pointer size: '" + utostr($3) + "'!");
|
||||||
|
}
|
||||||
|
| TRIPLE '=' STRINGCONSTANT {
|
||||||
|
std::string triple($3);
|
||||||
|
CurModule.CurrentModule->setTargetTriple(triple);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
LibrariesDefinition : '[' LibList ']'
|
||||||
|
;
|
||||||
|
|
||||||
|
LibList : LibList ',' STRINGCONSTANT {
|
||||||
|
std::string lib($3);
|
||||||
|
CurModule.CurrentModule->linsert(lib);
|
||||||
|
}
|
||||||
|
| STRINGCONSTANT {
|
||||||
|
std::string lib($1);
|
||||||
|
CurModule.CurrentModule->linsert(lib);
|
||||||
|
}
|
||||||
|
| /* empty: end of list */ {
|
||||||
|
}
|
||||||
|
;
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
// Rules to match Function Headers
|
// Rules to match Function Headers
|
||||||
|
Loading…
Reference in New Issue
Block a user