HomeSort by relevance Sort by last modified time
    Searched refs:SPIRVTypeInt (Results 1 - 6 of 6) sorted by null

  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVType.cpp 83 return static_cast<const SPIRVTypeInt *const>(this)->getBitWidth();
175 return isType<SPIRVTypeInt>(this, Bits);
SPIRVModule.h 64 class SPIRVTypeInt;
203 virtual SPIRVTypeInt *addIntegerType(unsigned) = 0;
223 virtual SPIRVValue *addIntegerConstant(SPIRVTypeInt *, uint64_t) = 0;
SPIRVType.h 39 /// SPIR-V type with op code name OpTypeInt is named as SPIRVTypeInt. This is
128 class SPIRVTypeInt:public SPIRVType {
132 SPIRVTypeInt(SPIRVModule *M, SPIRVId TheId, unsigned TheBitWidth,
139 SPIRVTypeInt():SPIRVType(OC), BitWidth(0), IsSigned(false){}
SPIRVModule.cpp 192 virtual SPIRVTypeInt *addIntegerType(unsigned BitWidth);
222 virtual SPIRVValue *addIntegerConstant(SPIRVTypeInt *, uint64_t);
357 std::map<unsigned, SPIRVTypeInt*> IntTypeMap;
680 SPIRVTypeInt *
685 auto Ty = new SPIRVTypeInt(this, getId(), BitWidth, false);
887 return addIntegerConstant(static_cast<SPIRVTypeInt*>(Ty), V);
892 SPIRVModuleImpl::addIntegerConstant(SPIRVTypeInt *Ty, uint64_t V) {
    [all...]
  /external/spirv-llvm/lib/SPIRV/
SPIRVUtil.cpp     [all...]
SPIRVReader.cpp     [all...]

Completed in 59 milliseconds