Searched refs:OpStr (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp635 static unsigned getIntelMemOperandSize(StringRef OpStr) { argument
637 if (OpStr == "BYTE") Size = 8;
638 if (OpStr == "WORD") Size = 16;
639 if (OpStr == "DWORD") Size = 32;
640 if (OpStr == "QWORD") Size = 64;
641 if (OpStr == "XWORD") Size = 80;
642 if (OpStr == "XMMWORD") Size = 128;
643 if (OpStr == "YMMWORD") Size = 256;
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp180 const char *OpStr = 0; local
182 case scAddExpr: OpStr = " + "; break;
183 case scMulExpr: OpStr = " * "; break;
184 case scUMaxExpr: OpStr = " umax "; break;
185 case scSMaxExpr: OpStr = " smax "; break;
192 OS << OpStr; local
/external/clang/lib/Sema/
H A DSemaExpr.cpp8397 std::string OpStr = isLeftComp ? BinOp::getOpcodeStr(LHSopc) local
8406 << DiagRange << BinOp::getOpcodeStr(Opc) << OpStr;
8408 Self.PDiag(diag::note_precedence_bitwise_silence) << OpStr,

Completed in 164 milliseconds