123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- ///////////////////////////////////////////////////////////////////////////////
- // //
- // DxcTestUtils.h //
- // Copyright (C) Microsoft Corporation. All rights reserved. //
- // This file is distributed under the University of Illinois Open Source //
- // License. See LICENSE.TXT for details. //
- // //
- // This file provides utility functions for testing dxc APIs. //
- // //
- ///////////////////////////////////////////////////////////////////////////////
- #pragma once
- #include <string>
- #include <vector>
- #include "dxc/dxcapi.h"
- #include "dxc/Support/dxcapi.use.h"
- #include "llvm/ADT/ArrayRef.h"
- namespace hlsl {
- namespace options {
- class DxcOpts;
- class MainArgs;
- }
- }
- /// Use this class to run a FileCheck invocation in memory.
- class FileCheckForTest {
- public:
- FileCheckForTest();
- std::string CheckFilename;
- /// File to check (defaults to stdin)
- std::string InputFilename;
- /// Prefix to use from check file (defaults to 'CHECK')
- std::vector<std::string> CheckPrefixes;
- /// Do not treat all horizontal whitespace as equivalent
- bool NoCanonicalizeWhiteSpace;
- /// Add an implicit negative check with this pattern to every
- /// positive check. This can be used to ensure that no instances of
- /// this pattern occur which are not matched by a positive pattern
- std::vector<std::string> ImplicitCheckNot;
- /// Allow the input file to be empty. This is useful when making
- /// checks that some error message does not occur, for example.
- bool AllowEmptyInput;
- /// String to read in place of standard input.
- std::string InputForStdin;
- /// Output stream.
- std::string test_outs;
- /// Output stream.
- std::string test_errs;
- int Run();
- };
- class FileRunCommandPart {
- private:
- void RunFileChecker(const FileRunCommandPart *Prior);
- void RunStdErrChecker(const FileRunCommandPart *Prior);
- void RunDxc(const FileRunCommandPart *Prior);
- void RunDxv(const FileRunCommandPart *Prior);
- void RunOpt(const FileRunCommandPart *Prior);
- void RunD3DReflect(const FileRunCommandPart *Prior);
- void RunTee(const FileRunCommandPart *Prior);
- void RunXFail(const FileRunCommandPart *Prior);
- public:
- FileRunCommandPart(const FileRunCommandPart&) = default;
- FileRunCommandPart(const std::string &command, const std::string &arguments, LPCWSTR commandFileName);
- FileRunCommandPart(FileRunCommandPart && other);
-
- void Run(const FileRunCommandPart *Prior);
-
- void ReadOptsForDxc(hlsl::options::MainArgs &argStrings, hlsl::options::DxcOpts &Opts);
- std::string Command; // Command to run, eg %dxc
- std::string Arguments; // Arguments to command
- LPCWSTR CommandFileName; // File name replacement for %s
- dxc::DxcDllSupport *DllSupport; // DLL support to use for Run().
- // These fields are set after an invocation to Run().
- CComPtr<IDxcOperationResult> OpResult; // The operation result, if any.
- int RunResult; // The exit code for the operation.
- std::string StdOut; // Standard output text.
- std::string StdErr; // Standard error text.
- };
- void ParseCommandParts(LPCSTR commands, LPCWSTR fileName, std::vector<FileRunCommandPart> &parts);
- void ParseCommandPartsFromFile(LPCWSTR fileName, std::vector<FileRunCommandPart> &parts);
- class FileRunTestResult {
- public:
- std::string ErrorMessage;
- int RunResult;
- static FileRunTestResult RunFromFileCommands(LPCWSTR fileName);
- static FileRunTestResult RunFromFileCommands(LPCWSTR fileName, dxc::DxcDllSupport &dllSupport);
- };
- inline std::string BlobToUtf8(_In_ IDxcBlob *pBlob) {
- if (pBlob == nullptr)
- return std::string();
- return std::string((char *)pBlob->GetBufferPointer(), pBlob->GetBufferSize());
- }
- void AssembleToContainer(dxc::DxcDllSupport &dllSupport, IDxcBlob *pModule, IDxcBlob **pContainer);
- std::wstring BlobToUtf16(_In_ IDxcBlob *pBlob);
- void CheckOperationSucceeded(IDxcOperationResult *pResult, IDxcBlob **ppBlob);
- bool CheckOperationResultMsgs(IDxcOperationResult *pResult,
- llvm::ArrayRef<LPCSTR> pErrorMsgs,
- bool maySucceedAnyway, bool bRegex);
- bool CheckOperationResultMsgs(IDxcOperationResult *pResult,
- const LPCSTR *pErrorMsgs, size_t errorMsgCount,
- bool maySucceedAnyway, bool bRegex);
- bool CheckMsgs(const LPCSTR pText, size_t TextCount, const LPCSTR *pErrorMsgs,
- size_t errorMsgCount, bool bRegex);
- bool CheckNotMsgs(const LPCSTR pText, size_t TextCount, const LPCSTR *pErrorMsgs,
- size_t errorMsgCount, bool bRegex);
- void GetDxilPart(dxc::DxcDllSupport &dllSupport, IDxcBlob *pProgram, IDxcBlob **pDxilPart);
- std::string DisassembleProgram(dxc::DxcDllSupport &dllSupport, IDxcBlob *pProgram);
- void SplitPassList(LPWSTR pPassesBuffer, std::vector<LPCWSTR> &passes);
- void MultiByteStringToBlob(dxc::DxcDllSupport &dllSupport, const std::string &val, UINT32 codePoint, _Outptr_ IDxcBlob **ppBlob);
- void MultiByteStringToBlob(dxc::DxcDllSupport &dllSupport, const std::string &val, UINT32 codePoint, _Outptr_ IDxcBlobEncoding **ppBlob);
- void Utf8ToBlob(dxc::DxcDllSupport &dllSupport, const std::string &val, _Outptr_ IDxcBlob **ppBlob);
- void Utf8ToBlob(dxc::DxcDllSupport &dllSupport, const std::string &val, _Outptr_ IDxcBlobEncoding **ppBlob);
- void Utf8ToBlob(dxc::DxcDllSupport &dllSupport, const char *pVal, _Outptr_ IDxcBlobEncoding **ppBlob);
- void Utf16ToBlob(dxc::DxcDllSupport &dllSupport, const std::wstring &val, _Outptr_ IDxcBlob **ppBlob);
- void Utf16ToBlob(dxc::DxcDllSupport &dllSupport, const std::wstring &val, _Outptr_ IDxcBlobEncoding **ppBlob);
- void VerifyCompileOK(dxc::DxcDllSupport &dllSupport, LPCSTR pText,
- LPWSTR pTargetProfile, LPCWSTR pArgs,
- _Outptr_ IDxcBlob **ppResult);
- void VerifyCompileOK(dxc::DxcDllSupport &dllSupport, LPCSTR pText,
- LPWSTR pTargetProfile, std::vector<LPCWSTR> &args,
- _Outptr_ IDxcBlob **ppResult);
- class VersionSupportInfo {
- private:
- bool m_CompilerIsDebugBuild;
- public:
- bool m_InternalValidator;
- unsigned m_DxilMajor, m_DxilMinor;
- unsigned m_ValMajor, m_ValMinor;
- VersionSupportInfo();
- // Initialize version info structure. TODO: add device shader model support
- void Initialize(dxc::DxcDllSupport &dllSupport);
- // Return true if IR sensitive test should be skipped, and log comment
- bool SkipIRSensitiveTest();
- // Return true if test requiring DXIL of given version should be skipped, and log comment
- bool SkipDxilVersion(unsigned major, unsigned minor);
- // Return true if out-of-memory test should be skipped, and log comment
- bool SkipOutOfMemoryTest();
- };
|