1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766
|
//===-- llvm-spirv.cpp - The LLVM/SPIR-V translator utility -----*- C++ -*-===//
//
//
// The LLVM/SPIRV Translator
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal with the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimers.
// Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimers in the documentation
// and/or other materials provided with the distribution.
// Neither the names of Advanced Micro Devices, Inc., nor the names of its
// contributors may be used to endorse or promote products derived from this
// Software without specific prior written permission.
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH
// THE SOFTWARE.
//
//===----------------------------------------------------------------------===//
/// \file
///
/// Common Usage:
/// llvm-spirv - Read LLVM bitcode from stdin, write SPIR-V to stdout
/// llvm-spirv x.bc - Read LLVM bitcode from the x.bc file, write SPIR-V
/// to x.bil file
/// llvm-spirv -r - Read SPIR-V from stdin, write LLVM bitcode to stdout
/// llvm-spirv -r x.bil - Read SPIR-V from the x.bil file, write SPIR-V to
/// the x.bc file
///
/// Options:
/// --help - Output command line options
///
//===----------------------------------------------------------------------===//
#include "llvm/Bitcode/BitcodeReader.h"
#include "llvm/Bitcode/BitcodeWriter.h"
#include "llvm/IR/Constants.h"
#include "llvm/IR/LLVMContext.h"
#include "llvm/IR/Module.h"
#include "llvm/IR/Verifier.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/Error.h"
#include "llvm/Support/FileSystem.h"
#include "llvm/Support/MemoryBuffer.h"
#include "llvm/Support/PrettyStackTrace.h"
#include "llvm/Support/Signals.h"
#include "llvm/Support/ToolOutputFile.h"
#ifdef LLVM_SPIRV_HAVE_SPIRV_TOOLS
#include "spirv-tools/libspirv.hpp"
#endif
#ifndef _SPIRV_SUPPORT_TEXT_FMT
#define _SPIRV_SUPPORT_TEXT_FMT
#endif
#include "LLVMSPIRVLib.h"
#include <fstream>
#include <iostream>
#include <map>
#include <memory>
#include <set>
#include <string>
#define DEBUG_TYPE "spirv"
namespace kExt {
const char SpirvBinary[] = ".spv";
const char SpirvText[] = ".spt";
const char LLVMBinary[] = ".bc";
} // namespace kExt
using namespace llvm;
static cl::opt<std::string> InputFile(cl::Positional, cl::desc("<input file>"),
cl::init("-"));
static cl::opt<std::string> OutputFile("o",
cl::desc("Override output filename"),
cl::value_desc("filename"));
static cl::opt<bool>
IsReverse("r", cl::desc("Reverse translation (SPIR-V to LLVM)"));
static cl::opt<bool>
IsRegularization("s",
cl::desc("Regularize LLVM to be representable by SPIR-V"));
using SPIRV::VersionNumber;
static cl::opt<VersionNumber> MaxSPIRVVersion(
"spirv-max-version",
cl::desc("Choose maximum SPIR-V version which can be emitted"),
cl::values(clEnumValN(VersionNumber::SPIRV_1_0, "1.0", "SPIR-V 1.0"),
clEnumValN(VersionNumber::SPIRV_1_1, "1.1", "SPIR-V 1.1"),
clEnumValN(VersionNumber::SPIRV_1_2, "1.2", "SPIR-V 1.2"),
clEnumValN(VersionNumber::SPIRV_1_3, "1.3", "SPIR-V 1.3"),
clEnumValN(VersionNumber::SPIRV_1_4, "1.4", "SPIR-V 1.4")),
cl::init(VersionNumber::MaximumVersion));
static cl::list<std::string>
SPVExt("spirv-ext", cl::CommaSeparated,
cl::desc("Specify list of allowed/disallowed extensions"),
cl::value_desc("+SPV_extenstion1_name,-SPV_extension2_name"),
cl::ValueRequired);
static cl::list<std::string> SPIRVAllowUnknownIntrinsics(
"spirv-allow-unknown-intrinsics", cl::CommaSeparated,
cl::desc("Unknown intrinsics that begin with any prefix from the "
"comma-separated input list will be translated as external "
"function calls in SPIR-V.\nLeaving any prefix unspecified "
"(default) would naturally allow all unknown intrinsics"),
cl::value_desc("intrinsic_prefix_1,intrinsic_prefix_2"), cl::ValueOptional);
static cl::opt<bool> SPIRVGenKernelArgNameMD(
"spirv-gen-kernel-arg-name-md", cl::init(false),
cl::desc("Enable generating OpenCL kernel argument name "
"metadata"));
static cl::opt<SPIRV::BIsRepresentation> BIsRepresentation(
"spirv-target-env",
cl::desc("Specify a representation of different SPIR-V Instructions which "
"is used when translating from SPIR-V to LLVM IR"),
cl::values(
clEnumValN(SPIRV::BIsRepresentation::OpenCL12, "CL1.2", "OpenCL C 1.2"),
clEnumValN(SPIRV::BIsRepresentation::OpenCL20, "CL2.0", "OpenCL C 2.0"),
clEnumValN(SPIRV::BIsRepresentation::SPIRVFriendlyIR, "SPV-IR",
"SPIR-V Friendly IR")),
cl::init(SPIRV::BIsRepresentation::OpenCL12));
static cl::opt<bool>
PreserveOCLKernelArgTypeMetadataThroughString(
"preserve-ocl-kernel-arg-type-metadata-through-string", cl::init(false),
cl::desc("Preserve OpenCL kernel_arg_type and kernel_arg_type_qual "
"metadata through OpString"));
static cl::opt<bool>
SPIRVToolsDis("spirv-tools-dis", cl::init(false),
cl::desc("Emit textual assembly using SPIRV-Tools"));
static cl::opt<bool>
EmitOpaquePointers("emit-opaque-pointers", cl::init(false),
cl::desc("Emit opaque instead of typed LLVM pointers "
"for the translation from SPIR-V."),
cl::Hidden);
using SPIRV::ExtensionID;
#ifdef _SPIRV_SUPPORT_TEXT_FMT
namespace SPIRV {
// Use textual format for SPIRV.
extern bool SPIRVUseTextFormat;
} // namespace SPIRV
static cl::opt<bool>
ToText("to-text",
cl::desc("Convert input SPIR-V binary to internal textual format"));
static cl::opt<bool> ToBinary(
"to-binary",
cl::desc("Convert input SPIR-V in internal textual format to binary"));
#endif
static cl::opt<std::string> SpecConst(
"spec-const",
cl::desc("Translate SPIR-V to LLVM with constant specialization\n"
"All ids must be valid specialization constant ids for the input "
"SPIR-V module.\n"
"The list of valid ids is available via -spec-const-info option.\n"
"For duplicate ids the later one takes precedence.\n"
"Supported types are: i1, i8, i16, i32, i64, f16, f32, f64.\n"),
cl::value_desc("id1:type1:value1 id2:type2:value2 ..."));
static cl::opt<bool>
SPIRVMemToReg("spirv-mem2reg", cl::init(false),
cl::desc("LLVM/SPIR-V translation enable mem2reg"));
static cl::opt<bool> SpecConstInfo(
"spec-const-info",
cl::desc("Display id of constants available for specializaion and their "
"size in bytes"));
static cl::opt<SPIRV::FPContractMode> FPCMode(
"spirv-fp-contract", cl::desc("Set FP Contraction mode:"),
cl::init(SPIRV::FPContractMode::On),
cl::values(
clEnumValN(SPIRV::FPContractMode::On, "on",
"choose a mode according to presence of llvm.fmuladd "
"intrinsic or `contract' flag on fp operations"),
clEnumValN(SPIRV::FPContractMode::Off, "off",
"disable FP contraction for all entry points"),
clEnumValN(
SPIRV::FPContractMode::Fast, "fast",
"allow all operations to be contracted for all entry points")));
static cl::opt<bool> SPIRVAllowExtraDIExpressions(
"spirv-allow-extra-diexpressions", cl::init(false),
cl::desc("Allow DWARF operations not listed in the OpenCL.DebugInfo.100 "
"specification (experimental, may produce incompatible SPIR-V "
"module)"));
static cl::opt<SPIRV::DebugInfoEIS> DebugEIS(
"spirv-debug-info-version", cl::desc("Set SPIR-V debug info version:"),
cl::init(SPIRV::DebugInfoEIS::OpenCL_DebugInfo_100),
cl::values(
clEnumValN(SPIRV::DebugInfoEIS::SPIRV_Debug, "legacy",
"Emit debug info compliant with the SPIRV.debug extended "
"instruction set. This option is used for compatibility "
"with older versions of the translator"),
clEnumValN(SPIRV::DebugInfoEIS::OpenCL_DebugInfo_100, "ocl-100",
"Emit debug info compliant with the OpenCL.DebugInfo.100 "
"extended instruction set. This version of SPIR-V debug "
"info format is compatible with the SPIRV-Tools")));
static cl::opt<bool> SPIRVReplaceLLVMFmulAddWithOpenCLMad(
"spirv-replace-fmuladd-with-ocl-mad",
cl::desc("Allow replacement of llvm.fmuladd.* intrinsic with OpenCL mad "
"instruction from OpenCL extended instruction set"),
cl::init(true));
static std::string removeExt(const std::string &FileName) {
size_t Pos = FileName.find_last_of(".");
if (Pos != std::string::npos)
return FileName.substr(0, Pos);
return FileName;
}
static ExitOnError ExitOnErr;
#ifdef LLVM_SPIRV_HAVE_SPIRV_TOOLS
/// Stream buffer that captures written data into a vector and allows reading
/// the data back as an array of uint32_t's.
class StreambufToArray : public std::streambuf {
public:
const uint32_t *data() const {
return reinterpret_cast<const uint32_t *>(Buffer.data());
}
size_t size() const { return Buffer.size() / sizeof(uint32_t); }
protected:
std::streamsize xsputn(const char *s, std::streamsize count) override {
for (std::streamsize I = 0; I < count; I++) {
Buffer.push_back(s[I]);
}
return count;
}
private:
std::vector<char> Buffer;
};
#endif // LLVM_SPIRV_HAVE_SPIRV_TOOLS
static int convertLLVMToSPIRV(const SPIRV::TranslatorOpts &Opts) {
LLVMContext Context;
std::unique_ptr<MemoryBuffer> MB =
ExitOnErr(errorOrToExpected(MemoryBuffer::getFileOrSTDIN(InputFile)));
std::unique_ptr<Module> M =
ExitOnErr(getOwningLazyBitcodeModule(std::move(MB), Context,
/*ShouldLazyLoadMetadata=*/true));
ExitOnErr(M->materializeAll());
if (OutputFile.empty()) {
if (InputFile == "-")
OutputFile = "-";
else
OutputFile =
removeExt(InputFile) +
(SPIRV::SPIRVUseTextFormat ? kExt::SpirvText : kExt::SpirvBinary);
}
if (SPIRVToolsDis) {
#ifdef LLVM_SPIRV_HAVE_SPIRV_TOOLS
auto DisMessagePrinter = [](spv_message_level_t Level, const char *source,
const spv_position_t &position,
const char *message) -> void {
errs() << source << ": " << message << "\n";
};
spvtools::SpirvTools SpvTool(SPV_ENV_OPENCL_2_0);
SpvTool.SetMessageConsumer(DisMessagePrinter);
std::string DisOutput;
// Serialize the SPIR-V module to a uint32_t array and then invoke the
// SPIR-V tools disassembler to obtain textual assembly.
std::string Err;
StreambufToArray OutStreamBuf;
std::ostream OutStream(&OutStreamBuf);
bool Success = writeSpirv(M.get(), Opts, OutStream, Err);
if (!Success) {
errs() << "Failed to translate SPIR-V: " << Err << '\n';
return -1;
}
if (!SpvTool.Disassemble(OutStreamBuf.data(), OutStreamBuf.size(),
&DisOutput)) {
errs() << "Failed to generate textual assembly\n";
return -1;
}
if (OutputFile != "-") {
std::ofstream OutFile(OutputFile, std::ios::binary);
OutFile << DisOutput;
} else {
std::cout << DisOutput;
}
return 0;
#else
errs() << "llvm-spirv was built without --spirv-tools-dis support\n";
return -1;
#endif // LLVM_SPIRV_HAVE_SPIRV_TOOLS
}
std::string Err;
bool Success = false;
if (OutputFile != "-") {
std::ofstream OutFile(OutputFile, std::ios::binary);
Success = writeSpirv(M.get(), Opts, OutFile, Err);
} else {
Success = writeSpirv(M.get(), Opts, std::cout, Err);
}
if (!Success) {
errs() << "Fails to save LLVM as SPIR-V: " << Err << '\n';
return -1;
}
return 0;
}
static bool isFileEmpty(const std::string &FileName) {
std::ifstream File(FileName);
return File && File.peek() == EOF;
}
static int convertSPIRVToLLVM(const SPIRV::TranslatorOpts &Opts) {
LLVMContext Context;
Context.setOpaquePointers(EmitOpaquePointers);
std::ifstream IFS(InputFile, std::ios::binary);
Module *M;
std::string Err;
if (!readSpirv(Context, Opts, IFS, M, Err)) {
errs() << "Fails to load SPIR-V as LLVM Module: " << Err << '\n';
return -1;
}
LLVM_DEBUG(dbgs() << "Converted LLVM module:\n" << *M);
raw_string_ostream ErrorOS(Err);
if (verifyModule(*M, &ErrorOS)) {
errs() << "Fails to verify module: " << ErrorOS.str();
return -1;
}
if (OutputFile.empty()) {
if (InputFile == "-")
OutputFile = "-";
else
OutputFile = removeExt(InputFile) + kExt::LLVMBinary;
}
std::error_code EC;
ToolOutputFile Out(OutputFile.c_str(), EC, sys::fs::OF_None);
if (EC) {
errs() << "Fails to open output file: " << EC.message();
return -1;
}
WriteBitcodeToFile(*M, Out.os());
Out.keep();
delete M;
return 0;
}
#ifdef _SPIRV_SUPPORT_TEXT_FMT
static int convertSPIRV() {
if (ToBinary == ToText) {
errs() << "Invalid arguments\n";
return -1;
}
std::ifstream IFS(InputFile, std::ios::binary);
if (OutputFile.empty()) {
if (InputFile == "-")
OutputFile = "-";
else {
OutputFile = removeExt(InputFile) +
(ToBinary ? kExt::SpirvBinary : kExt::SpirvText);
}
}
auto Action = [&](std::ostream &OFS) {
std::string Err;
if (!SPIRV::convertSpirv(IFS, OFS, Err, ToBinary, ToText)) {
errs() << "Fails to convert SPIR-V : " << Err << '\n';
return -1;
}
return 0;
};
if (OutputFile == "-")
return Action(std::cout);
// Open the output file in binary mode in case we convert text to SPIRV binary
if (ToBinary) {
std::ofstream OFS(OutputFile, std::ios::binary);
return Action(OFS);
}
// Convert SPIRV binary to text
std::ofstream OFS(OutputFile);
return Action(OFS);
}
#endif
static int regularizeLLVM(SPIRV::TranslatorOpts &Opts) {
LLVMContext Context;
std::unique_ptr<MemoryBuffer> MB =
ExitOnErr(errorOrToExpected(MemoryBuffer::getFileOrSTDIN(InputFile)));
std::unique_ptr<Module> M =
ExitOnErr(getOwningLazyBitcodeModule(std::move(MB), Context,
/*ShouldLazyLoadMetadata=*/true));
ExitOnErr(M->materializeAll());
if (OutputFile.empty()) {
if (InputFile == "-")
OutputFile = "-";
else
OutputFile = removeExt(InputFile) + ".regularized.bc";
}
std::string Err;
if (!regularizeLlvmForSpirv(M.get(), Err, Opts)) {
errs() << "Fails to save LLVM as SPIR-V: " << Err << '\n';
return -1;
}
std::error_code EC;
ToolOutputFile Out(OutputFile.c_str(), EC, sys::fs::OF_None);
if (EC) {
errs() << "Fails to open output file: " << EC.message();
return -1;
}
WriteBitcodeToFile(*M.get(), Out.os());
Out.keep();
return 0;
}
static int parseSPVExtOption(
SPIRV::TranslatorOpts::ExtensionsStatusMap &ExtensionsStatus) {
// Map name -> id for known extensions
std::map<std::string, ExtensionID> ExtensionNamesMap;
#define _STRINGIFY(X) #X
#define STRINGIFY(X) _STRINGIFY(X)
#define EXT(X) ExtensionNamesMap[STRINGIFY(X)] = ExtensionID::X;
#include "LLVMSPIRVExtensions.inc"
#undef EXT
#undef STRINGIFY
#undef _STRINGIFY
// Set the initial state:
// - during SPIR-V consumption, assume that any known extension is allowed.
// - during SPIR-V generation, assume that any known extension is disallowed.
// - during conversion to/from SPIR-V text representation, assume that any
// known extension is allowed.
for (const auto &It : ExtensionNamesMap)
ExtensionsStatus[It.second] = IsReverse;
if (SPVExt.empty())
return 0; // Nothing to do
for (unsigned i = 0; i < SPVExt.size(); ++i) {
const std::string &ExtString = SPVExt[i];
if (ExtString.empty() ||
('+' != ExtString.front() && '-' != ExtString.front())) {
errs() << "Invalid value of --spirv-ext, expected format is:\n"
<< "\t--spirv-ext=+EXT_NAME,-EXT_NAME\n";
return -1;
}
auto ExtName = ExtString.substr(1);
if (ExtName.empty()) {
errs() << "Invalid value of --spirv-ext, expected format is:\n"
<< "\t--spirv-ext=+EXT_NAME,-EXT_NAME\n";
return -1;
}
bool ExtStatus = ('+' == ExtString.front());
if ("all" == ExtName) {
// Update status for all known extensions
for (const auto &It : ExtensionNamesMap)
ExtensionsStatus[It.second] = ExtStatus;
} else {
// Reject unknown extensions
const auto &It = ExtensionNamesMap.find(ExtName);
if (ExtensionNamesMap.end() == It) {
errs() << "Unknown extension '" << ExtName << "' was specified via "
<< "--spirv-ext option\n";
return -1;
}
ExtensionsStatus[It->second] = ExtStatus;
}
}
return 0;
}
// Returns true on error.
bool parseSpecConstOpt(llvm::StringRef SpecConstStr,
SPIRV::TranslatorOpts &Opts) {
std::ifstream IFS(InputFile, std::ios::binary);
std::vector<SpecConstInfoTy> SpecConstInfo;
if (!getSpecConstInfo(IFS, SpecConstInfo))
return true;
SmallVector<StringRef, 8> Split;
SpecConstStr.split(Split, ' ', -1, false);
for (StringRef Option : Split) {
SmallVector<StringRef, 4> Params;
Option.split(Params, ':', 2);
if (Params.size() < 3) {
errs() << "Error: Invalid format of -" << SpecConst.ArgStr
<< " option: \"" << Option << "\". Expected format: -"
<< SpecConst.ArgStr << " \"<" << SpecConst.ValueStr << ">\"\n";
return true;
}
uint32_t SpecId;
if (Params[0].getAsInteger(10, SpecId)) {
errs() << "Error: Invalid id for '-" << SpecConst.ArgStr
<< "' option! In \"" << Option << "\": \"" << Params[0]
<< "\" must be a 32-bit unsigned integer\n";
return true;
}
auto It = std::find_if(
SpecConstInfo.begin(), SpecConstInfo.end(),
[=](SpecConstInfoTy Info) { return Info.first == SpecId; });
if (It == SpecConstInfo.end()) {
errs() << "Error: CL_INVALID_SPEC_ID. \"" << Option << "\": There is no "
<< "specialization constant with id = " << SpecId
<< " in the SPIR-V module.";
return true;
}
if (Params[1].consume_front("i")) {
unsigned Width = 0;
Params[1].getAsInteger(10, Width);
if (!isPowerOf2_32(Width) || Width > 64) {
errs() << "Error: Invalid type for '-" << SpecConst.ArgStr
<< "' option! In \"" << Option << "\": \"i" << Params[1]
<< "\" - is not allowed type. "
<< "Allowed types are: i1, i8, i16, i32, i64, f16, f32, f64\n";
return true;
}
size_t Size = Width < 8 ? 1 : Width / 8;
if (Size != It->second) {
errs() << "Error: CL_INVALID_VALUE. In \"" << Option << "\": Size of "
<< "type i" << Width << " (" << Size << " bytes) "
<< "does not match the size of the specialization constant "
<< "in the module (" << It->second << " bytes)\n";
return true;
}
APInt Value;
bool Err = Params[2].getAsInteger(10, Value);
if (Err || Value.getNumWords() > 1 ||
(Width < 64 && Value.getZExtValue() >> Width)) {
errs() << "Error: Invalid value for '-" << SpecConst.ArgStr
<< "' option! In \"" << Option << "\": can't convert \""
<< Params[2] << "\" to " << Width << "-bit integer number\n";
return true;
}
Opts.setSpecConst(SpecId, Value.getZExtValue());
} else if (Params[1].consume_front("f")) {
unsigned Width = 0;
Params[1].getAsInteger(10, Width);
const llvm::fltSemantics *FS = nullptr;
switch (Width) {
case 16:
FS = &APFloat::IEEEhalf();
break;
case 32:
FS = &APFloat::IEEEsingle();
break;
case 64:
FS = &APFloat::IEEEdouble();
break;
default:
errs() << "Error: Invalid type for '-" << SpecConst.ArgStr
<< "' option! In \"" << Option << "\": \"f" << Params[1]
<< "\" - is not allowed type. "
<< "Allowed types are: i1, i8, i16, i32, i64, f16, f32, f64\n";
return true;
}
APFloat Value(*FS);
Expected<APFloat::opStatus> StatusOrErr =
Value.convertFromString(Params[2], APFloat::rmNearestTiesToEven);
if (!StatusOrErr) {
return true;
}
// It's ok to have inexact conversion from decimal representation.
APFloat::opStatus Status = *StatusOrErr;
if (Status & ~APFloat::opInexact) {
errs() << "Error: Invalid value for '-" << SpecConst.ArgStr
<< "' option! In \"" << Option << "\": can't convert \""
<< Params[2] << "\" to " << Width
<< "-bit floating point number\n";
return true;
}
Opts.setSpecConst(SpecId, Value.bitcastToAPInt().getZExtValue());
} else {
errs() << "Error: Invalid type for '-" << SpecConst.ArgStr
<< "' option! In \"" << Option << "\": \"" << Params[1]
<< "\" - is not allowed type. "
<< "Allowed types are: i1, i8, i16, i32, i64, f16, f32, f64\n";
return true;
}
}
return false;
}
static void parseAllowUnknownIntrinsicsOpt(SPIRV::TranslatorOpts &Opts) {
SPIRV::TranslatorOpts::ArgList PrefixList;
for (const auto &Prefix : SPIRVAllowUnknownIntrinsics) {
PrefixList.push_back(Prefix);
}
Opts.setSPIRVAllowUnknownIntrinsics(PrefixList);
}
int main(int Ac, char **Av) {
EnablePrettyStackTrace();
sys::PrintStackTraceOnErrorSignal(Av[0]);
PrettyStackTraceProgram X(Ac, Av);
cl::ParseCommandLineOptions(Ac, Av, "LLVM/SPIR-V translator");
if (InputFile != "-" && isFileEmpty(InputFile)) {
errs() << "Can't translate, file is empty\n";
return -1;
}
SPIRV::TranslatorOpts::ExtensionsStatusMap ExtensionsStatus;
// ExtensionsStatus will be properly initialized and update according to
// values passed via --spirv-ext option in parseSPVExtOption function.
int Ret = parseSPVExtOption(ExtensionsStatus);
if (0 != Ret)
return Ret;
SPIRV::TranslatorOpts Opts(MaxSPIRVVersion, ExtensionsStatus);
if (BIsRepresentation.getNumOccurrences() != 0) {
if (!IsReverse) {
errs() << "Note: --spirv-ocl-builtins-version option ignored as it only "
"affects translation from SPIR-V to LLVM IR";
} else {
Opts.setDesiredBIsRepresentation(BIsRepresentation);
}
}
Opts.setFPContractMode(FPCMode);
if (SPIRVMemToReg)
Opts.setMemToRegEnabled(SPIRVMemToReg);
if (SPIRVGenKernelArgNameMD)
Opts.setGenKernelArgNameMDEnabled(SPIRVGenKernelArgNameMD);
if (IsReverse && !SpecConst.empty()) {
if (parseSpecConstOpt(SpecConst, Opts))
return -1;
}
if (SPIRVAllowUnknownIntrinsics.getNumOccurrences() != 0) {
if (IsReverse) {
errs()
<< "Note: --spirv-allow-unknown-intrinsics option ignored as it only "
"affects translation from LLVM IR to SPIR-V";
} else {
parseAllowUnknownIntrinsicsOpt(Opts);
}
}
if (SPIRVReplaceLLVMFmulAddWithOpenCLMad.getNumOccurrences() != 0) {
if (IsReverse) {
errs() << "Note: --spirv-replace-fmuladd-with-ocl-mad option ignored as "
"it only affects translation from LLVM IR to SPIR-V";
} else {
Opts.setReplaceLLVMFmulAddWithOpenCLMad(
SPIRVReplaceLLVMFmulAddWithOpenCLMad);
}
}
if (SPIRVAllowExtraDIExpressions.getNumOccurrences() != 0) {
Opts.setAllowExtraDIExpressionsEnabled(SPIRVAllowExtraDIExpressions);
}
if (DebugEIS.getNumOccurrences() != 0) {
if (IsReverse) {
errs() << "Note: --spirv-debug-info-version option ignored as it only "
"affects translation from LLVM IR to SPIR-V";
} else {
Opts.setDebugInfoEIS(DebugEIS);
}
}
if (PreserveOCLKernelArgTypeMetadataThroughString.getNumOccurrences() != 0)
Opts.setPreserveOCLKernelArgTypeMetadataThroughString(true);
#ifdef _SPIRV_SUPPORT_TEXT_FMT
if (ToText && (ToBinary || IsReverse || IsRegularization)) {
errs() << "Cannot use -to-text with -to-binary, -r, -s\n";
return -1;
}
if (ToBinary && (ToText || IsReverse || IsRegularization)) {
errs() << "Cannot use -to-binary with -to-text, -r, -s\n";
return -1;
}
if (ToBinary || ToText)
return convertSPIRV();
#endif
if (!IsReverse && !IsRegularization && !SpecConstInfo)
return convertLLVMToSPIRV(Opts);
if (IsReverse && IsRegularization) {
errs() << "Cannot have both -r and -s options\n";
return -1;
}
if (IsReverse)
return convertSPIRVToLLVM(Opts);
if (IsRegularization)
return regularizeLLVM(Opts);
if (SpecConstInfo) {
std::ifstream IFS(InputFile, std::ios::binary);
std::vector<SpecConstInfoTy> SpecConstInfo;
if (!getSpecConstInfo(IFS, SpecConstInfo)) {
std::cout << "Invalid SPIR-V binary";
return -1;
}
std::cout << "Number of scalar specialization constants in the module = "
<< SpecConstInfo.size() << "\n";
for (auto &SpecConst : SpecConstInfo)
std::cout << "Spec const id = " << SpecConst.first
<< ", size in bytes = " << SpecConst.second << "\n";
}
return 0;
}
|