Searched refs:Add (Results 1 - 25 of 180) sorted by relevance

12345678

/freebsd-10.3-release/contrib/llvm/lib/CodeGen/
H A DOcamlGC.cpp29 static GCRegistry::Add<OcamlGC>
H A DMachinePassRegistry.cpp34 /// Add - Adds a function pass to the registration list.
36 void MachinePassRegistry::Add(MachinePassRegistryNode *Node) { function in class:MachinePassRegistry
H A DErlangGC.cpp40 static GCRegistry::Add<ErlangGC>
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTWriterDecl.cpp1450 Abv->Add(BitCodeAbbrevOp(serialization::DECL_FIELD));
1452 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // DeclContext
1453 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // LexicalDeclContext
1454 Abv->Add(BitCodeAbbrevOp(0)); // isInvalidDecl
1455 Abv->Add(BitCodeAbbrevOp(0)); // HasAttrs
1456 Abv->Add(BitCodeAbbrevOp(0)); // isImplicit
1457 Abv->Add(BitCodeAbbrevOp(0)); // isUsed
1458 Abv->Add(BitCodeAbbrevOp(0)); // isReferenced
1459 Abv->Add(BitCodeAbbrevOp(0)); // TopLevelDeclInObjCContainer
1460 Abv->Add(BitCodeAbbrevO
[all...]
H A DASTWriter.cpp1021 MetadataAbbrev->Add(BitCodeAbbrevOp(METADATA));
1022 MetadataAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Major
1023 MetadataAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Minor
1024 MetadataAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Clang maj.
1025 MetadataAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Clang min.
1026 MetadataAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Relocatable
1027 MetadataAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Errors
1028 MetadataAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // SVN branch/tag
1199 FileAbbrev->Add(BitCodeAbbrevOp(ORIGINAL_FILE));
1200 FileAbbrev->Add(BitCodeAbbrevO
[all...]
/freebsd-10.3-release/contrib/llvm/lib/MC/
H A DMCExternalSymbolizer.cpp72 const MCExpr *Add = NULL; local
77 Add = MCSymbolRefExpr::Create(Sym, Ctx);
79 Add = MCConstantExpr::Create((int)SymbolicOp.AddSymbol.Value, Ctx);
101 if (Add)
102 LHS = MCBinaryExpr::CreateSub(Add, Sub, Ctx);
109 } else if (Add) {
111 Expr = MCBinaryExpr::CreateAdd(Add, Off, Ctx);
113 Expr = Add;
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Driver/
H A DSanitizerArgs.cpp49 unsigned Add, Remove; local
50 if (!parse(D, Args, *I, Add, Remove, true))
54 AllAdd |= expandGroups(Add);
58 Add &= ~AllRemove;
60 // in Add are those which have been explicitly enabled. Diagnose them.
61 Add = filterUnsupportedKinds(TC, Add, Args, *I, /*DiagnoseErrors=*/true,
63 Add = expandGroups(Add);
65 Add
294 parse(const Driver &D, const llvm::opt::ArgList &Args, const llvm::opt::Arg *A, unsigned &Add, unsigned &Remove, bool DiagnoseErrors) argument
342 unsigned Add, Remove; local
[all...]
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Frontend/
H A DSerializedDiagnosticPrinter.cpp159 /// \brief Add SourceLocation information the specified record.
164 /// \brief Add SourceLocation information the specified record.
172 /// \brief Add CharSourceRange information the specified record.
360 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // File ID.
361 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Line.
362 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Column.
363 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Offset;
386 Abbrev->Add(BitCodeAbbrevOp(RECORD_VERSION));
387 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
404 Abbrev->Add(BitCodeAbbrevO
[all...]
/freebsd-10.3-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineWorklist.h36 /// Add - Add the specified instruction to the worklist if it isn't already
38 void Add(Instruction *I) { function in class:llvm::InstCombineWorklist
47 Add(I);
50 /// AddInitialGroup - Add the specified batch of stuff in reverse order.
89 Add(cast<Instruction>(*UI));
/freebsd-10.3-release/contrib/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp88 case Instruction::Add:
113 case AtomicRMWInst::Add: return bitc::RMW_ADD;
326 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER));
327 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
328 Abbv->Add(BitCodeAbbrevOp(0)); // Addrspace = 0
333 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_FUNCTION));
334 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvararg
335 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
336 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
342 Abbv->Add(BitCodeAbbrevO
[all...]
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DCXXFieldCollector.h55 /// Add - Called by Sema::ActOnCXXMemberDeclarator.
56 void Add(FieldDecl *D) { function in class:clang::CXXFieldCollector
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DDynamicTypeInfo.h41 ID.Add(T);
/freebsd-10.3-release/contrib/llvm/include/llvm/CodeGen/
H A DRegAllocRegistry.h38 Registry.Add(this);
H A DSchedulerRegistry.h43 { Registry.Add(this); }
/freebsd-10.3-release/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
H A DDataVisualization.h89 Add (const ConstString &type, const lldb::TypeSummaryImplSP &entry);
114 Add (const ConstString &category);
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/DataFormatters/
H A DFormatManager.cpp433 m_categories_map.Add(category_name,lldb::TypeCategoryImplSP(new TypeCategoryImpl(this, category_name)));
747 category_sp->GetRegexTypeFormatsContainer()->Add(RegularExpressionSP(new RegularExpression(type_name.AsCString())),format_sp);
749 category_sp->GetTypeFormatsContainer()->Add(type_name, format_sp);
764 category_sp->GetRegexTypeSummariesContainer()->Add(RegularExpressionSP(new RegularExpression(type_name.AsCString())),summary_sp);
766 category_sp->GetTypeSummariesContainer()->Add(type_name, summary_sp);
785 category_sp->GetRegexTypeSummariesContainer()->Add(RegularExpressionSP(new RegularExpression(type_name.AsCString())),summary_sp);
787 category_sp->GetTypeSummariesContainer()->Add(type_name, summary_sp);
802 category_sp->GetRegexTypeSummariesContainer()->Add(RegularExpressionSP(new RegularExpression(type_name.AsCString())),summary_sp);
804 category_sp->GetTypeSummariesContainer()->Add(type_name, summary_sp);
818 category_sp->GetRegexTypeSyntheticsContainer()->Add(RegularExpressionS
[all...]
/freebsd-10.3-release/contrib/llvm/lib/Analysis/
H A DIVUsers.cpp67 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
69 for (SCEVAddExpr::op_iterator OI = Add->op_begin(), OE = Add->op_end();
116 // Add this IV user to the Processed set before returning false to ensure that
328 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
329 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
/freebsd-10.3-release/contrib/llvm/lib/Target/XCore/
H A DXCoreMCInstLower.cpp77 const MCBinaryExpr *Add = MCBinaryExpr::CreateAdd(MCSym, OffsetExpr, *Ctx); local
78 return MCOperand::CreateExpr(Add);
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/API/
H A DSBTypeCategory.cpp315 m_opaque_sp->GetRegexTypeFormatsContainer()->Add(lldb::RegularExpressionSP(new RegularExpression(type_name.GetName())), format.GetSP());
317 m_opaque_sp->GetTypeFormatsContainer()->Add(ConstString(type_name.GetName()), format.GetSP());
386 m_opaque_sp->GetRegexTypeSummariesContainer()->Add(lldb::RegularExpressionSP(new RegularExpression(type_name.GetName())), summary.GetSP());
388 m_opaque_sp->GetTypeSummariesContainer()->Add(ConstString(type_name.GetName()), summary.GetSP());
423 m_opaque_sp->GetRegexTypeFiltersContainer()->Add(lldb::RegularExpressionSP(new RegularExpression(type_name.GetName())), filter.GetSP());
425 m_opaque_sp->GetTypeFiltersContainer()->Add(ConstString(type_name.GetName()), filter.GetSP());
494 m_opaque_sp->GetRegexTypeSyntheticsContainer()->Add(lldb::RegularExpressionSP(new RegularExpression(type_name.GetName())), synth.GetSP());
496 m_opaque_sp->GetTypeSyntheticsContainer()->Add(ConstString(type_name.GetName()), synth.GetSP());
/freebsd-10.3-release/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
H A DBreakpointList.h41 /// Add the breakpoint \a bp_sp to the list.
50 Add (lldb::BreakpointSP& bp_sp, bool notify);
H A DBreakpointLocationCollection.h30 /// Add the breakpoint \a bp_loc_sp to the list.
40 Add (const lldb::BreakpointLocationSP& bp_loc_sp);
H A DBreakpointSiteList.h47 /// Add a BreakpointSite to the list.
56 Add (const lldb::BreakpointSiteSP& bp_site_sp);
/freebsd-10.3-release/contrib/llvm/include/llvm/Support/
H A DRegistry.h179 /// Registry<Collector>::Add<FancyGC>
194 class Add { class in class:llvm::Registry
201 Add(const char *Name, const char *Desc) function in class:llvm::Registry::Add
/freebsd-10.3-release/contrib/llvm/lib/Target/Mips/
H A DMipsMCInstLower.cpp112 const MCBinaryExpr *Add = MCBinaryExpr::CreateAdd(MCSym, OffsetExpr, *Ctx); local
113 return MCOperand::CreateExpr(Add);
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointSite.cpp37 m_owners.Add(owner);
165 m_owners.Add(owner);

Completed in 311 milliseconds

12345678