Lines Matching defs:BitModeTy
217 enum class BitModeTy { Bit32, Bit64, Bit32_64, Any, Unknown };
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)))
1286 static BitModeTy getBitMode(const char *RawBitMode) {
1287 return StringSwitch<BitModeTy>(RawBitMode)
1288 .Case("32", BitModeTy::Bit32)
1289 .Case("64", BitModeTy::Bit64)
1290 .Case("32_64", BitModeTy::Bit32_64)
1291 .Case("any", BitModeTy::Any)
1292 .Default(BitModeTy::Unknown);
1347 if (BitMode == BitModeTy::Unknown)
1348 BitMode = BitModeTy::Bit32;
1410 if (BitMode == BitModeTy::Unknown)
1454 BitMode = BitModeTy::Unknown;
1458 if (BitMode == BitModeTy::Unknown)
1483 if (BitMode == BitModeTy::Unknown)
1490 case BitModeTy::Bit32:
1493 case BitModeTy::Bit64: