Searched refs:ArrayRef (Results 1 - 25 of 1734) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DEnumTables.h12 #include "llvm/ADT/ArrayRef.h"
21 ArrayRef<EnumEntry<SymbolKind>> getSymbolTypeNames();
22 ArrayRef<EnumEntry<TypeLeafKind>> getTypeLeafNames();
23 ArrayRef<EnumEntry<uint16_t>> getRegisterNames(CPUType Cpu);
24 ArrayRef<EnumEntry<uint32_t>> getPublicSymFlagNames();
25 ArrayRef<EnumEntry<uint8_t>> getProcSymFlagNames();
26 ArrayRef<EnumEntry<uint16_t>> getLocalFlagNames();
27 ArrayRef<EnumEntry<uint8_t>> getFrameCookieKindNames();
28 ArrayRef<EnumEntry<SourceLanguage>> getSourceLanguageNames();
29 ArrayRef<EnumEntr
[all...]
H A DSimpleTypeSerializer.h12 #include "llvm/ADT/ArrayRef.h"
29 template <typename T> ArrayRef<uint8_t> serialize(T &Record);
32 ArrayRef<uint8_t> serialize(const FieldListRecord &Record) = delete;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ToolDrivers/llvm-dlltool/
H A DDlltoolDriver.h18 template <typename T> class ArrayRef;
20 int dlltoolDriverMain(ArrayRef<const char *> ArgsArr);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ToolDrivers/llvm-lib/
H A DLibDriver.h18 template <typename T> class ArrayRef;
20 int libDriverMain(ArrayRef<const char *> ARgs);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMappingWriter.h17 #include "llvm/ADT/ArrayRef.h"
30 ArrayRef<StringRef> Filenames;
33 CoverageFilenamesSectionWriter(ArrayRef<StringRef> Filenames);
42 ArrayRef<unsigned> VirtualFileMapping;
43 ArrayRef<CounterExpression> Expressions;
47 CoverageMappingWriter(ArrayRef<unsigned> VirtualFileMapping,
48 ArrayRef<CounterExpression> Expressions,
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DEnumTables.h12 #include "llvm/ADT/ArrayRef.h"
17 ArrayRef<EnumEntry<uint16_t>> getOMFSegMapDescFlagNames();
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DWebAssemblyDisassemblerEmitter.h18 #include "llvm/ADT/ArrayRef.h"
25 const ArrayRef<const CodeGenInstruction *> &NumberedInstructions);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DCRC.h19 template <typename T> class ArrayRef;
22 uint32_t crc32(ArrayRef<uint8_t> Data);
26 uint32_t crc32(uint32_t CRC, ArrayRef<uint8_t> Data);
50 void update(ArrayRef<uint8_t> Data);
H A DProgram.h16 #include "llvm/ADT/ArrayRef.h"
77 findProgramByName(StringRef Name, ArrayRef<StringRef> Paths = {});
99 ArrayRef<StringRef> Args, ///< An array of strings that are passed to the
102 Optional<ArrayRef<StringRef>> Env = None, ///< An optional vector of
106 ArrayRef<Optional<StringRef>> Redirects = {}, ///<
138 ProcessInfo ExecuteNoWait(StringRef Program, ArrayRef<StringRef> Args,
139 Optional<ArrayRef<StringRef>> Env,
140 ArrayRef<Optional<StringRef>> Redirects = {},
148 ArrayRef<StringRef> Args);
153 ArrayRef<cons
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/FuzzMutate/
H A DRandomIRBuilder.h29 RandomIRBuilder(int Seed, ArrayRef<Type *> AllowedTypes)
37 Value *findOrCreateSource(BasicBlock &BB, ArrayRef<Instruction *> Insts);
43 Value *findOrCreateSource(BasicBlock &BB, ArrayRef<Instruction *> Insts,
44 ArrayRef<Value *> Srcs, fuzzerop::SourcePred Pred);
46 Value *newSource(BasicBlock &BB, ArrayRef<Instruction *> Insts,
47 ArrayRef<Value *> Srcs, fuzzerop::SourcePred Pred);
50 void connectToSink(BasicBlock &BB, ArrayRef<Instruction *> Insts, Value *V);
52 void newSink(BasicBlock &BB, ArrayRef<Instruction *> Insts, Value *V);
53 Value *findPointer(BasicBlock &BB, ArrayRef<Instruction *> Insts,
54 ArrayRef<Valu
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DSelectorLocationsKind.h46 ArrayRef<SourceLocation> SelLocs,
47 ArrayRef<Expr *> Args,
59 ArrayRef<Expr *> Args,
64 ArrayRef<SourceLocation> SelLocs,
65 ArrayRef<ParmVarDecl *> Args,
77 ArrayRef<ParmVarDecl *> Args,
H A DASTDiagnostic.h30 ArrayRef<DiagnosticsEngine::ArgumentValue> PrevArgs,
33 ArrayRef<intptr_t> QualTypeVals);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVCallLowering.h31 ArrayRef<Register> VRegs) const override;
34 ArrayRef<ArrayRef<Register>> VRegs) const override;
/freebsd-13-stable/contrib/llvm-project/lld/COFF/
H A DICF.h13 #include "llvm/ADT/ArrayRef.h"
20 void doICF(ArrayRef<Chunk *> chunks);
H A DLLDMapFile.h12 #include "llvm/ADT/ArrayRef.h"
17 void writeLLDMapFile(llvm::ArrayRef<OutputSection *> outputSections);
H A DMapFile.h12 #include "llvm/ADT/ArrayRef.h"
17 void writeMapFile(llvm::ArrayRef<OutputSection *> outputSections);
H A DMarkLive.h13 #include "llvm/ADT/ArrayRef.h"
20 void markLive(ArrayRef<Chunk *> chunks);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DError.h22 void PrintNote(ArrayRef<SMLoc> NoteLoc, const Twine &Msg);
24 void PrintWarning(ArrayRef<SMLoc> WarningLoc, const Twine &Msg);
28 void PrintError(ArrayRef<SMLoc> ErrorLoc, const Twine &Msg);
33 LLVM_ATTRIBUTE_NORETURN void PrintFatalError(ArrayRef<SMLoc> ErrorLoc,
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DAMDGPUEmitPrintf.h21 Value *emitAMDGPUPrintfCall(IRBuilder<> &Builder, ArrayRef<Value *> Args);
H A DPromoteMemToReg.h19 template <typename T> class ArrayRef;
39 void PromoteMemToReg(ArrayRef<AllocaInst *> Allocas, DominatorTree &DT,
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Host/
H A DLZMA.h12 #include "llvm/ADT/ArrayRef.h"
25 getUncompressedSize(llvm::ArrayRef<uint8_t> InputBuffer);
27 llvm::Error uncompress(llvm::ArrayRef<uint8_t> InputBuffer,
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DCSEMIRBuilder.h58 void profileDstOps(ArrayRef<DstOp> Ops, GISelInstProfileBuilder &B) const {
65 void profileSrcOps(ArrayRef<SrcOp> Ops, GISelInstProfileBuilder &B) const {
72 void profileEverything(unsigned Opc, ArrayRef<DstOp> DstOps,
73 ArrayRef<SrcOp> SrcOps, Optional<unsigned> Flags,
82 MachineInstrBuilder generateCopiesIfRequired(ArrayRef<DstOp> DstOps,
88 bool checkCopyToDefsPossible(ArrayRef<DstOp> DstOps);
94 MachineInstrBuilder buildInstr(unsigned Opc, ArrayRef<DstOp> DstOps,
95 ArrayRef<SrcOp> SrcOps,
/freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/Targets/
H A DPNaCl.cpp19 ArrayRef<const char *> PNaClTargetInfo::getGCCRegNames() const { return None; }
21 ArrayRef<TargetInfo::GCCRegAlias> PNaClTargetInfo::getGCCRegAliases() const {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86CallLowering.h22 template <typename T> class ArrayRef;
32 ArrayRef<Register> VRegs) const override;
35 ArrayRef<ArrayRef<Register>> VRegs) const override;
42 using SplitArgTy = std::function<void(ArrayRef<Register>)>;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsCallLowering.h33 bool handle(ArrayRef<CCValAssign> ArgLocs,
34 ArrayRef<CallLowering::ArgInfo> Args);
37 bool assignVRegs(ArrayRef<Register> VRegs, ArrayRef<CCValAssign> ArgLocs,
58 ArrayRef<CCValAssign> ArgLocs,
66 ArrayRef<Register> VRegs) const override;
69 ArrayRef<ArrayRef<Register>> VRegs) const override;
79 void subTargetRegTypeForCallingConv(const Function &F, ArrayRef<ArgInfo> Args,
80 ArrayRef<unsigne
[all...]

Completed in 224 milliseconds

1234567891011>>