Home
last modified time | relevance | path

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

12345678910>>...39

/openbsd-src/gnu/llvm/clang/lib/Headers/
H A Davx512erintrin.h22 #define _mm512_mask_exp2a23_round_pd(S, M, A, R) \ argument
27 #define _mm512_maskz_exp2a23_round_pd(M, A, R) \ argument
35 #define _mm512_mask_exp2a23_pd(S, M, A) \ argument
38 #define _mm512_maskz_exp2a23_pd(M, A) \ argument
46 #define _mm512_mask_exp2a23_round_ps(S, M, A, R) \ argument
51 #define _mm512_maskz_exp2a23_round_ps(M, A, R) \ argument
59 #define _mm512_mask_exp2a23_ps(S, M, A) \ argument
62 #define _mm512_maskz_exp2a23_ps(M, A) \ argument
71 #define _mm512_mask_rsqrt28_round_pd(S, M, A, R) \ argument
76 #define _mm512_maskz_rsqrt28_round_pd(M, A, R) \ argument
[all …]
H A Dsmmintrin.h239 #define _mm_round_ps(X, M) \ argument
280 #define _mm_round_ss(X, Y, M) \ argument
314 #define _mm_round_pd(X, M) \ argument
355 #define _mm_round_sd(X, Y, M) \ argument
384 #define _mm_blend_pd(V1, V2, M) \ argument
412 #define _mm_blend_ps(V1, V2, M) \ argument
521 #define _mm_blend_epi16(V1, V2, M) \ argument
596 #define _mm_dp_ps(X, Y, M) \ argument
630 #define _mm_dp_pd(X, Y, M) \ argument
1167 #define _mm_test_mix_ones_zeros(M, V) _mm_testnzc_si128((M), (V)) argument
[all …]
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.h94 void addModule(std::unique_ptr<Module> M) { in addModule()
98 bool removeModule(Module *M) { in removeModule()
103 bool hasModuleBeenAddedButNotLoaded(Module *M) { in hasModuleBeenAddedButNotLoaded()
107 bool hasModuleBeenLoaded(Module *M) { in hasModuleBeenLoaded()
113 bool hasModuleBeenFinalized(Module *M) { in hasModuleBeenFinalized()
117 bool ownsModule(Module* M) { in ownsModule()
122 void markModuleAsLoaded(Module *M) { in markModuleAsLoaded()
136 void markModuleAsFinalized(Module *M) { in markModuleAsFinalized()
166 delete M; in freeModulePtrSet() local
H A DMCJIT.cpp45 MCJIT::createJIT(std::unique_ptr<Module> M, std::string *ErrorStr, in createJIT()
66 MCJIT::MCJIT(std::unique_ptr<Module> M, std::unique_ptr<TargetMachine> TM, in MCJIT()
105 void MCJIT::addModule(std::unique_ptr<Module> M) { in addModule()
114 bool MCJIT::removeModule(Module *M) { in removeModule()
146 std::unique_ptr<MemoryBuffer> MCJIT::emitObject(Module *M) { in emitObject()
189 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
[all …]
/openbsd-src/gnu/llvm/clang/tools/clang-linker-wrapper/
H A DOffloadWrapper.cpp41 IntegerType *getSizeTTy(Module &M) { in getSizeTTy()
59 StructType *getEntryTy(Module &M) { in getEntryTy()
69 PointerType *getEntryPtrTy(Module &M) { in getEntryPtrTy()
79 StructType *getDeviceImageTy(Module &M) { in getDeviceImageTy()
89 PointerType *getDeviceImagePtrTy(Module &M) { in getDeviceImagePtrTy()
99 StructType *getBinDescTy(Module &M) { in getBinDescTy()
109 PointerType *getBinDescPtrTy(Module &M) { in getBinDescPtrTy()
151 GlobalVariable *createBinDesc(Module &M, ArrayRef<ArrayRef<char>> Bufs) { in createBinDesc()
227 void createRegisterFunction(Module &M, GlobalVariable *BinDesc) { in createRegisterFunction()
254 void createUnregisterFunction(Module &M, GlobalVariable *BinDesc) { in createUnregisterFunction()
[all …]
/openbsd-src/gnu/llvm/compiler-rt/lib/orc/tests/unit/
H A Dinterval_map_test.cpp20 IntervalMap<unsigned, unsigned, IntervalCoalescing::Enabled> M; in TEST() local
29 IntervalMap<unsigned, unsigned, IntervalCoalescing::Enabled> M; in TEST() local
141 IntervalMap<unsigned, unsigned, IntervalCoalescing::Enabled> M; in TEST() local
152 IntervalMap<unsigned, unsigned, IntervalCoalescing::Enabled> M; in TEST() local
165 IntervalMap<unsigned, unsigned, IntervalCoalescing::Enabled> M; in TEST() local
178 IntervalMap<unsigned, unsigned, IntervalCoalescing::Enabled> M; in TEST() local
196 IntervalMap<unsigned, S, IntervalCoalescing::Disabled> M; in TEST() local
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DModuleUtils.cpp26 static void appendToGlobalArray(StringRef ArrayName, Module &M, Function *F, in appendToGlobalArray()
69 void llvm::appendToGlobalCtors(Module &M, Function *F, int Priority, Constant *Data) { in appendToGlobalCtors()
73 void llvm::appendToGlobalDtors(Module &M, Function *F, int Priority, Constant *Data) { in appendToGlobalDtors()
87 static void appendToUsedList(Module &M, StringRef Name, ArrayRef<GlobalValue *> Values) { in appendToUsedList()
109 void llvm::appendToUsed(Module &M, ArrayRef<GlobalValue *> Values) { in appendToUsed()
113 void llvm::appendToCompilerUsed(Module &M, ArrayRef<GlobalValue *> Values) { in appendToCompilerUsed()
117 static void removeFromUsedList(Module &M, StringRef Name, in removeFromUsedList()
147 void llvm::removeFromUsedLists(Module &M, in removeFromUsedLists()
153 void llvm::setKCFIType(Module &M, Function &F, StringRef MangledType) { in setKCFIType()
173 FunctionCallee llvm::declareSanitizerInitFunction(Module &M, StringRef InitName, in declareSanitizerInitFunction()
[all …]
H A DRelLookupTableConverter.cpp24 static bool shouldConvertToRelLookupTable(Module &M, GlobalVariable &GV) { in shouldConvertToRelLookupTable()
95 Module &M = *Func.getParent(); in createRelLookupTable() local
135 Module &M = *LookupTable.getParent(); in convertToRelLookupTable() local
176 Module &M, function_ref<TargetTransformInfo &(Function &)> GetTTI) { in convertToRelativeLookupTables()
206 PreservedAnalyses RelLookupTableConverterPass::run(Module &M, in run()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/IPO/
H A DStripSymbols.cpp182 static void StripTypeNames(Module &M, bool PreserveDbgInfo) { in StripTypeNames()
211 static bool StripSymbolNames(Module &M, bool PreserveDbgInfo) { in StripSymbolNames()
237 bool StripSymbols::runOnModule(Module &M) { in runOnModule()
248 bool StripNonDebugSymbols::runOnModule(Module &M) { in runOnModule()
255 static bool stripDebugDeclareImpl(Module &M) { in stripDebugDeclareImpl()
293 bool StripDebugDeclare::runOnModule(Module &M) { in runOnModule()
337 static bool stripDeadDebugInfoImpl(Module &M) { in stripDeadDebugInfoImpl()
434 bool StripDeadDebugInfo::runOnModule(Module &M) { in runOnModule()
440 PreservedAnalyses StripSymbolsPass::run(Module &M, ModuleAnalysisManager &AM) { in run()
446 PreservedAnalyses StripNonDebugSymbolsPass::run(Module &M, in run()
[all …]
/openbsd-src/gnu/llvm/llvm/utils/TableGen/
H A DDAGISelMatcher.h112 bool isEqual(const Matcher *M) const { in isEqual()
183 virtual bool isContradictoryImpl(const Matcher *M) const { return false; } in isContradictoryImpl()
228 bool isEqualImpl(const Matcher *M) const override { return false; } in isEqualImpl()
253 bool isEqualImpl(const Matcher *M) const override { return true; } in isEqualImpl()
285 bool isEqualImpl(const Matcher *M) const override { in isEqualImpl()
301 bool isEqualImpl(const Matcher *M) const override { return true; } in isEqualImpl()
317 bool isEqualImpl(const Matcher *M) const override { return true; } in isEqualImpl()
335 bool isEqualImpl(const Matcher *M) const override { in isEqualImpl()
352 bool isEqualImpl(const Matcher *M) const override { return true; } in isEqualImpl()
372 bool isEqualImpl(const Matcher *M) const override { in isEqualImpl()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DAMDGPUCtorDtorLowering.cpp30 static Function *createInitOrFiniKernelFunction(Module &M, bool IsCtor) { in createInitOrFiniKernelFunction()
50 static bool createInitOrFiniKernel(Module &M, StringRef GlobalName, in createInitOrFiniKernel()
75 static bool lowerCtorsAndDtors(Module &M) { in lowerCtorsAndDtors()
86 bool runOnModule(Module &M) override { in runOnModule()
93 PreservedAnalyses AMDGPUCtorDtorLoweringPass::run(Module &M, in run()
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()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/tools/verify-uselistorder/
H A Dverify-uselistorder.cpp175 std::unique_ptr<Module> M = parseAssemblyFile(Filename, Err, Context); in readAssembly() local
181 ValueMapping::ValueMapping(const Module &M) { in ValueMapping()
259 static void debugValue(const ValueMapping &M, unsigned I, StringRef Desc) { in debugValue()
305 const ValueMapping &M) { in matches()
345 static void verifyAfterRoundTrip(const Module &M, in verifyAfterRoundTrip()
355 static void verifyBitcodeUseListOrder(const Module &M) { in verifyBitcodeUseListOrder()
367 static void verifyAssemblyUseListOrder(const Module &M) { in verifyAssemblyUseListOrder()
379 static void verifyUseListOrder(const Module &M) { in verifyUseListOrder()
463 static void changeUseLists(Module &M, Changer changeValueUseList) { in changeUseLists()
516 static void shuffleUseLists(Module &M, unsigned SeedOffset) { in shuffleUseLists()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/BPF/
H A DBPFCheckAndAdjustIR.cpp61 void BPFCheckAndAdjustIR::checkIR(Module &M) { in checkIR()
94 bool BPFCheckAndAdjustIR::removePassThroughBuiltin(Module &M) { in removePassThroughBuiltin()
124 bool BPFCheckAndAdjustIR::removeCompareBuiltin(Module &M) { in removeCompareBuiltin()
164 bool BPFCheckAndAdjustIR::adjustIR(Module &M) { in adjustIR()
170 bool BPFCheckAndAdjustIR::runOnModule(Module &M) { in runOnModule()
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/
H A DCompileUtils.cpp38 Expected<SimpleCompiler::CompileResult> SimpleCompiler::operator()(Module &M) { in operator ()()
70 SimpleCompiler::tryToLoadFromObjectCache(const Module &M) { in tryToLoadFromObjectCache()
77 void SimpleCompiler::notifyObjectCompiled(const Module &M, in notifyObjectCompiled()
89 ConcurrentIRCompiler::operator()(Module &M) { in operator ()()
/openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/
H A Dmutex.h50 atomic_u32 M = {}; variable
52 sync_mutex_t M = {}; variable
60 explicit ScopedLock(HybridMutex &M) : Mutex(M) { Mutex.lock(); } in ScopedLock()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Denum4.C10 struct M struct
16 M<char> gm; argument
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DIRBuilder.cpp46 Module *M) { in CreateGlobalString()
101 Module *M = GetInsertBlock()->getParent()->getParent(); in CreateVScale() local
145 Module *M = BB->getParent()->getParent(); in CreateMemSet() local
174 Module *M = BB->getParent()->getParent(); in CreateMemSetInline() local
202 Module *M = BB->getParent()->getParent(); in CreateElementUnorderedAtomicMemSet() local
232 Module *M = BB->getParent()->getParent(); in CreateMemTransferInst() local
270 Module *M = F->getParent(); in CreateMemCpyInline() local
311 Module *M = BB->getParent()->getParent(); in CreateElementUnorderedAtomicMemCpy() local
349 Module *M = BB->getParent()->getParent(); in CreateMemMove() local
386 Module *M = BB->getParent()->getParent(); in CreateElementUnorderedAtomicMemMove() local
[all …]
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/lib/Target/DirectX/
H A DDXILOpLowering.cpp32 static void lowerIntrinsic(dxil::OpCode DXILOp, Function &F, Module &M) { in lowerIntrinsic()
56 static bool lowerIntrinsics(Module &M) { in lowerIntrinsics()
82 PreservedAnalyses run(Module &M, ModuleAnalysisManager &) { in run()
93 bool runOnModule(Module &M) override { return lowerIntrinsics(M); } in runOnModule()
/openbsd-src/gnu/llvm/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
/openbsd-src/gnu/llvm/llvm/lib/Object/
H A DSymbolSize.cpp30 if (auto *M = dyn_cast<MachOObjectFile>(&O)) in getSectionID() local
40 if (auto *M = dyn_cast<MachOObjectFile>(&O)) in getSymbolSectionID() local
42 if (const auto *M = dyn_cast<WasmObjectFile>(&O)) in getSymbolSectionID() local
44 if (const auto *M = dyn_cast<XCOFFObjectFile>(&O)) in getSymbolSectionID() local
/openbsd-src/gnu/llvm/llvm/tools/llvm-reduce/deltas/
H A DReduceOpcodes.cpp30 static Value *replaceIntrinsic(Module &M, IntrinsicInst *II, in replaceIntrinsic()
38 static Value *reduceIntrinsic(Oracle &O, Module &M, IntrinsicInst *II) { in reduceIntrinsic()
133 static Value *tryReplaceCallWithLoadStore(Oracle &O, Module &M, CallBase *CB) { in tryReplaceCallWithLoadStore()
164 static Value *tryReplaceCallWithOperator(Oracle &O, Module &M, CallBase *CB) { in tryReplaceCallWithOperator()
207 static Value *reduceInstruction(Oracle &O, Module &M, Instruction &I) { in reduceInstruction()
/openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/
H A DHexagonBitTracker.cpp393 RegisterCell M = eMLS(rc(2), eIMM(im(3), W0)); in evaluate() local
398 RegisterCell M = eMLS(rc(2), rc(3)); in evaluate() local
403 RegisterCell M = eMLS(eIMM(im(2), W0), rc(3)); in evaluate() local
408 RegisterCell M = eMLS(rc(2), eIMM(im(3), W0)); in evaluate() local
413 RegisterCell M = eMLS(rc(2), rc(3)); in evaluate() local
468 RegisterCell M = eMLS(rc(1), rc(2)); in evaluate() local
478 RegisterCell M = eMLS(rc(1), rc(2)); in evaluate() local
482 RegisterCell M = eMLS(rc(2), eIMM(im(3), W0)); in evaluate() local
487 RegisterCell M = eMLS(rc(2), eIMM(im(3), W0)); in evaluate() local
492 RegisterCell M = eMLS(rc(2), rc(3)); in evaluate() local
[all …]

12345678910>>...39