Home
last modified time | relevance | path

Searched defs:M (Results 1 – 25 of 1059) sorted by relevance

12345678910>>...43

/netbsd/external/apache2/llvm/dist/clang/lib/Headers/
H A Davx512erintrin.h35 #define _mm512_mask_exp2a23_pd(S, M, A) \ argument
38 #define _mm512_maskz_exp2a23_pd(M, A) \ argument
59 #define _mm512_mask_exp2a23_ps(S, M, A) \ argument
62 #define _mm512_maskz_exp2a23_ps(M, A) \ argument
87 #define _mm512_maskz_rsqrt28_pd(M, A) \ argument
111 #define _mm512_maskz_rsqrt28_ps(M, A) \ argument
138 #define _mm_maskz_rsqrt28_ss(M, A, B) \ argument
190 #define _mm512_maskz_rcp28_pd(M, A) \ argument
214 #define _mm512_maskz_rcp28_ps(M, A) \ argument
241 #define _mm_maskz_rcp28_ss(M, A, B) \ argument
[all …]
H A Dsmmintrin.h233 #define _mm_round_ps(X, M) \ argument
274 #define _mm_round_ss(X, Y, M) \ argument
308 #define _mm_round_pd(X, M) \ argument
349 #define _mm_round_sd(X, Y, M) \ argument
378 #define _mm_blend_pd(V1, V2, M) \ argument
406 #define _mm_blend_ps(V1, V2, M) \ argument
592 #define _mm_dp_ps(X, Y, M) \ argument
627 #define _mm_dp_pd(X, Y, M) \ argument
1626 #define _mm_cmpistrm(A, B, M) \ argument
1680 #define _mm_cmpistri(A, B, M) \ argument
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.h95 void addModule(std::unique_ptr<Module> M) { in addModule()
99 bool removeModule(Module *M) { in removeModule()
104 bool hasModuleBeenAddedButNotLoaded(Module *M) { in hasModuleBeenAddedButNotLoaded()
108 bool hasModuleBeenLoaded(Module *M) { in hasModuleBeenLoaded()
114 bool hasModuleBeenFinalized(Module *M) { in hasModuleBeenFinalized()
118 bool ownsModule(Module* M) { in ownsModule()
123 void markModuleAsLoaded(Module *M) { in markModuleAsLoaded()
137 void markModuleAsFinalized(Module *M) { in markModuleAsFinalized()
157 Module *M = *I; in markAllLoadedModulesAsFinalized() local
171 Module *M = *I; in freeModulePtrSet() local
[all …]
H A DMCJIT.cpp44 MCJIT::createJIT(std::unique_ptr<Module> M, std::string *ErrorStr, in createJIT()
104 void MCJIT::addModule(std::unique_ptr<Module> M) { in addModule()
113 bool MCJIT::removeModule(Module *M) { in removeModule()
145 std::unique_ptr<MemoryBuffer> MCJIT::emitObject(Module *M) { in emitObject()
188 void MCJIT::generateCodeForModule(Module *M) { in generateCodeForModule()
264 for (auto M : OwnedModules.added()) in finalizeObject() local
267 for (auto M : ModsToAdd) in finalizeObject() local
273 void MCJIT::finalizeModule(Module *M) { in finalizeModule()
307 Module *M = *I; in findModuleForSymbol() local
377 Module *M = findModuleForSymbol(Name, CheckFunctionsOnly); in findSymbol() local
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DModuleUtils.cpp25 static void appendToGlobalArray(const char *Array, Module &M, Function *F, in appendToGlobalArray()
106 void llvm::appendToUsed(Module &M, ArrayRef<GlobalValue *> Values) { in appendToUsed()
110 void llvm::appendToCompilerUsed(Module &M, ArrayRef<GlobalValue *> Values) { in appendToCompilerUsed()
115 llvm::declareSanitizerInitFunction(Module &M, StringRef InitName, in declareSanitizerInitFunction()
124 Function *llvm::createSanitizerCtor(Module &M, StringRef CtorName) { in createSanitizerCtor()
135 Module &M, StringRef CtorName, StringRef InitName, in createSanitizerCtorAndInitFunctions()
157 Module &M, StringRef CtorName, StringRef InitName, in getOrCreateSanitizerCtorAndInitFunctions()
178 Function *llvm::getOrCreateInitFunction(Module &M, StringRef Name) { in getOrCreateInitFunction()
201 Module &M, SmallVectorImpl<Function *> &DeadComdatFunctions) { in filterDeadComdatFunctions()
264 std::string llvm::getUniqueModuleId(Module *M) { in getUniqueModuleId()
[all …]
H A DNameAnonGlobals.cpp31 ModuleHasher(Module &M) : TheModule(M) {} in ModuleHasher()
65 bool llvm::nameUnamedGlobals(Module &M) { in nameUnamedGlobals()
97 bool runOnModule(Module &M) override { return nameUnamedGlobals(M); } in runOnModule()
103 PreservedAnalyses NameAnonGlobalPass::run(Module &M, in run()
H A DRelLookupTableConverter.cpp27 static bool shouldConvertToRelLookupTable(Module &M, GlobalVariable &GV) { in shouldConvertToRelLookupTable()
92 Module &M = *Func.getParent(); in createRelLookupTable() local
132 Module &M = *LookupTable.getParent(); in convertToRelLookupTable() local
169 Module &M, function_ref<TargetTransformInfo &(Function &)> GetTTI) { in convertToRelativeLookupTables()
197 PreservedAnalyses RelLookupTableConverterPass::run(Module &M, in run()
H A DCanonicalizeAliases.cpp63 static bool canonicalizeAliases(Module &M) { in canonicalizeAliases()
82 bool runOnModule(Module &M) override { return canonicalizeAliases(M); } in runOnModule()
88 PreservedAnalyses CanonicalizeAliasesPass::run(Module &M, in run()
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DStripSymbols.cpp180 static void StripTypeNames(Module &M, bool PreserveDbgInfo) { in StripTypeNames()
210 static bool StripSymbolNames(Module &M, bool PreserveDbgInfo) { in StripSymbolNames()
236 bool StripSymbols::runOnModule(Module &M) { in runOnModule()
247 bool StripNonDebugSymbols::runOnModule(Module &M) { in runOnModule()
254 static bool stripDebugDeclareImpl(Module &M) { in stripDebugDeclareImpl()
292 bool StripDebugDeclare::runOnModule(Module &M) { in runOnModule()
298 static bool stripDeadDebugInfoImpl(Module &M) { in stripDeadDebugInfoImpl()
387 bool StripDeadDebugInfo::runOnModule(Module &M) { in runOnModule()
399 PreservedAnalyses StripNonDebugSymbolsPass::run(Module &M, in run()
405 PreservedAnalyses StripDebugDeclarePass::run(Module &M, in run()
[all …]
H A DStripDeadPrototypes.cpp29 static bool stripDeadPrototypes(Module &M) { in stripDeadPrototypes()
56 PreservedAnalyses StripDeadPrototypesPass::run(Module &M, in run()
72 bool runOnModule(Module &M) override { in runOnModule()
/netbsd/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
H A DBitWriter.cpp20 int LLVMWriteBitcodeToFile(LLVMModuleRef M, const char *Path) { in LLVMWriteBitcodeToFile()
31 int LLVMWriteBitcodeToFD(LLVMModuleRef M, int FD, int ShouldClose, in LLVMWriteBitcodeToFD()
39 int LLVMWriteBitcodeToFileHandle(LLVMModuleRef M, int FileHandle) { in LLVMWriteBitcodeToFileHandle()
43 LLVMMemoryBufferRef LLVMWriteBitcodeToMemoryBuffer(LLVMModuleRef M) { in LLVMWriteBitcodeToMemoryBuffer()
/netbsd/crypto/external/bsd/heimdal/dist/lib/hcrypto/
H A Dtest_bulk.c52 #define STATS_START(M) \ argument
59 #define STATS_END(M) \ argument
67 #define STATS_START(M) \ argument
72 #define STATS_END(M) \ argument
124 int64_t M = 0; in test_bulk_cipher() local
179 int64_t M = 0; in test_bulk_digest() local
/netbsd/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DDAGISelMatcher.h112 bool isEqual(const Matcher *M) const { in isEqual()
285 bool isEqualImpl(const Matcher *M) const override { in isEqualImpl()
335 bool isEqualImpl(const Matcher *M) const override { in isEqualImpl()
372 bool isEqualImpl(const Matcher *M) const override { in isEqualImpl()
396 bool isEqualImpl(const Matcher *M) const override { in isEqualImpl()
419 bool isEqualImpl(const Matcher *M) const override { in isEqualImpl()
443 bool isEqualImpl(const Matcher *M) const override { in isEqualImpl()
513 bool isEqualImpl(const Matcher *M) const override { in isEqualImpl()
564 bool isEqualImpl(const Matcher *M) const override { in isEqualImpl()
588 bool isEqualImpl(const Matcher *M) const override { in isEqualImpl()
[all …]
/netbsd/external/lgpl3/gmp/dist/mpn/generic/
H A Dhgcd_matrix.c41 mpn_hgcd_matrix_init (struct hgcd_matrix *M, mp_size_t n, mp_ptr p) in mpn_hgcd_matrix_init()
59 mpn_hgcd_matrix_update_q (struct hgcd_matrix *M, mp_srcptr qp, mp_size_t qn, in mpn_hgcd_matrix_update_q()
132 mpn_hgcd_matrix_mul_1 (struct hgcd_matrix *M, const struct hgcd_matrix1 *M1, in mpn_hgcd_matrix_mul_1()
151 mpn_hgcd_matrix_mul (struct hgcd_matrix *M, const struct hgcd_matrix *M1, in mpn_hgcd_matrix_mul()
199 mpn_hgcd_matrix_adjust (const struct hgcd_matrix *M, in mpn_hgcd_matrix_adjust()
/netbsd/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
H A DCompileUtils.cpp37 Expected<SimpleCompiler::CompileResult> SimpleCompiler::operator()(Module &M) { in operator ()()
68 SimpleCompiler::tryToLoadFromObjectCache(const Module &M) { in tryToLoadFromObjectCache()
75 void SimpleCompiler::notifyObjectCompiled(const Module &M, in notifyObjectCompiled()
87 ConcurrentIRCompiler::operator()(Module &M) { in operator ()()
/netbsd/external/apache2/llvm/dist/llvm/bindings/ocaml/bitwriter/
H A Dbitwriter_ocaml.c25 value llvm_write_bitcode_file(LLVMModuleRef M, value Path) { in llvm_write_bitcode_file()
31 value llvm_write_bitcode_to_fd(value U, LLVMModuleRef M, value FD) { in llvm_write_bitcode_to_fd()
46 LLVMMemoryBufferRef llvm_write_bitcode_to_memory_buffer(LLVMModuleRef M) { in llvm_write_bitcode_to_memory_buffer()
/netbsd/external/apache2/llvm/dist/llvm/tools/verify-uselistorder/
H A Dverify-uselistorder.cpp173 std::unique_ptr<Module> M = parseAssemblyFile(Filename, Err, Context); in readAssembly() local
179 ValueMapping::ValueMapping(const Module &M) { in ValueMapping()
308 const ValueMapping &M) { in matches()
348 static void verifyAfterRoundTrip(const Module &M, in verifyAfterRoundTrip()
358 static void verifyBitcodeUseListOrder(const Module &M) { in verifyBitcodeUseListOrder()
370 static void verifyAssemblyUseListOrder(const Module &M) { in verifyAssemblyUseListOrder()
382 static void verifyUseListOrder(const Module &M) { in verifyUseListOrder()
466 static void changeUseLists(Module &M, Changer changeValueUseList) { in changeUseLists()
524 static void shuffleUseLists(Module &M, unsigned SeedOffset) { in shuffleUseLists()
531 static void reverseUseLists(Module &M) { in reverseUseLists()
[all …]
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/BPF/
H A DBPFCheckAndAdjustIR.cpp60 void BPFCheckAndAdjustIR::checkIR(Module &M) { in checkIR()
93 bool BPFCheckAndAdjustIR::removePassThroughBuiltin(Module &M) { in removePassThroughBuiltin()
123 bool BPFCheckAndAdjustIR::adjustIR(Module &M) { in adjustIR()
127 bool BPFCheckAndAdjustIR::runOnModule(Module &M) { in runOnModule()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPUUnifyMetadata.cpp55 bool unifyVersionMD(Module &M, StringRef Name, bool PickFirst) { in unifyVersionMD()
88 bool unifyExtensionMD(Module &M, StringRef Name) { in unifyExtensionMD()
107 bool unifyMetadataImpl(Module &M) { in unifyMetadataImpl()
136 bool AMDGPUUnifyMetadata::runOnModule(Module &M) { in runOnModule()
140 PreservedAnalyses AMDGPUUnifyMetadataPass::run(Module &M, in run()
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-c-test/
H A Dmodule.c29 LLVMModuleRef M; in llvm_load_module() local
65 LLVMModuleRef M = llvm_load_module(Lazy, New); in llvm_module_dump() local
77 LLVMModuleRef M = llvm_load_module(false, false); in llvm_module_list_functions() local
118 LLVMModuleRef M = llvm_load_module(false, false); in llvm_module_list_globals() local
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DIndirectThunks.h29 void doInitialization(Module &M) {} in doInitialization()
34 void init(Module &M) { in init()
48 Module &M = const_cast<Module &>(*MMI.getModule()); in createThunkFunction() local
/netbsd/external/gpl3/gcc.old/dist/gcc/config/i386/
H A Dsmmintrin.h113 #define _mm_round_pd(V, M) \ argument
116 #define _mm_round_sd(D, V, M) \ argument
138 #define _mm_round_ps(V, M) \ argument
141 #define _mm_round_ss(D, V, M) \ argument
173 #define _mm_blend_epi16(X, Y, M) \ argument
198 #define _mm_blend_ps(X, Y, M) \ argument
223 #define _mm_blend_pd(X, Y, M) \ argument
256 #define _mm_dp_ps(X, Y, M) \ argument
260 #define _mm_dp_pd(X, Y, M) \ argument
655 #define _mm_cmpistrm(X, Y, M) \ argument
[all …]
/netbsd/external/gpl3/gcc/dist/gcc/config/i386/
H A Dsmmintrin.h113 #define _mm_round_pd(V, M) \ argument
116 #define _mm_round_sd(D, V, M) \ argument
138 #define _mm_round_ps(V, M) \ argument
141 #define _mm_round_ss(D, V, M) \ argument
173 #define _mm_blend_epi16(X, Y, M) \ argument
198 #define _mm_blend_ps(X, Y, M) \ argument
223 #define _mm_blend_pd(X, Y, M) \ argument
256 #define _mm_dp_ps(X, Y, M) \ argument
260 #define _mm_dp_pd(X, Y, M) \ argument
655 #define _mm_cmpistrm(X, Y, M) \ argument
[all …]
/netbsd/external/apache2/llvm/dist/clang/lib/AST/
H A DParentMap.cpp29 static void BuildParentMap(MapTy& M, Stmt* S, in BuildParentMap()
111 MapTy *M = new MapTy(); in ParentMap() local
130 MapTy *M = reinterpret_cast<MapTy *>(Impl); in setParent() local
135 MapTy* M = (MapTy*) Impl; in getParent() local
/netbsd/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/LLJITWithObjectCache/
H A DLLJITWithObjectCache.cpp28 void notifyObjectCompiled(const Module *M, in notifyObjectCompiled()
34 std::unique_ptr<MemoryBuffer> getObject(const Module *M) override { in getObject()
67 auto M = ExitOnErr(parseExampleModule(Add1Example, "add1")); in runJITWithCache() local

12345678910>>...43