Home
last modified time | relevance | path

Searched refs:DeviceParser (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Interpreter/
H A DInterpreter.cpp424 if (DeviceParser) in ~Interpreter()
425 DeviceParser.reset(); in ~Interpreter()
516 auto DeviceParser = std::make_unique<IncrementalCUDADeviceParser>( in createWithCUDA() local
523 Interp->DeviceParser = std::move(DeviceParser); in createWithCUDA()
588 if (DeviceParser) { in Parse()
589 llvm::Expected<TranslationUnitDecl *> DeviceTU = DeviceParser->Parse(Code); in Parse()
595 llvm::Expected<llvm::StringRef> PTX = DeviceParser->GeneratePTX(); in Parse()
599 llvm::Error Err = DeviceParser->GenerateFatbinary(); in Parse()
/freebsd/contrib/llvm-project/clang/include/clang/Interpreter/
H A DInterpreter.h98 std::unique_ptr<IncrementalCUDADeviceParser> DeviceParser; variable