Searched defs:Info (Results 126 - 150 of 248) sorted by relevance

12345678910

/external/capstone/arch/AArch64/
H A DAArch64InstPrinter.c66 void AArch64_printInst(MCInst *MI, SStream *O, void *Info) argument
312 mnem = printAliasInstr(MI, O, Info);
317 printInstruction(MI, O, Info);
/external/clang/lib/AST/
H A DCommentSema.cpp99 const CommandInfo *Info = Traits.getCommandInfo(Comment->getCommandID()); local
100 if (!Info->IsFunctionDeclarationCommand)
132 const CommandInfo *Info = Traits.getCommandInfo(Comment->getCommandID()); local
133 if (!Info->IsRecordLikeDeclarationCommand)
169 const CommandInfo *Info = Traits.getCommandInfo(Comment->getCommandID()); local
170 if (!Info->IsRecordLikeDetailCommand || isRecordLikeDecl())
624 const CommandInfo *Info = Traits.getCommandInfo(Command->getCommandID()); local
626 if (Info->IsBriefCommand) {
632 } else if (Info->IsHeaderfileCommand) {
H A DDeclTemplate.cpp297 FunctionTemplateSpecializationInfo *Info, void *InsertPos) {
298 addSpecializationImpl<FunctionTemplateDecl>(getSpecializations(), Info, local
296 addSpecialization( FunctionTemplateSpecializationInfo *Info, void *InsertPos) argument
/external/clang/lib/Basic/
H A DDiagnostic.cpp195 DiagnosticMapping &Info = GetCurDiagState()->getOrAddMapping(Diag); local
196 if (Info.getSeverity() == diag::Severity::Error ||
197 Info.getSeverity() == diag::Severity::Fatal)
198 Map = Info.getSeverity();
283 DiagnosticMapping &Info = GetCurDiagState()->getOrAddMapping(Diag); local
285 if (Info.getSeverity() == diag::Severity::Error ||
286 Info.getSeverity() == diag::Severity::Fatal)
287 Info.setSeverity(diag::Severity::Warning);
289 Info.setNoWarningAsError(true);
314 DiagnosticMapping &Info local
399 HandleDiagnostic(DiagnosticsEngine::Level DiagLevel, const Diagnostic &Info) argument
953 StoredDiagnostic(DiagnosticsEngine::Level Level, const Diagnostic &Info) argument
987 HandleDiagnostic( DiagnosticsEngine::Level DiagLevel, const Diagnostic &Info) argument
[all...]
H A DIdentifierTable.cpp177 IdentifierInfo &Info =
179 Info.setIsExtensionToken(AddResult == KS_Extension);
180 Info.setIsFutureCompatKeyword(AddResult == KS_Future);
188 IdentifierInfo &Info = Table.get(Keyword, TokenCode); local
189 Info.setIsCPlusPlusOperatorKeyword();
/external/clang/lib/Frontend/
H A DSerializedDiagnosticPrinter.cpp166 const Diagnostic &Info) override;
586 const Diagnostic &Info) {
600 Info.FormatDiagnostic(State->diagBuf);
602 if (Info.getLocation().isInvalid()) {
613 State->diagBuf, nullptr, &Info); local
621 assert(Info.hasSourceManager() && LangOpts &&
624 Renderer.emitDiagnostic(Info.getLocation(), DiagLevel,
626 Info.getRanges(),
627 Info.getFixItHints(),
628 &Info
585 HandleDiagnostic(DiagnosticsEngine::Level DiagLevel, const Diagnostic &Info) argument
[all...]
H A DVerifyDiagnosticConsumer.cpp111 DiagnosticsEngine::Level DiagLevel, const Diagnostic &Info) {
112 if (Info.hasSourceManager()) {
114 if (SrcManager && &Info.getSourceManager() != SrcManager)
117 setSourceManager(Info.getSourceManager());
124 SourceLocation Loc = Info.getLocation();
147 Buffer->HandleDiagnostic(DiagLevel, Info);
110 HandleDiagnostic( DiagnosticsEngine::Level DiagLevel, const Diagnostic &Info) argument
/external/clang/lib/Parse/
H A DParsePragma.cpp348 PragmaPackInfo *Info = local
352 if (Info->Alignment.is(tok::numeric_constant)) {
353 Alignment = Actions.ActOnNumericConstant(Info->Alignment);
357 Actions.ActOnPragmaPack(PragmaLoc, Info->Action, Info->SlotLabel,
795 PragmaLoopHintInfo *Info = local
798 IdentifierInfo *PragmaNameInfo = Info->PragmaName.getIdentifierInfo();
800 Actions.Context, Info->PragmaName.getLocation(), PragmaNameInfo);
804 IdentifierInfo *OptionInfo = Info->Option.is(tok::identifier)
805 ? Info
1060 PragmaPackInfo *Info = local
1905 ParseLoopHintValue(Preprocessor &PP, Token &Tok, Token PragmaName, Token Option, bool ValueInParens, PragmaLoopHintInfo &Info) argument
2033 auto *Info = new (PP.getPreprocessorAllocator()) PragmaLoopHintInfo; local
2085 auto *Info = new (PP.getPreprocessorAllocator()) PragmaLoopHintInfo; local
[all...]
/external/clang/lib/Serialization/
H A DGlobalModuleIndex.cpp329 ModuleInfo &Info = Modules[Known->second]; local
334 if (File->File->getSize() == Info.Size &&
335 File->File->getModificationTime() == Info.ModTime) {
336 Info.File = File;
415 ModuleFileInfo &Info = ModuleFiles[File]; local
416 Info.ID = NewID;
417 return Info;
/external/clang/lib/StaticAnalyzer/Core/
H A DCallEvent.cpp811 ObjCMessageDataTy Info = ObjCMessageDataTy::getFromOpaqueValue(Data); local
812 if (!Info.getPointer())
814 return static_cast<ObjCMessageKind>(Info.getInt());
H A DCheckerManager.cpp773 StmtCheckerInfo &Info = StmtCheckers[i]; local
774 if (Info.IsPreVisit == isPreVisit && Info.IsForStmtFn(S))
775 Checkers.push_back(Info.CheckFn);
/external/eigen/Eigen/src/UmfPackSupport/
H A DUmfPackSupport.h58 const double Control [UMFPACK_CONTROL], double Info [UMFPACK_INFO])
60 return umfpack_di_symbolic(n_row,n_col,Ap,Ai,Ax,Symbolic,Control,Info);
65 const double Control [UMFPACK_CONTROL], double Info [UMFPACK_INFO])
67 return umfpack_zi_symbolic(n_row,n_col,Ap,Ai,&numext::real_ref(Ax[0]),0,Symbolic,Control,Info);
72 const double Control[UMFPACK_CONTROL],double Info [UMFPACK_INFO])
74 return umfpack_di_numeric(Ap,Ai,Ax,Symbolic,Numeric,Control,Info);
79 const double Control[UMFPACK_CONTROL],double Info [UMFPACK_INFO])
81 return umfpack_zi_numeric(Ap,Ai,&numext::real_ref(Ax[0]),0,Symbolic,Numeric,Control,Info);
86 const double Control[UMFPACK_CONTROL], double Info[UMFPACK_INFO])
88 return umfpack_di_solve(sys,Ap,Ai,Ax,X,B,Numeric,Control,Info);
84 umfpack_solve( int sys, const int Ap[], const int Ai[], const double Ax[], double X[], const double B[], void *Numeric, const double Control[UMFPACK_CONTROL], double Info[UMFPACK_INFO]) argument
91 umfpack_solve( int sys, const int Ap[], const int Ai[], const std::complex<double> Ax[], std::complex<double> X[], const std::complex<double> B[], void *Numeric, const double Control[UMFPACK_CONTROL], double Info[UMFPACK_INFO]) argument
[all...]
/external/llvm/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h368 bool getTgtMemIntrinsic(IntrinsicInst *Inst, MemIntrinsicInfo &Info) { argument
/external/llvm/include/llvm/Support/
H A DGenericDomTree.h211 Info.clear();
238 // Info - Collection of information used during the computation of idoms.
239 DenseMap<NodeT *, InfoRec> Info; member in class:llvm::DominatorTreeBase
327 Vertex(std::move(Arg.Vertex)), Info(std::move(Arg.Info)) {
339 Info = std::move(RHS.Info);
H A DTargetRegistry.h99 typedef MCInstrAnalysis *(*MCInstrAnalysisCtorFnTy)(const MCInstrInfo *Info);
316 MCInstrAnalysis *createMCInstrAnalysis(const MCInstrInfo *Info) const {
319 return MCInstrAnalysisCtorFn(Info);
951 static MCInstrAnalysis *Allocator(const MCInstrInfo *Info) { argument
952 return new MCInstrAnalysisImpl(Info);
/external/llvm/include/llvm/Transforms/Utils/
H A DMemorySSA.h880 upward_defs_iterator(const MemoryAccessPair &Info) argument
881 : DefIterator(Info.first), Location(Info.second),
882 OriginalAccess(Info.first) {
885 WalkingPhi = Info.first && isa<MemoryPhi>(Info.first);
/external/llvm/lib/CodeGen/
H A DMachineBasicBlock.cpp1216 MachineOperandIteratorBase::PhysRegInfo Info =
1222 if (Info.DeadDef)
1225 if (Info.Defined) {
1226 if (!Info.PartialDeadDef)
1235 if (Info.Killed || Info.Clobbered)
1238 if (Info.Read)
1261 MachineOperandIteratorBase::PhysRegInfo Info = local
1265 if (Info.Read)
1268 if (Info
[all...]
/external/llvm/lib/IR/
H A DLegacyPassManager.cpp184 void getAnalysisUsage(AnalysisUsage &Info) const override {
185 Info.setPreservesAll();
277 void getAnalysisUsage(AnalysisUsage &Info) const override {
278 Info.setPreservesAll();
329 void getAnalysisUsage(AnalysisUsage &Info) const override {
330 Info.setPreservesAll();
419 void getAnalysisUsage(AnalysisUsage &Info) const override {
420 Info.setPreservesAll();
882 DenseMap<AnalysisID, Pass*>::iterator Info = I++; local
883 if (Info
906 DenseMap<AnalysisID, Pass *>::iterator Info = I++; local
[all...]
/external/llvm/lib/Target/Lanai/AsmParser/
H A DLanaiAsmParser.cpp48 bool ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
1136 bool LanaiAsmParser::ParseInstruction(ParseInstructionInfo &Info, argument
/external/llvm/lib/Target/Sparc/AsmParser/
H A DSparcAsmParser.cpp54 bool ParseInstruction(ParseInstructionInfo &Info, StringRef Name,
614 bool SparcAsmParser::ParseInstruction(ParseInstructionInfo &Info, argument
/external/llvm/lib/Transforms/Utils/
H A DValueMapper.cpp202 SmallDenseMap<const Metadata *, Data, 32> Info; // Node properties. member in struct:__anon14807::MDNodeMapper::UniquedGraph
301 /// \post \a Data::hasChanged in \c G.Info indicates whether any node needs
573 auto Where = Info.find(&Op);
574 assert(Where != Info.end() && "Expected a valid reference");
614 assert(G.Info.empty() && "Expected a fresh traversal");
621 (void)G.Info[&FirstN];
634 auto &D = G.Info[WE.N];
659 if (G.Info.insert(std::make_pair(&OpN, Data())).second)
670 auto &D = Info[N];
675 auto Where = Info
[all...]
/external/spirv-llvm/lib/SPIRV/
H A DOCL20ToSPIRV.cpp115 void transBuiltin(CallInst *CI, OCLBuiltinTransInfo &Info);
132 void transAtomicBuiltin(CallInst *CI, OCLBuiltinTransInfo &Info);
713 OCLBuiltinTransInfo Info;
714 Info.UniqName = "atomic_" + Prefix + Sign + Stem.str() + Postfix;
721 Info.PostProc = [=](std::vector<Value *> &Ops){
726 transAtomicBuiltin(CI, Info);
768 OCLBuiltinTransInfo Info;
769 Info.UniqName = std::string("atomic_") + NewStem;
770 Info.PostProc = [=](std::vector<Value *> &Ops){
776 transAtomicBuiltin(CI, Info);
780 transAtomicBuiltin(CallInst* CI, OCLBuiltinTransInfo& Info) argument
933 OCLBuiltinTransInfo Info; local
954 transBuiltin(CallInst* CI, OCLBuiltinTransInfo& Info) argument
1003 OCLBuiltinTransInfo Info; local
1167 OCLBuiltinTransInfo Info; local
1232 OCLBuiltinTransInfo Info; local
1258 OCLBuiltinTransInfo Info; local
1344 OCLBuiltinTransInfo Info; local
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
H A DDominators.h1 //===- llvm/Analysis/Dominators.h - Dominator Info Calculation --*- C++ -*-===//
210 // Info - Collection of information used during the computation of idoms.
211 DenseMap<NodeT*, InfoRec> Info; member in class:llvm::DominatorTreeBase
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DTargetRegistry.h78 typedef MCInstrAnalysis *(*MCInstrAnalysisCtorFnTy)(const MCInstrInfo*Info);
294 MCInstrAnalysis *createMCInstrAnalysis(const MCInstrInfo *Info) const {
297 return MCInstrAnalysisCtorFn(Info);
910 static MCInstrAnalysis *Allocator(const MCInstrInfo *Info) { argument
911 return new MCInstrAnalysisImpl(Info);
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCAsmStreamer.cpp1107 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind()); local
1108 for (unsigned j = 0; j != Info.TargetSize; ++j) {
1109 unsigned Index = F.getOffset() * 8 + Info.TargetOffset + j;
1167 const MCFixupKindInfo &Info = AsmBackend->getFixupKindInfo(F.getKind());
1169 << ", value: " << *F.getValue() << ", kind: " << Info.Name << "\n";

Completed in 654 milliseconds

12345678910