Lines Matching defs:BitMode
219 static BitModeTy BitMode = BitModeTy::Bit32;
646 if (BitMode == BitModeTy::Bit32_64 || BitMode == BitModeTy::Any)
651 if ((Is64Bit && (BitMode == BitModeTy::Bit32)) ||
652 (!Is64Bit && (BitMode == BitModeTy::Bit64)))
1343 // Get BitMode from enviorment variable "OBJECT_MODE" for AIX OS, if
1346 BitMode = getBitMode(getenv("OBJECT_MODE"));
1347 if (BitMode == BitModeTy::Unknown)
1348 BitMode = BitModeTy::Bit32;
1409 BitMode = getBitMode(Match);
1410 if (BitMode == BitModeTy::Unknown)
1452 BitMode = getBitMode(argv[++i]);
1454 BitMode = BitModeTy::Unknown;
1456 BitMode = getBitMode(arg.data());
1458 if (BitMode == BitModeTy::Unknown)
1478 // If not specify -X option, get BitMode from enviorment variable
1482 BitMode = getBitMode(EnvObjectMode);
1483 if (BitMode == BitModeTy::Unknown)
1489 switch (BitMode) {