Searched refs:Loc (Results 226 - 250 of 601) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMIRFormatter.h28 typedef function_ref<bool(StringRef::iterator Loc, const Twine &)>
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTRecordWriter.h130 void AddSourceLocation(SourceLocation Loc) { argument
131 return Writer->AddSourceLocation(Loc, *Record);
133 void writeSourceLocation(SourceLocation Loc) { argument
134 AddSourceLocation(Loc);
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCStringSyntaxChecker.cpp222 PathDiagnosticLocation Loc = local
239 "C String API", os.str(), Loc,
247 PathDiagnosticLocation Loc = local
263 "C String API", os.str(), Loc,
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.h327 void CreateLexicalBlock(SourceLocation Loc);
350 const CGBlockInfo &Block, const ASTContext &Context, SourceLocation Loc,
388 void setLocation(SourceLocation Loc);
402 llvm::DebugLoc SourceLocToDebugLoc(SourceLocation Loc);
407 void EmitLocation(CGBuilderTy &Builder, SourceLocation Loc);
411 /// \param Loc The location of the function header.
413 void EmitFunctionStart(GlobalDecl GD, SourceLocation Loc,
425 void EmitFunctionDecl(GlobalDecl GD, SourceLocation Loc,
439 void EmitLexicalBlockStart(CGBuilderTy &Builder, SourceLocation Loc);
443 void EmitLexicalBlockEnd(CGBuilderTy &Builder, SourceLocation Loc);
[all...]
H A DCGDebugInfo.cpp127 ApplyDebugLocation::ApplyDebugLocation(CodeGenFunction &CGF, llvm::DebugLoc Loc) argument
134 if (Loc)
135 CGF.Builder.SetCurrentDebugLocation(std::move(Loc));
169 void CGDebugInfo::setLocation(SourceLocation Loc) { argument
171 if (Loc.isInvalid())
174 CurLoc = CGM.getContext().getSourceManager().getExpansionLoc(Loc);
399 llvm::DIFile *CGDebugInfo::getOrCreateFile(SourceLocation Loc) { argument
400 if (!Loc.isValid())
405 PresumedLoc PLoc = SM.getPresumedLoc(Loc);
430 return createFile(FileName, CSInfo, getSource(SM, SM.getFileID(Loc)));
479 getLineNumber(SourceLocation Loc) argument
487 getColumnNumber(SourceLocation Loc, bool Force) argument
1121 SourceLocation Loc = AliasDecl->getLocation(); local
1244 SourceLocation Loc = BitFieldDecl->getLocation(); local
1310 SourceLocation Loc = C.getLocation(); local
2051 getOrCreateRecordType(QualType RTy, SourceLocation Loc) argument
2058 getOrCreateInterfaceType(QualType D, SourceLocation Loc) argument
2063 getOrCreateStandaloneType(QualType D, SourceLocation Loc) argument
2074 addHeapAllocSiteMetadata(llvm::Instruction *CI, QualType D, SourceLocation Loc) argument
2333 SourceLocation Loc = Ty->getDecl()->getLocation(); local
2612 SourceLocation Loc = PD->getLocation(); local
3369 SourceLocation Loc = GD.getDecl()->getLocation(); local
3422 SourceLocation Loc = VD->getLocation(); local
3611 EmitFunctionStart(GlobalDecl GD, SourceLocation Loc, SourceLocation ScopeLoc, QualType FnType, llvm::Function *Fn, bool CurFuncIsThunk, CGBuilderTy &Builder) argument
3710 EmitFunctionDecl(GlobalDecl GD, SourceLocation Loc, QualType FnType, llvm::Function *Fn) argument
3821 EmitLocation(CGBuilderTy &Builder, SourceLocation Loc) argument
3833 CreateLexicalBlock(SourceLocation Loc) argument
3855 EmitLexicalBlockStart(CGBuilderTy &Builder, SourceLocation Loc) argument
3872 EmitLexicalBlockEnd(CGBuilderTy &Builder, SourceLocation Loc) argument
4238 collectDefaultFieldsForBlockLiteralDeclare( const CGBlockInfo &Block, const ASTContext &Context, SourceLocation Loc, const llvm::StructLayout &BlockLayout, llvm::DIFile *Unit, SmallVectorImpl<llvm::Metadata *> &Fields) argument
4645 auto Loc = UD.getLocation(); local
4672 auto Loc = USD.getLocation(); local
4684 auto Loc = ID.getLocation(); local
4700 auto Loc = NA.getLocation(); local
4824 SourceLocToDebugLoc(SourceLocation Loc) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseStmtAsm.cpp49 ClangAsmParserCallback(Parser &P, SourceLocation Loc, StringRef AsmString, argument
51 : TheParser(P), AsmLoc(Loc), AsmString(AsmString), AsmToks(Toks),
131 SourceLocation Loc = translateLocation(LSM, Location); local
133 TheParser.getActions().GetOrCreateMSAsmLabel(Identifier, Loc, Create);
184 SourceLocation Loc = AsmLoc; local
187 Loc = Tok.getLocation();
188 Loc = Loc.getLocWithOffset(Offset - TokOffset);
190 return Loc;
195 SourceLocation Loc local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InsertPrefetch.cpp72 if (const auto &Loc = MI.getDebugLoc())
73 if (const auto *Samples = TopSamples->findFunctionSamples(Loc))
74 return Samples->findCallTargetMapAt(FunctionSamples::getOffset(Loc),
75 Loc->getBaseDiscriminator());
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DFunction.cpp21 : P(P), Loc(F->getBeginLoc()), F(F), ArgSize(ArgSize),
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DExprCXX.h356 SourceLocation Loc; member in class:clang::CXXNamedCastExpr
372 : ExplicitCastExpr(SC, ty, VK, kind, op, PathSize, writtenTy), Loc(l),
383 SourceLocation getOperatorLoc() const { return Loc; }
388 SourceLocation getBeginLoc() const LLVM_READONLY { return Loc; }
647 CXXBoolLiteralExpr(bool Val, QualType Ty, SourceLocation Loc) argument
651 CXXBoolLiteralExprBits.Loc = Loc;
663 SourceLocation getLocation() const { return CXXBoolLiteralExprBits.Loc; }
664 void setLocation(SourceLocation L) { CXXBoolLiteralExprBits.Loc = L; }
685 CXXNullPtrLiteralExpr(QualType Ty, SourceLocation Loc) argument
1151 CXXThrowExpr(Expr *Operand, QualType Ty, SourceLocation Loc, bool IsThrownVariableInScope) argument
1211 CXXDefaultArgExpr(StmtClass SC, SourceLocation Loc, ParmVarDecl *Param, DeclContext *UsedContext) argument
1229 Create(const ASTContext &C, SourceLocation Loc, ParmVarDecl *Param, DeclContext *UsedContext) argument
1297 Create(const ASTContext &Ctx, SourceLocation Loc, FieldDecl *Field, DeclContext *UsedContext) argument
1497 setLocation(SourceLocation Loc) argument
1618 SourceLocation Loc; member in class:clang::CXXInheritedCtorInitExpr
1631 CXXInheritedCtorInitExpr(SourceLocation Loc, QualType T, CXXConstructorDecl *Ctor, bool ConstructsVirtualBase, bool InheritedFromVirtualBase) argument
2369 CXXDeleteExpr(QualType Ty, bool GlobalDelete, bool ArrayForm, bool ArrayFormAsWritten, bool UsualArrayDeleteWantsSize, FunctionDecl *OperatorDelete, Expr *Arg, SourceLocation Loc) argument
2439 PseudoDestructorTypeStorage(IdentifierInfo *II, SourceLocation Loc) argument
2593 setDestroyedType(IdentifierInfo *II, SourceLocation Loc) argument
2631 SourceLocation Loc; member in class:clang::final
2726 SourceLocation Loc; member in class:clang::ArrayTypeTraitExpr
2793 SourceLocation Loc; member in class:clang::ExpressionTraitExpr
4223 SubstNonTypeTemplateParmExpr(QualType Ty, ExprValueKind ValueKind, SourceLocation Loc, NonTypeTemplateParmDecl *Param, Expr *Replacement) argument
[all...]
H A DOpenMPClause.h73 void setLocStart(SourceLocation Loc) { StartLoc = Loc; } argument
76 void setLocEnd(SourceLocation Loc) { EndLoc = Loc; } argument
245 void setLParenLoc(SourceLocation Loc) { LParenLoc = Loc; } argument
295 void setLParenLoc(SourceLocation Loc) { LParenLoc = Loc; } argument
450 void setNameModifierLoc(SourceLocation Loc) { NameModifierLoc = Loc; } argument
453 setColonLoc(SourceLocation Loc) argument
484 setLParenLoc(SourceLocation Loc) argument
561 setLParenLoc(SourceLocation Loc) argument
632 setLParenLoc(SourceLocation Loc) argument
698 setLParenLoc(SourceLocation Loc) argument
763 setLParenLoc(SourceLocation Loc) argument
829 setLParenLoc(SourceLocation Loc) argument
903 setLParenLoc(SourceLocation Loc) argument
984 setLParenLoc(SourceLocation Loc) argument
1241 setLParenLoc(SourceLocation Loc) argument
1326 setFirstScheduleModifierLoc(SourceLocation Loc) argument
1331 setSecondScheduleModifierLoc(SourceLocation Loc) argument
1350 setLParenLoc(SourceLocation Loc) argument
1360 setCommaLoc(SourceLocation Loc) argument
1526 setLParenLoc(SourceLocation Loc) argument
2240 setKindLoc(SourceLocation Loc) argument
2242 setColonLoc(SourceLocation Loc) argument
3312 setModifierLoc(SourceLocation Loc) argument
3318 setColonLoc(SourceLocation Loc) argument
3501 setColonLoc(SourceLocation Loc) argument
4005 setDependencyLoc(SourceLocation Loc) argument
4008 setColonLoc(SourceLocation Loc) argument
4126 setLParenLoc(SourceLocation Loc) argument
5203 setLParenLoc(SourceLocation Loc) argument
5278 setLParenLoc(SourceLocation Loc) argument
5349 setLParenLoc(SourceLocation Loc) argument
5456 setLParenLoc(SourceLocation Loc) argument
5516 setLParenLoc(SourceLocation Loc) argument
5576 setLParenLoc(SourceLocation Loc) argument
5586 setCommaLoc(SourceLocation Loc) argument
5699 setDefaultmapModifierLoc(SourceLocation Loc) argument
5706 setLParenLoc(SourceLocation Loc) argument
[all...]
H A DTemplateBase.h573 void setLAngleLoc(SourceLocation Loc) { LAngleLoc = Loc; } argument
574 void setRAngleLoc(SourceLocation Loc) { RAngleLoc = Loc; } argument
594 void addArgument(const TemplateArgumentLoc &Loc) { argument
595 Arguments.push_back(Loc);
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSimpleSValBuilder.cpp28 SVal evalCastFromLoc(Loc val, QualType castTy) override;
41 Loc lhs, Loc rhs, QualType resultTy) override;
43 Loc lhs, NonLoc rhs, QualType resultTy) override;
69 assert(Val.getAs<Loc>() || Val.getAs<NonLoc>());
70 return Val.getAs<Loc>() ? evalCastFromLoc(Val.castAs<Loc>(), CastTy)
75 bool isLocType = Loc::isLocType(castTy);
130 SVal SimpleSValBuilder::evalCastFromLoc(Loc val, QualType castTy) {
138 if (Loc
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DScalarEvolutionExpander.h217 /// instructions will be at position \p Loc. The result will be of type i1
219 Value *expandCodeForPredicate(const SCEVPredicate *Pred, Instruction *Loc);
224 Instruction *Loc);
227 Value *generateOverflowCheck(const SCEVAddRecExpr *AR, Instruction *Loc,
232 Value *expandWrapPredicate(const SCEVWrapPredicate *P, Instruction *Loc);
237 Instruction *Loc);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DStatepointLowering.cpp266 SDValue Loc = local
268 Builder.StatepointLowering.setLocation(Incoming, Loc);
370 SDValue Loc = Builder.StatepointLowering.getLocation(Incoming); local
374 if (!Loc.getNode()) {
375 Loc = Builder.StatepointLowering.allocateStackSlot(Incoming.getValueType(),
377 int Index = cast<FrameIndexSDNode>(Loc)->getIndex();
379 Loc = Builder.DAG.getTargetFrameIndex(Index, Builder.getFrameIndexTy());
400 Chain = Builder.DAG.getStore(Chain, Builder.getCurSDLoc(), Incoming, Loc,
403 MMO = getMachineMemOperand(MF, *cast<FrameIndexSDNode>(Loc));
405 Builder.StatepointLowering.setLocation(Incoming, Loc);
610 SDValue Loc = Builder.StatepointLowering.getLocation(SDV); local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DPreprocessor.h654 MacroDirective::DefInfo findDirectiveAtLoc(SourceLocation Loc, argument
658 return Latest->findDirectiveAtLoc(Loc, SourceMgr);
1058 SourceLocation Loc) {
1065 DI = MD->findDirectiveAtLoc(Loc, getSourceManager());
1107 SourceLocation Loc) {
1108 DefMacroDirective *MD = AllocateDefMacroDirective(MI, Loc);
1154 /// Return the name of the macro defined before \p Loc that has
1157 StringRef getLastMacroWithSpelling(SourceLocation Loc,
1293 SourceLocation Loc);
1377 void makeModuleVisible(Module *M, SourceLocation Loc);
1057 getMacroDefinitionAtLoc(const IdentifierInfo *II, SourceLocation Loc) argument
1106 appendDefMacroDirective(IdentifierInfo *II, MacroInfo *MI, SourceLocation Loc) argument
1621 setPragmaARCCFCodeAuditedInfo(IdentifierInfo *Ident, SourceLocation Loc) argument
1636 setPragmaAssumeNonNullLoc(SourceLocation Loc) argument
1660 Diag(SourceLocation Loc, unsigned DiagID) const argument
1720 getRawToken(SourceLocation Loc, Token &Result, bool IgnoreWhiteSpace = false) argument
1751 getImmediateMacroName(SourceLocation Loc) argument
1784 getLocForEndOfToken(SourceLocation Loc, unsigned Offset = 0) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/AsmParser/
H A DMSP430AsmParser.cpp252 bool MSP430AsmParser::MatchAndEmitInstruction(SMLoc Loc, unsigned &Opcode, argument
263 Inst.setLoc(Loc);
267 return Error(Loc, "invalid instruction mnemonic");
269 SMLoc ErrorLoc = Loc;
276 ErrorLoc = Loc;
364 SMLoc Loc = getLexer().getLoc(); local
366 return Error(Loc, "unexpected token");
402 SMLoc Loc = getLexer().getLoc(); local
404 return Error(Loc, "unexpected token");
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DTypeBasedAliasAnalysis.cpp384 bool TypeBasedAAResult::pointsToConstantMemory(const MemoryLocation &Loc, argument
388 return AAResultBase::pointsToConstantMemory(Loc, AAQI, OrLocal);
390 const MDNode *M = Loc.AATags.TBAA;
392 return AAResultBase::pointsToConstantMemory(Loc, AAQI, OrLocal);
400 return AAResultBase::pointsToConstantMemory(Loc, AAQI, OrLocal);
426 const MemoryLocation &Loc,
429 return AAResultBase::getModRefInfo(Call, Loc, AAQI);
431 if (const MDNode *L = Loc.AATags.TBAA)
436 return AAResultBase::getModRefInfo(Call, Loc, AAQI);
425 getModRefInfo(const CallBase *Call, const MemoryLocation &Loc, AAQueryInfo &AAQI) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DJumpDiagnostics.cpp56 /// Loc - Location to emit the diagnostic.
57 SourceLocation Loc; member in struct:__anon591::JumpScopeChecker::GotoScope
61 : ParentScope(parentScope), InDiag(InDiag), OutDiag(OutDiag), Loc(L) {}
270 SourceLocation Loc = D->getLocation(); local
271 if (Loc.isInvalid())
272 Loc = BDecl->getLocation();
274 Diags.first, Diags.second, Loc));
634 SourceLocation Loc; local
636 Loc = CS->getBeginLoc();
638 Loc
[all...]
H A DSemaExprObjC.cpp147 static bool validateBoxingMethod(Sema &S, SourceLocation Loc, argument
152 S.Diag(Loc, diag::err_undeclared_boxing_method) << Sel << Class->getName();
159 S.Diag(Loc, diag::err_objc_literal_method_sig)
197 SourceLocation Loc,
202 S.Diag(Loc, diag::err_undeclared_objc_literal_class)
206 S.Diag(Loc, diag::err_undeclared_objc_literal_class)
219 SourceLocation Loc,
223 NamedDecl *IF = S.LookupSingleName(S.TUScope, II, Loc,
233 if (!ValidateObjCLiteralInterfaceDecl(S, ID, Loc, LiteralKind)) {
242 static ObjCMethodDecl *getNSNumberFactoryMethod(Sema &S, SourceLocation Loc, argument
196 ValidateObjCLiteralInterfaceDecl(Sema &S, ObjCInterfaceDecl *Decl, SourceLocation Loc, Sema::ObjCLiteralKind LiteralKind) argument
218 LookupObjCInterfaceDeclForLiteral(Sema &S, SourceLocation Loc, Sema::ObjCLiteralKind LiteralKind) argument
513 SourceLocation Loc = SR.getBegin(); local
794 SourceLocation Loc = SR.getBegin(); local
899 SourceLocation Loc = SR.getBegin(); local
1298 tryCaptureObjCSelf(SourceLocation Loc) argument
2306 BuildClassMessageImplicit(QualType ReceiverType, bool isSuperReceiver, SourceLocation Loc, Selector Sel, ObjCMethodDecl *Method, MultiExprArg Args) argument
2366 checkFoundationAPI(Sema &S, SourceLocation Loc, const ObjCMethodDecl *Method, ArrayRef<Expr *> Args, QualType ReceiverType, bool IsClassObjectCall) argument
2489 SourceLocation Loc = SuperLoc.isValid()? SuperLoc local
2644 BuildInstanceMessageImplicit(Expr *Receiver, QualType ReceiverType, SourceLocation Loc, Selector Sel, ObjCMethodDecl *Method, MultiExprArg Args) argument
2717 SourceLocation Loc = SuperLoc.isValid() ? SuperLoc : Receiver->getBeginLoc(); local
3254 SourceLocation Loc = OSE->getAtLoc(); local
4077 checkObjCBridgeRelatedComponents(SourceLocation Loc, QualType DestType, QualType SrcType, ObjCInterfaceDecl *&RelatedClass, ObjCMethodDecl *&ClassMethod, ObjCMethodDecl *&InstanceMethod, TypedefNameDecl *&TDNDecl, bool CfToNs, bool Diagnose) argument
4151 CheckObjCBridgeRelatedConversions(SourceLocation Loc, QualType DestType, QualType SrcType, Expr *&SrcExpr, bool Diagnose) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DLiteralSupport.cpp93 FullSourceLoc Loc, unsigned CharWidth,
118 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
124 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
147 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
173 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
196 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
207 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
216 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
220 Diag(Diags, Features, Loc, ThisTokBegin, EscapeBegin, ThisTokBuf,
276 FullSourceLoc Loc, DiagnosticsEngin
90 ProcessCharEscape(const char *ThisTokBegin, const char *&ThisTokBuf, const char *ThisTokEnd, bool &HadError, FullSourceLoc Loc, unsigned CharWidth, DiagnosticsEngine *Diags, const LangOptions &Features) argument
273 ProcessUCNEscape(const char *ThisTokBegin, const char *&ThisTokBuf, const char *ThisTokEnd, uint32_t &UcnVal, unsigned short &UcnLen, FullSourceLoc Loc, DiagnosticsEngine *Diags, const LangOptions &Features, bool in_char_string_literal = false) argument
354 FullSourceLoc Loc; local
380 EncodeUCNEscape(const char *ThisTokBegin, const char *&ThisTokBuf, const char *ThisTokEnd, char *&ResultBuf, bool &HadError, FullSourceLoc Loc, unsigned CharByteWidth, DiagnosticsEngine *Diags, const LangOptions &Features) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp209 MemoryLocation Loc = MemoryLocation::getForDest(MI); local
210 return Loc;
317 MemoryLocation Loc = getLocForWrite(I); local
318 assert(Loc.Ptr &&
321 return const_cast<Value*>(Loc.Ptr);
676 MemoryLocation Loc = MemoryLocation(F->getOperand(0)); local
687 MD->getPointerDependencyFrom(Loc, false, InstPt->getIterator(), BB);
717 Dep = MD->getPointerDependencyFrom(Loc, false, BBI, BB);
1023 MemoryLocation Loc = getLocForWrite(EarlierWrite); local
1026 const Value *Ptr = Loc
1139 MemoryLocation Loc = getLocForWrite(Inst); local
[all...]
/freebsd-11-stable/crypto/heimdal/lib/com_err/
H A Dparse.c645 # define YY_LOCATION_PRINT(File, Loc) \
647 (Loc).first_line, (Loc).first_column, \
648 (Loc).last_line, (Loc).last_column)
650 # define YY_LOCATION_PRINT(File, Loc) ((void) 0)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUPerfHintAnalysis.cpp233 auto Loc = FIM.find(Callee); local
234 if (Loc == FIM.end())
237 FI.MemInstCount += Loc->second.MemInstCount;
238 FI.InstCount += Loc->second.InstCount;
239 FI.IAMInstCount += Loc->second.IAMInstCount;
240 FI.LSMInstCount += Loc->second.LSMInstCount;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCMachOStreamer.cpp85 void EmitLabel(MCSymbol *Symbol, SMLoc Loc = SMLoc()) override;
105 SMLoc Loc = SMLoc()) override;
181 void MCMachOStreamer::EmitLabel(MCSymbol *Symbol, SMLoc Loc) { argument
187 MCObjectStreamer::EmitLabel(Symbol, Loc);
424 SMLoc Loc) {
430 Loc, "The usage of .zerofill is restricted to sections of "
422 EmitZerofill(MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment, SMLoc Loc) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp856 std::nullptr_t ErrorOperand(SMLoc Loc, StringRef Msg, SMRange R = SMRange()) { argument
857 Error(Loc, Msg, R);
861 std::unique_ptr<X86Operand> DefaultMemSIOperand(SMLoc Loc);
862 std::unique_ptr<X86Operand> DefaultMemDIOperand(SMLoc Loc);
1262 std::unique_ptr<X86Operand> X86AsmParser::DefaultMemSIOperand(SMLoc Loc) { argument
1268 Loc, Loc, 0);
1271 std::unique_ptr<X86Operand> X86AsmParser::DefaultMemDIOperand(SMLoc Loc) { argument
1277 Loc, Loc,
1580 SMLoc Loc = getTok().getLoc(); local
1653 SMLoc Loc = Start; local
1698 SMLoc Loc = Tok.getLoc(); local
2046 SMLoc Loc = Parser.getTok().getLoc(), EndLoc; local
2214 SMLoc Loc; local
2754 SMLoc Loc = Op1.getEndLoc(); local
3847 parseDirectiveSEHPushReg(SMLoc Loc) argument
3860 parseDirectiveSEHSetFrame(SMLoc Loc) argument
3880 parseDirectiveSEHSaveReg(SMLoc Loc) argument
3900 parseDirectiveSEHSaveXMM(SMLoc Loc) argument
3920 parseDirectiveSEHPushFrame(SMLoc Loc) argument
[all...]

Completed in 490 milliseconds

1234567891011>>