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

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DBuiltinGCs.cpp120 static GCRegistry::Add<ErlangGC> A("erlang",
122 static GCRegistry::Add<OcamlGC> B("ocaml", "ocaml 3.10-compatible GC");
123 static GCRegistry::Add<ShadowStackGC>
125 static GCRegistry::Add<StatepointGC> D("statepoint-example",
127 static GCRegistry::Add<CoreCLRGC> E("coreclr", "CoreCLR-compatible GC");
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/
H A DFormattersHelpers.cpp31 category_sp->GetRegexTypeFormatsContainer()->Add(
34 category_sp->GetTypeFormatsContainer()->Add(std::move(type_name),
42 category_sp->GetRegexTypeSummariesContainer()->Add(
45 category_sp->GetTypeSummariesContainer()->Add(std::move(type_name),
55 category_sp->GetRegexTypeSummariesContainer()->Add(
58 category_sp->GetTypeSummariesContainer()->Add(std::move(type_name),
69 category_sp->GetRegexTypeSummariesContainer()->Add(
72 category_sp->GetTypeSummariesContainer()->Add(std::move(type_name),
83 category_sp->GetRegexTypeSummariesContainer()->Add(
86 category_sp->GetTypeSummariesContainer()->Add(st
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterDecl.cpp157 /// Add an Objective-C type parameter list to the given record.
173 /// Add to the record the first declaration from each module file that
222 // Add a slot to the record for the number of specializations.
1902 Abv->Add(BitCodeAbbrevOp(serialization::DECL_FIELD));
1904 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // DeclContext
1905 Abv->Add(BitCodeAbbrevOp(0)); // LexicalDeclContext
1906 Abv->Add(BitCodeAbbrevOp(0)); // isInvalidDecl
1907 Abv->Add(BitCodeAbbrevOp(0)); // HasAttrs
1908 Abv->Add(BitCodeAbbrevOp(0)); // isImplicit
1909 Abv->Add(BitCodeAbbrevO
[all...]
H A DASTWriter.cpp486 Abv->Add(BitCodeAbbrevOp(serialization::TYPE_EXT_QUAL));
487 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Type
488 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 3)); // Quals
493 Abv->Add(BitCodeAbbrevOp(serialization::TYPE_FUNCTION_PROTO));
495 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // ReturnType
496 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // NoReturn
497 Abv->Add(BitCodeAbbrevOp(0)); // HasRegParm
498 Abv->Add(BitCodeAbbrevOp(0)); // RegParm
499 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 4)); // CC
500 Abv->Add(BitCodeAbbrevO
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Remarks/
H A DBitstreamRemarkSerializer.cpp56 Abbrev->Add(BitCodeAbbrevOp(RECORD_META_CONTAINER_INFO));
57 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Version.
58 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 2)); // Type.
68 Abbrev->Add(BitCodeAbbrevOp(RECORD_META_REMARK_VERSION));
69 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Version.
87 Abbrev->Add(BitCodeAbbrevOp(RECORD_META_STRTAB));
88 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Raw table.
111 Abbrev->Add(BitCodeAbbrevOp(RECORD_META_EXTERNAL_FILE));
112 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Filename.
133 Abbrev->Add(BitCodeAbbrevO
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_ignoreset.h25 void Add(u32 stack_id);
H A Dtsan_ignoreset.cpp22 void IgnoreSet::Add(u32 stack_id) { function in class:__tsan::IgnoreSet
H A Dtsan_mutexset.h34 void Add(u64 id, bool write, u64 epoch);
59 void MutexSet::Add(u64 id, bool write, u64 epoch) {} function in class:__tsan::MutexSet
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCOptAddrMode.cpp68 // Returns true if result of \p Add is not used before \p Ldst
69 bool noUseOfAddBeforeLoadOrStore(const MachineInstr *Add,
80 // Check if instructions \p Ldst and \p Add can be moved to become adjacent
84 MachineInstr *canJoinInstructions(MachineInstr *Ldst, MachineInstr *Add,
182 bool ARCOptAddrMode::noUseOfAddBeforeLoadOrStore(const MachineInstr *Add, argument
184 Register R = Add->getOperand(0).getReg();
220 for (auto &Add : MRI->use_nodbg_instructions(B)) {
222 if (!isAddConstantOp(Add, Incr))
228 MachineInstr *MoveTo = canJoinInstructions(&Ldst, &Add, &Uses);
233 if (!canFixPastUses(Uses, Add
265 canJoinInstructions(MachineInstr *Ldst, MachineInstr *Add, SmallVectorImpl<MachineInstr *> *Uses) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCDisassembler/
H A DMCExternalSymbolizer.cpp89 const MCExpr *Add = nullptr; local
94 Add = MCSymbolRefExpr::create(Sym, Ctx);
96 Add = MCConstantExpr::create((int)SymbolicOp.AddSymbol.Value, Ctx);
118 if (Add)
119 LHS = MCBinaryExpr::createSub(Add, Sub, Ctx);
126 } else if (Add) {
128 Expr = MCBinaryExpr::createAdd(Add, Off, Ctx);
130 Expr = Add;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DNativeWatchpointList.cpp16 Status NativeWatchpointList::Add(addr_t addr, size_t size, uint32_t watch_flags, function in class:NativeWatchpointList
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/InstCombine/
H A DInstCombineWorklist.h38 /// Add - Add the specified instruction to the worklist if it isn't already
40 void Add(Instruction *I) { function in class:llvm::InstCombineWorklist
52 Add(I);
55 /// AddInitialGroup - Add the specified batch of stuff in reverse order.
94 Add(cast<Instruction>(U));
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeWatchpointList.h27 Status Add(lldb::addr_t addr, size_t size, uint32_t watch_flags,
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DCXXFieldCollector.h54 /// Add - Called by Sema::ActOnCXXMemberDeclarator.
55 void Add(FieldDecl *D) { function in class:clang::CXXFieldCollector
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/Disassembler/
H A DAArch64ExternalSymbolizer.cpp167 const MCExpr *Add = nullptr; local
174 Add = MCSymbolRefExpr::create(Sym, Variant, Ctx);
176 Add = MCSymbolRefExpr::create(Sym, Ctx);
178 Add = MCConstantExpr::create(SymbolicOp.AddSymbol.Value, Ctx);
200 if (Add)
201 LHS = MCBinaryExpr::createSub(Add, Sub, Ctx);
208 } else if (Add) {
210 Expr = MCBinaryExpr::createAdd(Add, Off, Ctx);
212 Expr = Add;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DDynamicTypeInfo.h41 ID.Add(DynTy);
H A DDynamicCastInfo.h42 ID.Add(From);
43 ID.Add(To);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp531 case Instruction::Add:
556 case AtomicRMWInst::Add: return bitc::RMW_ADD;
821 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER));
822 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
823 Abbv->Add(BitCodeAbbrevOp(0)); // Addrspace = 0
828 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_FUNCTION));
829 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvararg
830 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
831 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
836 Abbv->Add(BitCodeAbbrevO
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DSerializedDiagnosticPrinter.cpp214 /// Add SourceLocation information the specified record.
218 /// Add SourceLocation information the specified record.
225 /// Add CharSourceRange information the specified record.
413 Abbrev.Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // File ID.
414 Abbrev.Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Line.
415 Abbrev.Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Column.
416 Abbrev.Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Offset;
439 Abbrev->Add(BitCodeAbbrevOp(RECORD_VERSION));
440 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
457 Abbrev->Add(BitCodeAbbrevO
[all...]
H A DTestModuleFileExtension.cpp27 Abv->Add(BitCodeAbbrevOp(FIRST_EXTENSION_RECORD_ID));
28 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // # of characters
29 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // message
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DKnownBits.cpp54 KnownBits KnownBits::computeForAddSub(bool Add, bool NSW, argument
57 if (Add) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/
H A DSanitizerArgs.cpp177 SanitizerMask Add = parseArgValues(D, Arg, true); local
178 Add &= ~TrapRemove;
179 if (SanitizerMask InvalidValues = Add & ~TrappingSupportedWithGroups) {
185 TrappingKinds |= expandSanitizerGroups(Add) & ~TrapRemove;
279 SanitizerMask Add = parseArgValues(D, Arg, /*AllowGroups=*/true); local
286 if (Add & SanitizerKind::ObjectSize)
291 AllAddedKinds |= expandSanitizerGroups(Add);
294 Add &= ~AllRemove;
296 // sanitizers in Add are those which have been explicitly enabled.
299 Add
518 SanitizerMask Add = parseArgValues(D, Arg, true); local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusLanguage.cpp599 cpp_category_sp->GetRegexTypeSyntheticsContainer()->Add(
755 cpp_category_sp->GetTypeSummariesContainer()->Add(ConstString("std::string"),
757 cpp_category_sp->GetTypeSummariesContainer()->Add(
759 cpp_category_sp->GetTypeSummariesContainer()->Add(
763 cpp_category_sp->GetTypeSummariesContainer()->Add(
768 cpp_category_sp->GetTypeSummariesContainer()->Add(
770 cpp_category_sp->GetTypeSummariesContainer()->Add(
774 cpp_category_sp->GetTypeSummariesContainer()->Add(
784 cpp_category_sp->GetTypeSummariesContainer()->Add(ConstString("std::wstring"),
786 cpp_category_sp->GetTypeSummariesContainer()->Add(
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DIterator.h73 ID.Add(Offset);
109 ID.Add(Begin);
110 ID.Add(End);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_stats.h33 void Add(AllocatorStat i, uptr v) { function in class:AllocatorStats
83 Add(AllocatorStat(i), s->Get(AllocatorStat(i)));

Completed in 504 milliseconds

1234567891011>>