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

1234567891011>>

/freebsd-13-stable/contrib/bearssl/T0/
H A DWordBuilder.cs86 void Add(Opcode op) method in class:WordBuilder
88 Add(op, null);
91 void Add(Opcode op, string refName) method in class:WordBuilder
93 code.Add(op);
94 toResolve.Add(refName);
180 * Add a "push literal" opcode.
184 Add(new OpcodeConst(v));
215 Add(new OpcodePutLocal(lnum));
217 Add(new OpcodeGetLocal(lnum));
220 Add(ne
[all...]
H A DWordData.cs85 r.Add(blob);
92 dst.Add(new CodeElementUInt(0));
93 dst.Add(new CodeElementUIntInt(1, blob.Address + offset));
94 dst.Add(new CodeElementUInt(0));
/freebsd-13-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-13-stable/contrib/llvm-project/lldb/source/DataFormatters/
H A DFormattersHelpers.cpp30 category_sp->GetRegexTypeFormatsContainer()->Add(
33 category_sp->GetTypeFormatsContainer()->Add(std::move(type_name),
41 category_sp->GetRegexTypeSummariesContainer()->Add(
44 category_sp->GetTypeSummariesContainer()->Add(std::move(type_name),
54 category_sp->GetRegexTypeSummariesContainer()->Add(
57 category_sp->GetTypeSummariesContainer()->Add(std::move(type_name),
68 category_sp->GetRegexTypeSummariesContainer()->Add(
71 category_sp->GetTypeSummariesContainer()->Add(std::move(type_name),
82 category_sp->GetRegexTypeSummariesContainer()->Add(
85 category_sp->GetTypeSummariesContainer()->Add(st
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterDecl.cpp158 /// Add an Objective-C type parameter list to the given record.
174 /// Add to the record the first declaration from each module file that
223 // Add a slot to the record for the number of specializations.
1912 Abv->Add(BitCodeAbbrevOp(serialization::DECL_FIELD));
1914 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // DeclContext
1915 Abv->Add(BitCodeAbbrevOp(0)); // LexicalDeclContext
1916 Abv->Add(BitCodeAbbrevOp(0)); // isInvalidDecl
1917 Abv->Add(BitCodeAbbrevOp(0)); // HasAttrs
1918 Abv->Add(BitCodeAbbrevOp(0)); // isImplicit
1919 Abv->Add(BitCodeAbbrevO
[all...]
H A DASTWriter.cpp514 Abv->Add(BitCodeAbbrevOp(serialization::TYPE_EXT_QUAL));
515 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Type
516 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 3)); // Quals
521 Abv->Add(BitCodeAbbrevOp(serialization::TYPE_FUNCTION_PROTO));
523 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // ReturnType
524 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // NoReturn
525 Abv->Add(BitCodeAbbrevOp(0)); // HasRegParm
526 Abv->Add(BitCodeAbbrevOp(0)); // RegParm
527 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 4)); // CC
528 Abv->Add(BitCodeAbbrevO
[all...]
/freebsd-13-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-13-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-13-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-13-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-13-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-13-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-13-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-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DDynamicTypeInfo.h43 ID.Add(DynTy);
H A DDynamicCastInfo.h42 ID.Add(From);
43 ID.Add(To);
/freebsd-13-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-13-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp530 case Instruction::Add:
555 case AtomicRMWInst::Add: return bitc::RMW_ADD;
831 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_POINTER));
832 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
833 Abbv->Add(BitCodeAbbrevOp(0)); // Addrspace = 0
838 Abbv->Add(BitCodeAbbrevOp(bitc::TYPE_CODE_FUNCTION));
839 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isvararg
840 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
841 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
846 Abbv->Add(BitCodeAbbrevO
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/
H A DSerializedDiagnosticPrinter.cpp215 /// Add SourceLocation information the specified record.
219 /// Add SourceLocation information the specified record.
226 /// Add CharSourceRange information the specified record.
417 Abbrev.Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 10)); // File ID.
418 Abbrev.Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Line.
419 Abbrev.Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Column.
420 Abbrev.Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // Offset;
443 Abbrev->Add(BitCodeAbbrevOp(RECORD_VERSION));
444 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
461 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-13-stable/contrib/llvm-project/clang/lib/Driver/
H A DSanitizerArgs.cpp222 SanitizerMask Add = parseArgValues(D, Arg, true); local
223 Add &= ~TrapRemove;
224 if (SanitizerMask InvalidValues = Add & ~TrappingSupportedWithGroups) {
230 TrappingKinds |= expandSanitizerGroups(Add) & ~TrapRemove;
314 SanitizerMask Add = parseArgValues(D, Arg, /*AllowGroups=*/true); local
321 if (Add & SanitizerKind::ObjectSize)
326 AllAddedKinds |= expandSanitizerGroups(Add);
329 Add &= ~AllRemove;
331 // sanitizers in Add are those which have been explicitly enabled.
334 Add
544 SanitizerMask Add = parseArgValues(D, Arg, true); local
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusLanguage.cpp603 cpp_category_sp->GetRegexTypeSyntheticsContainer()->Add(
772 cpp_category_sp->GetTypeSummariesContainer()->Add(ConstString("std::string"),
774 cpp_category_sp->GetTypeSummariesContainer()->Add(
776 cpp_category_sp->GetTypeSummariesContainer()->Add(
780 cpp_category_sp->GetTypeSummariesContainer()->Add(
785 cpp_category_sp->GetTypeSummariesContainer()->Add(
787 cpp_category_sp->GetTypeSummariesContainer()->Add(
791 cpp_category_sp->GetTypeSummariesContainer()->Add(
801 cpp_category_sp->GetTypeSummariesContainer()->Add(ConstString("std::wstring"),
803 cpp_category_sp->GetTypeSummariesContainer()->Add(
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DMVEGatherScatterLowering.cpp258 if (I->getOpcode() == Instruction::Add ||
264 if (I->getOpcode() == Instruction::Add)
278 Instruction *Add = dyn_cast<Instruction>(Inst); local
279 if (Add == nullptr || Add->getOpcode() != Instruction::Add)
285 if ((Const = getIfConst(Add->getOperand(0))))
286 Summand = Add->getOperand(1);
287 else if ((Const = getIfConst(Add->getOperand(1))))
288 Summand = Add
642 std::pair<Value *, int64_t> Add = getVarAndConst(Offsets, TypeScale); local
693 std::pair<Value *, int64_t> Add = getVarAndConst(Offsets, TypeScale); local
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DDataVisualization.h65 static void Add(ConstString type,
88 static void Add(ConstString category);

Completed in 235 milliseconds

1234567891011>>