reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/AsmParser/LLParser.cpp
  186     return Error(ForwardRefBlockAddresses.begin()->first.Loc,
 3070   ID.Loc = Lex.getLoc();
 3149       return Error(ID.Loc, "constant vector must not be empty");
 3243       return Error(Fn.Loc, "expected function name in blockaddress");
 3245       return Error(Label.Loc, "expected basic block name in blockaddress");
 3259         return Error(Fn.Loc, "expected function name in blockaddress");
 3262         return Error(Fn.Loc, "cannot take blockaddress inside a declaration");
 3286         BB = BlockAddressPFS->GetBB(Label.UIntVal, Label.Loc);
 3288         BB = BlockAddressPFS->GetBB(Label.StrVal, Label.Loc);
 3290         return Error(Label.Loc, "referenced value is not a basic block");
 3293         return Error(Label.Loc, "cannot take address of numeric label after "
 3298         return Error(Label.Loc, "referenced value is not a basic block");
 3330       return Error(ID.Loc, "invalid cast opcode for cast from '" +
 3349       return Error(ID.Loc, "extractvalue operand must be aggregate type");
 3351       return Error(ID.Loc, "invalid indices for extractvalue");
 3368       return Error(ID.Loc, "insertvalue operand must be aggregate type");
 3372       return Error(ID.Loc, "invalid indices for insertvalue");
 3374       return Error(ID.Loc, "insertvalue operand and field disagree in type: '" +
 3396       return Error(ID.Loc, "compare operands must have the same type");
 3402         return Error(ID.Loc, "fcmp requires floating point operands");
 3408         return Error(ID.Loc, "icmp requires pointer or integer operands");
 3429         return Error(ID.Loc, "constexpr requires fp operands");
 3482       return Error(ID.Loc, "operands of constexpr must have same type");
 3496         return Error(ID.Loc, "constexpr requires integer operands");
 3504         return Error(ID.Loc, "constexpr requires fp operands");
 3532       return Error(ID.Loc, "operands of constexpr must have same type");
 3534       return Error(ID.Loc,
 3574         return Error(ID.Loc, "base of getelementptr must be a pointer");
 3590           return Error(ID.Loc, "getelementptr index must be an integer");
 3595                 ID.Loc,
 3605         return Error(ID.Loc, "base element of getelementptr must be sized");
 3608         return Error(ID.Loc, "invalid getelementptr indices");
 3612           return Error(ID.Loc,
 3621         return Error(ID.Loc, "expected three operands to select");
 3624         return Error(ID.Loc, Reason);
 3628         return Error(ID.Loc, "expected three operands to shufflevector");
 3630         return Error(ID.Loc, "invalid operands to shufflevector");
 3635         return Error(ID.Loc, "expected two operands to extractelement");
 3637         return Error(ID.Loc, "invalid extractelement operands");
 3642       return Error(ID.Loc, "expected three operands to insertelement");
 3644         return Error(ID.Loc, "invalid insertelement operands");
 3666     return Error(ID.Loc, "global values must be constants");
 5136     return Error(ID.Loc, "functions are not values, refer to them as pointers");
 5140     if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
 5141     V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc, IsCall);
 5144     if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
 5145     V = PFS->GetVal(ID.StrVal, Ty, ID.Loc, IsCall);
 5149       return Error(ID.Loc, "invalid type for inline asm constraint string");
 5156     V = GetGlobalVal(ID.StrVal, Ty, ID.Loc, IsCall);
 5159     V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc, IsCall);
 5163       return Error(ID.Loc, "integer constant must have integer type");
 5170       return Error(ID.Loc, "floating point constant invalid for type");
 5186       return Error(ID.Loc, "floating point constant does not have type '" +
 5192       return Error(ID.Loc, "null must be a pointer type");
 5198       return Error(ID.Loc, "invalid type for undef constant");
 5203       return Error(ID.Loc, "invalid empty array initializer");
 5209       return Error(ID.Loc, "invalid type for null constant");
 5214       return Error(ID.Loc, "invalid type for none constant");
 5219       return Error(ID.Loc, "constant expression type mismatch");
 5227         return Error(ID.Loc,
 5230         return Error(ID.Loc, "packed'ness of initializer and type don't match");
 5235           return Error(ID.Loc, "element " + Twine(i) +
 5241       return Error(ID.Loc, "constant expression type mismatch");
 5534     return Error(Blocks->first.Loc,
 5561       BB = GetBB(BBID.StrVal, BBID.Loc);
 5563       BB = GetBB(BBID.UIntVal, BBID.Loc);
 5565       return P.Error(BBID.Loc, "referenced value is not a basic block");
 7428     return Error(Fn.Loc, "expected function name in uselistorder_bb");
 7430     return Error(Fn.Loc, "invalid function forward reference in uselistorder_bb");
 7433     return Error(Fn.Loc, "expected function name in uselistorder_bb");
 7435     return Error(Fn.Loc, "invalid declaration in uselistorder_bb");
 7439     return Error(Label.Loc, "invalid numeric label in uselistorder_bb");
 7441     return Error(Label.Loc, "expected basic block name in uselistorder_bb");
 7444     return Error(Label.Loc, "invalid basic block in uselistorder_bb");
 7446     return Error(Label.Loc, "expected basic block in uselistorder_bb");
lib/AsmParser/LLParser.h
   71         : Kind(RHS.Kind), Loc(RHS.Loc), UIntVal(RHS.UIntVal), FTy(RHS.FTy),