/freebsd-src/contrib/llvm-project/clang/lib/Headers/ |
H A D | avx512erintrin.h |
|
H A D | smmintrin.h | 239 #define _mm_round_ps(X, M) \ argument 280 #define _mm_round_ss(X, Y, M) \ argument 314 _mm_round_pd(X,M) global() argument 355 _mm_round_sd(X,Y,M) global() argument 384 _mm_blend_pd(V1,V2,M) global() argument 412 _mm_blend_ps(V1,V2,M) global() argument 521 _mm_blend_epi16(V1,V2,M) global() argument 596 _mm_dp_ps(X,Y,M) global() argument 630 _mm_dp_pd(X,Y,M) global() argument 1167 _mm_test_mix_ones_zeros(M,V) global() argument 1185 _mm_test_all_zeros(M,V) global() argument 1497 _mm_mpsadbw_epu8(X,Y,M) global() argument 1606 _mm_cmpistrm(A,B,M) global() argument 1660 _mm_cmpistri(A,B,M) global() argument 1720 _mm_cmpestrm(A,LA,B,LB,M) global() argument 1779 _mm_cmpestri(A,LA,B,LB,M) global() argument 1831 _mm_cmpistra(A,B,M) global() argument 1880 _mm_cmpistrc(A,B,M) global() argument 1928 _mm_cmpistro(A,B,M) global() argument 1978 _mm_cmpistrs(A,B,M) global() argument 2028 _mm_cmpistrz(A,B,M) global() argument 2082 _mm_cmpestra(A,LA,B,LB,M) global() argument 2136 _mm_cmpestrc(A,LA,B,LB,M) global() argument 2189 _mm_cmpestro(A,LA,B,LB,M) global() argument 2244 _mm_cmpestrs(A,LA,B,LB,M) global() argument 2298 _mm_cmpestrz(A,LA,B,LB,M) global() argument [all...] |
/freebsd-src/sbin/growfs/ |
H A D | debug.h | 70 #define DBG_DUMP_HEX(F,C,M) dbg_dump_hex((F),(C),(M)) argument 72 #define DBG_DUMP_CG(F,C,M) dbg_dump_cg((C),(M)) argument 73 #define DBG_DUMP_CSUM(F,C,M) dbg_dump_csum((C),(M)) argument 74 #define DBG_DUMP_INO(F,C,M) (F)->fs_magic == FS_UFS1_MAGIC \ argument 77 #define DBG_DUMP_IBLK(F,C,M,L) dbg_dump_iblk((F),(C),(M),(L)) argument 78 #define DBG_DUMP_INMAP(F,C,M) dbg_dump_inmap((F),(C),(M)) argument 79 #define DBG_DUMP_FRMAP(F,C,M) dbg_dump_frmap((F),(C),(M)) argument 80 #define DBG_DUMP_CLMAP(F,C,M) dbg_dump_clmap((F),(C),(M)) argument 81 #define DBG_DUMP_CLSUM(F,C,M) dbg_dump_clsum((F),(C),(M)) argument 83 #define DBG_DUMP_SPTBL(F,C,M) dbg_dump_sptbl((F),(C),(M)) argument [all …]
|
/freebsd-src/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/ |
H A D | MCJIT.h | 94 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 D | MCJIT.cpp | 45 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 …]
|
/freebsd-src/contrib/llvm-project/compiler-rt/lib/orc/tests/unit/ |
H A D | interval_map_test.cpp | 20 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
|
/freebsd-src/contrib/llvm-project/llvm/lib/Bitcode/Writer/ |
H A D | BitWriter.cpp | 20 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()
|
/freebsd-src/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | ModuleUtils.cpp | 28 appendToGlobalArray(StringRef ArrayName,Module & M,Function * F,int Priority,Constant * Data) appendToGlobalArray() argument 73 appendToGlobalCtors(Module & M,Function * F,int Priority,Constant * Data) appendToGlobalCtors() argument 77 appendToGlobalDtors(Module & M,Function * F,int Priority,Constant * Data) appendToGlobalDtors() argument 91 appendToUsedList(Module & M,StringRef Name,ArrayRef<GlobalValue * > Values) appendToUsedList() argument 113 appendToUsed(Module & M,ArrayRef<GlobalValue * > Values) appendToUsed() argument 117 appendToCompilerUsed(Module & M,ArrayRef<GlobalValue * > Values) appendToCompilerUsed() argument 121 removeFromUsedList(Module & M,StringRef Name,function_ref<bool (Constant *)> ShouldRemove) removeFromUsedList() argument 151 removeFromUsedLists(Module & M,function_ref<bool (Constant *)> ShouldRemove) removeFromUsedLists() argument 157 setKCFIType(Module & M,Function & F,StringRef MangledType) setKCFIType() argument 177 declareSanitizerInitFunction(Module & M,StringRef InitName,ArrayRef<Type * > InitArgTypes,bool Weak) declareSanitizerInitFunction() argument 190 createSanitizerCtor(Module & M,StringRef CtorName) createSanitizerCtor() argument 205 createSanitizerCtorAndInitFunctions(Module & M,StringRef CtorName,StringRef InitName,ArrayRef<Type * > InitArgTypes,ArrayRef<Value * > InitArgs,StringRef VersionCheckName,bool Weak) createSanitizerCtorAndInitFunctions() argument 250 getOrCreateSanitizerCtorAndInitFunctions(Module & M,StringRef CtorName,StringRef InitName,ArrayRef<Type * > InitArgTypes,ArrayRef<Value * > InitArgs,function_ref<void (Function *,FunctionCallee)> FunctionsCreatedCallback,StringRef VersionCheckName,bool Weak) getOrCreateSanitizerCtorAndInitFunctions() argument 300 getUniqueModuleId(Module * M) getUniqueModuleId() argument 332 embedBufferInModule(Module & M,MemoryBufferRef Buf,StringRef SectionName,Align Alignment) embedBufferInModule() argument 355 lowerGlobalIFuncUsersAsGlobalCtor(Module & M,ArrayRef<GlobalIFunc * > FilteredIFuncsToLower) lowerGlobalIFuncUsersAsGlobalCtor() argument [all...] |
/freebsd-src/contrib/llvm-project/llvm/lib/Frontend/Offloading/ |
H A D | OffloadWrapper.cpp | 31 IntegerType *getSizeTTy(Module &M) { in getSizeTTy() argument 41 StructType *getDeviceImageTy(Module &M) { in getDeviceImageTy() argument 52 PointerType *getDeviceImagePtrTy(Module &M) { in getDeviceImagePtrTy() argument 62 StructType *getBinDescTy(Module &M) { in getBinDescTy() argument 72 getBinDescPtrTy(Module & M) getBinDescPtrTy() argument 114 createBinDesc(Module & M,ArrayRef<ArrayRef<char>> Bufs,EntryArrayTy EntryArray,StringRef Suffix) createBinDesc() argument 187 createRegisterFunction(Module & M,GlobalVariable * BinDesc,StringRef Suffix) createRegisterFunction() argument 215 createUnregisterFunction(Module & M,GlobalVariable * BinDesc,StringRef Suffix) createUnregisterFunction() argument 246 getFatbinWrapperTy(Module & M) getFatbinWrapperTy() argument 258 createFatbinDesc(Module & M,ArrayRef<char> Image,bool IsHIP,StringRef Suffix) createFatbinDesc() argument 320 createRegisterGlobalsFunction(Module & M,bool IsHIP,EntryArrayTy EntryArray,StringRef Suffix,bool EmitSurfacesAndTextures) createRegisterGlobalsFunction() argument 507 createRegisterFatbinFunction(Module & M,GlobalVariable * FatbinDesc,bool IsHIP,EntryArrayTy EntryArray,StringRef Suffix,bool EmitSurfacesAndTextures) createRegisterFatbinFunction() argument 583 wrapOpenMPBinaries(Module & M,ArrayRef<ArrayRef<char>> Images,EntryArrayTy EntryArray,llvm::StringRef Suffix) wrapOpenMPBinaries() argument 595 wrapCudaBinary(Module & M,ArrayRef<char> Image,EntryArrayTy EntryArray,llvm::StringRef Suffix,bool EmitSurfacesAndTextures) wrapCudaBinary() argument 609 wrapHIPBinary(Module & M,ArrayRef<char> Image,EntryArrayTy EntryArray,llvm::StringRef Suffix,bool EmitSurfacesAndTextures) wrapHIPBinary() argument [all...] |
H A D | Utility.cpp | 18 getEntryTy(Module & M) getEntryTy() argument 32 getOffloadingEntryInitializer(Module & M,Constant * Addr,StringRef Name,uint64_t Size,int32_t Flags,int32_t Data) getOffloadingEntryInitializer() argument 59 emitOffloadingEntry(Module & M,Constant * Addr,StringRef Name,uint64_t Size,int32_t Flags,int32_t Data,StringRef SectionName) emitOffloadingEntry() argument 82 getOffloadEntryArray(Module & M,StringRef SectionName) getOffloadEntryArray() argument [all...] |
/freebsd-src/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | StripSymbols.cpp | 90 static void StripTypeNames(Module &M, bool PreserveDbgInfo) { in StripTypeNames() 119 static bool StripSymbolNames(Module &M, bool PreserveDbgInfo) { in StripSymbolNames() 145 static bool stripDebugDeclareImpl(Module &M) { in stripDebugDeclareImpl() 183 static bool stripDeadDebugInfoImpl(Module &M) { in stripDeadDebugInfoImpl() 270 PreservedAnalyses StripSymbolsPass::run(Module &M, ModuleAnalysisManager &AM) { in run() 278 PreservedAnalyses StripNonDebugSymbolsPass::run(Module &M, in run() 286 PreservedAnalyses StripDebugDeclarePass::run(Module &M, in run() 294 PreservedAnalyses StripDeadDebugInfoPass::run(Module &M, in run()
|
/freebsd-src/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | DAGISelMatcher.h |
|
/freebsd-src/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUCtorDtorLowering.cpp | 30 static Function *createInitOrFiniKernelFunction(Module &M, bool IsCtor) { in createInitOrFiniKernelFunction() 73 Module &M = *F.getParent(); in createInitOrFiniCalls() local 145 static bool createInitOrFiniKernel(Module &M, StringRef GlobalName, in createInitOrFiniKernel() 164 static bool lowerCtorsAndDtors(Module &M) { in lowerCtorsAndDtors() 175 bool runOnModule(Module &M) override { return lowerCtorsAndDtors(M); } in runOnModule() 180 PreservedAnalyses AMDGPUCtorDtorLoweringPass::run(Module &M, in run()
|
H A D | AMDGPUUnifyMetadata.cpp | 55 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()
|
/freebsd-src/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
H A D | CompileUtils.cpp | 38 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 ()()
|
/freebsd-src/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
H A D | NVPTXCtorDtorLowering.cpp | 51 addKernelMetadata(Module & M,GlobalValue * GV) addKernelMetadata() argument 90 createInitOrFiniKernelFunction(Module & M,bool IsCtor) createInitOrFiniKernelFunction() argument 128 Module &M = *F.getParent(); createInitOrFiniCalls() local 206 createInitOrFiniGlobals(Module & M,GlobalVariable * GV,bool IsCtor) createInitOrFiniGlobals() argument 245 createInitOrFiniKernel(Module & M,StringRef GlobalName,bool IsCtor) createInitOrFiniKernel() argument 267 lowerCtorsAndDtors(Module & M) lowerCtorsAndDtors() argument 278 runOnModule(Module & M) runOnModule() argument 283 run(Module & M,ModuleAnalysisManager & AM) run() argument [all...] |
H A D | NVPTXGenericToNVVM.cpp | 56 bool GenericToNVVM::runOnModule(Module &M) { in runOnModule() argument 137 Value *GenericToNVVM::remapConstant(Module *M, Functio argument 177 remapConstantVectorOrConstantAggregate(Module * M,Function * F,Constant * C,IRBuilder<> & Builder) remapConstantVectorOrConstantAggregate() argument 215 remapConstantExpr(Module * M,Function * F,ConstantExpr * C,IRBuilder<> & Builder) remapConstantExpr() argument 304 runOnModule(Module & M) runOnModule() argument 308 run(Module & M,ModuleAnalysisManager & AM) run() argument [all...] |
/freebsd-src/sys/contrib/ck/include/gcc/ |
H A D | ck_pr.h | 58 #define CK_PR_LOAD(S, M, T) \ argument 156 #define CK_PR_CAS(S, M, T) \ in CK_PR_FENCE() argument 213 #define CK_PR_FAA(S, M, T) \ argument 239 #define CK_PR_BINARY(K, S, M, T) \ argument 269 #define CK_PR_UNARY(S, M, T) \ argument 283 #define CK_PR_UNARY_S(S, M) CK_PR_UNARY(S, M, M) argument
|
/freebsd-src/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
H A D | mutex.h | 75 atomic_u32 M = {}; variable 77 sync_mutex_t M = {}; variable 85 explicit ScopedLock(HybridMutex &M) ACQUIRE(M) : Mutex(M) { Mutex.lock(); } in ScopedLock()
|
/freebsd-src/contrib/llvm-project/llvm/lib/Target/DirectX/ |
H A D | DXILOpLowering.cpp | 32 lowerIntrinsic(dxil::OpCode DXILOp,Function & F,Module & M) lowerIntrinsic() argument 56 lowerIntrinsics(Module & M) lowerIntrinsics() argument 82 run(Module & M,ModuleAnalysisManager &) run() argument 93 runOnModule(Module & M) runOnModule() argument [all...] |
H A D | DXILResourceAnalysis.cpp | 21 dxil::Resources DXILResourceAnalysis::run(Module &M, in run() 30 PreservedAnalyses DXILResourcePrinterPass::run(Module &M, in run() 43 bool DXILResourceWrapper::runOnModule(Module &M) { in runOnModule()
|
/freebsd-src/contrib/llvm-project/llvm/lib/Object/ |
H A D | SymbolSize.cpp | 30 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
|
/freebsd-src/contrib/llvm-project/llvm/lib/Transforms/HipStdPar/ |
H A D | HipStdPar.cpp | 109 static inline void clearModule(Module &M) { // TODO: simplify. in clearModule() argument 120 static inline void maybeHandleGlobals(Module &M) { in maybeHandleGlobals() argument 142 removeUnreachableFunctions(const SmallPtrSet<const Function *,N> & Reachable,Module & M) removeUnreachableFunctions() argument 191 run(Module & M,ModuleAnalysisManager & MAM) run() argument 277 run(Module & M,ModuleAnalysisManager &) run() argument [all...] |
/freebsd-src/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | IndirectThunks.h | 34 doInitialization(Module & M) doInitialization() argument 39 init(Module & M) init() argument 54 Module &M = const_cast<Module &>(*MMI.getModule()); createThunkFunction() local [all...] |
/freebsd-src/sys/contrib/ck/include/gcc/ppc/ |
H A D | ck_pr.h | 96 #define CK_PR_LOAD(S, M, T, C, I) \ in CK_PR_FENCE() argument 123 #define CK_PR_STORE(S, M, T, C, I) \ argument 149 #define CK_PR_CAS(N, T, M) \ argument 197 #define CK_PR_FAS(N, M, T, W) \ argument 220 #define CK_PR_UNARY(O, N, M, T, I, W) \ argument 254 #define CK_PR_BINARY(O, N, M, T, I, W) \ argument
|