Searched refs:Model (Results 76 - 100 of 130) sorted by relevance

123456

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DFileSystem.h788 /// open or create the file. The name is based on \a Model with '%'
800 /// @param Model Name to base unique path off of.
803 void createUniquePath(const Twine &Model, SmallVectorImpl<char> &ResultPath,
809 /// file. The name is based on \a Model with '%' replaced by a random char in
810 /// [0-9a-f]. If \a Model is not an absolute path, the temporary file will be
822 /// @param Model Name to base unique path off of.
827 std::error_code createUniqueFile(const Twine &Model, int &ResultFD,
833 std::error_code createUniqueFile(const Twine &Model,
851 static Expected<TempFile> create(const Twine &Model,
902 std::error_code getPotentiallyUniqueFileName(const Twine &Model,
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DModule.cpp560 Optional<CodeModel::Model> Module::getCodeModel() const {
561 auto *Val = cast_or_null<ConstantAsMetadata>(getModuleFlag("Code Model"));
566 return static_cast<CodeModel::Model>(
570 void Module::setCodeModel(CodeModel::Model CL) {
575 addModuleFlag(ModFlagBehavior::Error, "Code Model", CL);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DCommonArgs.h63 std::tuple<llvm::Reloc::Model, unsigned, bool>
H A DCommonArgs.cpp967 std::tuple<llvm::Reloc::Model, unsigned, bool>
1071 StringRef Model = ModelArg ? ModelArg->getValue() : ""; local
1072 if (Model != "kernel") {
1165 llvm::Reloc::Model RelocM = llvm::Reloc::Static;
1227 llvm::Reloc::Model RelocationModel;
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DCodeGenOptions.h212 llvm::Reloc::Model RelocationModel;
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/
H A DBottleneckAnalysis.h137 PressureTracker(const MCSchedModel &Model);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsSubtarget.cpp272 Reloc::Model MipsSubtarget::getRelocationModel() const {
H A DMipsSubtarget.h363 Reloc::Model getRelocationModel() const;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.cpp248 TLSModel::Model Model = TM.getTLSModel(GV);
249 return Model == TLSModel::GeneralDynamic || Model == TLSModel::LocalDynamic;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/
H A DTargetLoweringObjectFile.cpp233 Reloc::Model ReloModel = TM.getRelocationModel();
/freebsd-13-stable/sys/arm64/iommu/
H A Dsmmu_acpi.c157 priv |= iort_data.smmu[i]->Model;
/freebsd-13-stable/sys/contrib/dev/acpica/common/
H A Ddmtbinfo.c296 {ACPI_DMT_UINT8, ACPI_FADT_OFFSET (Model), "Model", 0},
369 {ACPI_DMT_FLAG2, ACPI_FADT_FLAG_OFFSET (Flags,2), "Use APIC Cluster Model (V4)", 0},
H A Ddmtbinfo2.c304 {ACPI_DMT_UINT32, ACPI_IORT3_OFFSET (Model), "Model", 0},
350 {ACPI_DMT_UINT32, ACPI_IORT4_OFFSET (Model), "Model", 0},
/freebsd-13-stable/sys/contrib/dev/acpica/include/
H A Dactbl.h371 UINT8 Model; /* System Interrupt Model (ACPI 1.0) - not used in ACPI 2.0+ */ member in struct:acpi_table_fadt
H A Dactbl2.h346 UINT32 Model; member in struct:acpi_iort_smmu
357 /* Values for Model field above */
389 UINT32 Model; member in struct:acpi_iort_smmu_v3
399 /* Values for Model field above */
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
H A DAnalysisConsumer.cpp165 case NAME##Model: CreateStoreMgr = CREATEFN; break;
173 case NAME##Model: CreateConstraintMgr = CREATEFN; break;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/LTO/
H A DLTOBackend.cpp165 Reloc::Model RelocModel;
172 Optional<CodeModel::Model> CodeModel;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DModule.h843 Optional<CodeModel::Model> getCodeModel() const;
846 void setCodeModel(CodeModel::Model CL);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h1258 template <typename T> class Model;
1509 class TargetTransformInfo::Model final : public TargetTransformInfo::Concept {
1513 Model(T Impl) : Impl(std::move(Impl)) {} function in class:llvm::final
1514 ~Model() override {}
2001 : TTIImpl(new Model<T>(Impl)) {}
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DBackendUtil.cpp401 static Optional<llvm::CodeModel::Model>
414 return static_cast<llvm::CodeModel::Model>(CodeModel);
435 llvm::StringSwitch<llvm::ThreadModel::Model>(CodeGenOpts.ThreadModel)
816 Optional<llvm::CodeModel::Model> CM = getCodeModel(CodeGenOpts);
819 llvm::Reloc::Model RM = CodeGenOpts.RelocationModel;
/freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/
H A DToolChain.cpp628 bool ToolChain::isThreadModelSupported(const StringRef Model) const {
629 if (Model == "single") {
637 } else if (Model == "posix")
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp203 if (Optional<CodeModel::Model> CM = unwrap(options.CodeModel, JIT))
/freebsd-13-stable/sys/dev/ce/
H A Dtau32-ddk.h358 int Model; member in struct:tag_TAU32_UserContext
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Driver/
H A DToolChain.h515 virtual bool isThreadModelSupported(const StringRef Model) const;
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llc/
H A Dllc.cpp436 Optional<Reloc::Model> RM = codegen::getExplicitRelocModel();

Completed in 201 milliseconds

123456