Home
last modified time | relevance | path

Searched refs:Module (Results 251 - 275 of 1012) sorted by relevance

1...<<11121314151617181920>>...41

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DAMDGPUFixFunctionBitcasts.cpp29 bool runOnModule(Module &M) override;
58 bool AMDGPUFixFunctionBitcasts::runOnModule(Module &M) { in runOnModule()
H A DAMDGPUArgumentUsageInfo.cpp46 bool AMDGPUArgumentUsageInfo::doInitialization(Module &M) { in doInitialization()
50 bool AMDGPUArgumentUsageInfo::doFinalization(Module &M) { in doFinalization()
55 void AMDGPUArgumentUsageInfo::print(raw_ostream &OS, const Module *M) const { in print()
H A DAMDGPUArgumentUsageInfo.h169 bool doInitialization(Module &M) override;
170 bool doFinalization(Module &M) override;
172 void print(raw_ostream &OS, const Module *M = nullptr) const override;
H A DAMDGPUAsmPrinter.h106 bool doFinalization(Module &M) override;
136 void EmitStartOfAsmFile(Module &M) override;
138 void EmitEndOfAsmFile(Module &M) override;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Bitcode/
H A DBitcodeWriterPass.h21 class Module;
73 PreservedAnalyses run(Module &M, ModuleAnalysisManager &);
/third_party/spirv-tools/test/opt/
H A Dfunction_utils.h23 inline spvtools::opt::Function* GetFunction(spvtools::opt::Module* module, in GetFunction()
34 const spvtools::opt::Module* module, uint32_t id) { in GetFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
H A DDebugCrossImpSubsection.cpp32 "Not enough bytes for a Cross Module Import Header!"); in operator ()()
38 "Not enough to read specified number of Cross Module References!"); in operator ()()
54 void DebugCrossModuleImportsSubsection::addImport(StringRef Module, in addImport() argument
56 Strings.insert(Module); in addImport()
58 auto Result = Mappings.insert(std::make_pair(Module, Targets)); in addImport()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/LTO/
H A DUpdateCompilerUsed.cpp33 void findInModule(Module &TheModule) { in findInModule()
58 void initializeLibCalls(const Module &TheModule) { in initializeLibCalls()
122 void llvm::updateCompilerUsed(Module &TheModule, const TargetMachine &TM, in updateCompilerUsed()
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
H A DLLVMReactorDebugInfo.hpp46 class Module;
73 llvm::Module *module,
158 llvm::Module *module;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/FuzzMutate/
H A DIRMutator.h26 class Module;
48 virtual void mutate(Module &M, RandomIRBuilder &IB);
70 void mutateModule(Module &M, int Seed, size_t CurSize, size_t MaxSize);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
H A DDiagnosticPrinter.h23 class Module;
54 virtual DiagnosticPrinter &operator<<(const Module &M) = 0;
87 DiagnosticPrinter &operator<<(const Module &M) override;
H A DGlobalValue.h38 class Module;
172 Module *Parent; // The containing module.
175 void setParent(Module *parent) {
516 /// BitcodeReader to load the Module.
519 /// If this function's Module is being lazily streamed in functions from disk
575 Module *getParent() { return Parent; }
576 const Module *getParent() const { return Parent; }
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
H A DX86AsmPrinter.h126 void EmitStartOfAsmFile(Module &M) override;
128 void EmitEndOfAsmFile(Module &M) override;
142 bool doInitialization(Module &M) override {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
H A DCGProfile.cpp26 PreservedAnalyses CGProfilePass::run(Module &M, ModuleAnalysisManager &MAM) { in run()
80 Module &M, in addModuleFlags()
97 M.addModuleFlag(Module::Append, "CG Profile", MDNode::get(Context, Nodes)); in addModuleFlags()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
H A DDivergenceAnalysis.h25 class Module;
82 void print(raw_ostream &OS, const Module *) const;
209 void print(raw_ostream &OS, const Module *) const;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
H A DMips16HardFloat.cpp15 #include "llvm/IR/Module.h"
41 bool runOnModule(Module &M) override;
186 static std::string swapFPIntParams(FPParamVariant PV, Module *M, bool LE, in swapFPIntParams()
256 static void assureFPCallStub(Function &F, Module *M, in assureFPCallStub()
377 static bool fixupFPReturnAndCall(Function &F, Module *M, in fixupFPReturnAndCall()
446 static void createFPFnStub(Function *F, Module *M, FPParamVariant PV, in createFPFnStub()
511 bool Mips16HardFloat::runOnModule(Module &M) { in runOnModule()
514 LLVM_DEBUG(errs() << "Run on Module Mips16HardFloat\n"); in runOnModule()
516 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) { in runOnModule()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DPreISelIntrinsicLowering.cpp21 #include "llvm/IR/Module.h"
79 Module *M = F.getParent(); in lowerObjCCall()
121 static bool lowerIntrinsics(Module &M) { in lowerIntrinsics()
219 bool runOnModule(Module &M) override { return lowerIntrinsics(M); }
234 PreservedAnalyses PreISelIntrinsicLoweringPass::run(Module &M, in run()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/FuzzMutate/
H A DFuzzerCLI.cpp169 std::unique_ptr<Module> llvm::parseModule( in parseModule()
174 return std::make_unique<Module>("M", Context); in parseModule()
189 size_t llvm::writeModule(const Module &M, uint8_t *Dest, size_t MaxSize) { in writeModule()
201 std::unique_ptr<Module> llvm::parseAndVerify(const uint8_t *Data, size_t Size, in parseAndVerify()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
H A DModuleSymbolTable.cpp26 #include "llvm/IR/Module.h"
56 void ModuleSymbolTable::addModule(Module *M) { in addModule()
71 initializeRecordStreamer(const Module &M, in initializeRecordStreamer()
126 const Module &M, in CollectAsmSymbols()
163 const Module &M, function_ref<void(StringRef, StringRef)> AsmSymver) { in CollectAsmSymvers()
/third_party/mesa3d/src/gallium/frontends/clover/llvm/codegen/
H A Dcommon.cpp50 using ::llvm::Module;
109 get_reqd_work_group_size(const Module &mod, in get_reqd_work_group_size()
119 kernel_attributes(const Module &mod, const std::string &kernel_name) { in kernel_attributes()
152 make_kernel_args(const Module &mod, const std::string &kernel_name, in make_kernel_args()
291 clover::llvm::build_module_common(const Module &mod, in build_module_common()
/third_party/node/deps/v8/src/objects/
H A Dsource-text-module.h24 // The runtime representation of an ECMAScript Source Text Module Record.
27 : public TorqueGeneratedSourceTextModule<SourceTextModule, Module> {
76 SubclassBodyDescriptor<Module::BodyDescriptor,
83 friend class Module;
165 v8::Module::ResolveModuleCallback callback,
166 Module::DeprecatedResolveCallback callback_without_import_assertions);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
H A DIRSymtab.h72 struct Module { struct
75 /// The index of the first Uncommon for this Module.
142 Range<Module> Modules;
160 Error build(ArrayRef<Module *> Mods, SmallVector<char, 0> &Symtab,
234 ArrayRef<storage::Module> Modules;
353 const storage::Module &M = Modules[I]; in module_symbols()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DCallGraph.cpp1 //===- CallGraph.cpp - Build a Module's call graph ------------------------===//
15 #include "llvm/IR/Module.h"
31 CallGraph::CallGraph(Module &M) in CallGraph()
247 PreservedAnalyses CallGraphPrinterPass::run(Module &M, in run()
271 bool CallGraphWrapperPass::runOnModule(Module &M) { in runOnModule()
284 void CallGraphWrapperPass::print(raw_ostream &OS, const Module *) const { in print()
313 bool runOnModule(Module &M) override {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/
H A DGlobalValue.h39 class Module;
150 Module *Parent; // The containing module.
153 void setParent(Module *parent) {
472 /// BitcodeReader to load the Module.
475 /// If this function's Module is being lazily streamed in functions from disk
530 Module *getParent() { return Parent; }
531 const Module *getParent() const { return Parent; }
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.h221 void emitGlobals(const Module &M);
222 void emitHeader(Module &M, raw_ostream &O, const NVPTXSubtarget &STI);
240 bool doInitialization(Module &M) override;
241 bool doFinalization(Module &M) override;
267 void emitDeclarations(const Module &, raw_ostream &O);

Completed in 15 milliseconds

1...<<11121314151617181920>>...41