forked from OSchip/llvm-project
StringRef-ify Binary/UnaryOperator::getOpcodeStr
llvm-svn: 165383
This commit is contained in:
parent
bc3a602929
commit
1d202a6bae
|
@ -1613,7 +1613,7 @@ public:
|
||||||
|
|
||||||
/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
|
/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
|
||||||
/// corresponds to, e.g. "sizeof" or "[pre]++"
|
/// corresponds to, e.g. "sizeof" or "[pre]++"
|
||||||
static const char *getOpcodeStr(Opcode Op);
|
static StringRef getOpcodeStr(Opcode Op);
|
||||||
|
|
||||||
/// \brief Retrieve the unary opcode that corresponds to the given
|
/// \brief Retrieve the unary opcode that corresponds to the given
|
||||||
/// overloaded operator.
|
/// overloaded operator.
|
||||||
|
@ -2836,9 +2836,9 @@ public:
|
||||||
|
|
||||||
/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
|
/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
|
||||||
/// corresponds to, e.g. "<<=".
|
/// corresponds to, e.g. "<<=".
|
||||||
static const char *getOpcodeStr(Opcode Op);
|
static StringRef getOpcodeStr(Opcode Op);
|
||||||
|
|
||||||
const char *getOpcodeStr() const { return getOpcodeStr(getOpcode()); }
|
StringRef getOpcodeStr() const { return getOpcodeStr(getOpcode()); }
|
||||||
|
|
||||||
/// \brief Retrieve the binary opcode that corresponds to the given
|
/// \brief Retrieve the binary opcode that corresponds to the given
|
||||||
/// overloaded operator.
|
/// overloaded operator.
|
||||||
|
|
|
@ -808,7 +808,7 @@ namespace clang {
|
||||||
void NoteCandidates(Sema &S,
|
void NoteCandidates(Sema &S,
|
||||||
OverloadCandidateDisplayKind OCD,
|
OverloadCandidateDisplayKind OCD,
|
||||||
llvm::ArrayRef<Expr *> Args,
|
llvm::ArrayRef<Expr *> Args,
|
||||||
const char *Opc = 0,
|
StringRef Opc = "",
|
||||||
SourceLocation Loc = SourceLocation());
|
SourceLocation Loc = SourceLocation());
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -869,7 +869,7 @@ getLocationOfByte(unsigned ByteNo, const SourceManager &SM,
|
||||||
|
|
||||||
/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
|
/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
|
||||||
/// corresponds to, e.g. "sizeof" or "[pre]++".
|
/// corresponds to, e.g. "sizeof" or "[pre]++".
|
||||||
const char *UnaryOperator::getOpcodeStr(Opcode Op) {
|
StringRef UnaryOperator::getOpcodeStr(Opcode Op) {
|
||||||
switch (Op) {
|
switch (Op) {
|
||||||
case UO_PostInc: return "++";
|
case UO_PostInc: return "++";
|
||||||
case UO_PostDec: return "--";
|
case UO_PostDec: return "--";
|
||||||
|
@ -1570,7 +1570,7 @@ CStyleCastExpr *CStyleCastExpr::CreateEmpty(ASTContext &C, unsigned PathSize) {
|
||||||
|
|
||||||
/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
|
/// getOpcodeStr - Turn an Opcode enum value into the punctuation char it
|
||||||
/// corresponds to, e.g. "<<=".
|
/// corresponds to, e.g. "<<=".
|
||||||
const char *BinaryOperator::getOpcodeStr(Opcode Op) {
|
StringRef BinaryOperator::getOpcodeStr(Opcode Op) {
|
||||||
switch (Op) {
|
switch (Op) {
|
||||||
case BO_PtrMemD: return ".*";
|
case BO_PtrMemD: return ".*";
|
||||||
case BO_PtrMemI: return "->*";
|
case BO_PtrMemI: return "->*";
|
||||||
|
|
|
@ -501,7 +501,7 @@ static void DiagUninitUse(Sema &S, const VarDecl *VD, const UninitUse &Use,
|
||||||
|
|
||||||
// Information used when building the diagnostic.
|
// Information used when building the diagnostic.
|
||||||
unsigned DiagKind;
|
unsigned DiagKind;
|
||||||
const char *Str;
|
StringRef Str;
|
||||||
SourceRange Range;
|
SourceRange Range;
|
||||||
|
|
||||||
// FixIts to suppress the diagnosic by removing the dead condition.
|
// FixIts to suppress the diagnosic by removing the dead condition.
|
||||||
|
|
|
@ -8464,8 +8464,8 @@ static void DiagnoseBitwisePrecedence(Sema &Self, BinaryOperatorKind Opc,
|
||||||
SourceRange DiagRange = isLeftComp ? SourceRange(LHSExpr->getLocStart(),
|
SourceRange DiagRange = isLeftComp ? SourceRange(LHSExpr->getLocStart(),
|
||||||
OpLoc)
|
OpLoc)
|
||||||
: SourceRange(OpLoc, RHSExpr->getLocEnd());
|
: SourceRange(OpLoc, RHSExpr->getLocEnd());
|
||||||
std::string OpStr = isLeftComp ? BinOp::getOpcodeStr(LHSopc)
|
StringRef OpStr = isLeftComp ? BinOp::getOpcodeStr(LHSopc)
|
||||||
: BinOp::getOpcodeStr(RHSopc);
|
: BinOp::getOpcodeStr(RHSopc);
|
||||||
SourceRange ParensRange = isLeftComp ?
|
SourceRange ParensRange = isLeftComp ?
|
||||||
SourceRange(cast<BinOp>(LHSExpr)->getRHS()->getLocStart(),
|
SourceRange(cast<BinOp>(LHSExpr)->getRHS()->getLocStart(),
|
||||||
RHSExpr->getLocEnd())
|
RHSExpr->getLocEnd())
|
||||||
|
|
|
@ -8537,7 +8537,7 @@ void NoteSurrogateCandidate(Sema &S, OverloadCandidate *Cand) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void NoteBuiltinOperatorCandidate(Sema &S,
|
void NoteBuiltinOperatorCandidate(Sema &S,
|
||||||
const char *Opc,
|
StringRef Opc,
|
||||||
SourceLocation OpLoc,
|
SourceLocation OpLoc,
|
||||||
OverloadCandidate *Cand) {
|
OverloadCandidate *Cand) {
|
||||||
assert(Cand->NumConversions <= 2 && "builtin operator is not binary");
|
assert(Cand->NumConversions <= 2 && "builtin operator is not binary");
|
||||||
|
@ -8806,7 +8806,7 @@ void CompleteNonViableCandidate(Sema &S, OverloadCandidate *Cand,
|
||||||
void OverloadCandidateSet::NoteCandidates(Sema &S,
|
void OverloadCandidateSet::NoteCandidates(Sema &S,
|
||||||
OverloadCandidateDisplayKind OCD,
|
OverloadCandidateDisplayKind OCD,
|
||||||
llvm::ArrayRef<Expr *> Args,
|
llvm::ArrayRef<Expr *> Args,
|
||||||
const char *Opc,
|
StringRef Opc,
|
||||||
SourceLocation OpLoc) {
|
SourceLocation OpLoc) {
|
||||||
// Sort the candidates by viability and position. Sorting directly would
|
// Sort the candidates by viability and position. Sorting directly would
|
||||||
// be prohibitive, so we make a set of pointers and sort those.
|
// be prohibitive, so we make a set of pointers and sort those.
|
||||||
|
|
Loading…
Reference in New Issue