Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/utils/TableGen/Basic/
H A DVTEmitter.cpp49 int64_t OutputVTSize = OutputVT->getValueAsInt("Size"); in vTtoGetLlvmTyString() local
54 switch (OutputVTSize) { in vTtoGetLlvmTyString()
76 if ((isPowerOf2_64(OutputVTSize) && OutputVTSize >= 8 && in vTtoGetLlvmTyString()
77 OutputVTSize <= 128) || in vTtoGetLlvmTyString()
78 OutputVTSize == 1) in vTtoGetLlvmTyString()
79 OS << "Type::getInt" << OutputVTSize << "Ty(Context)"; in vTtoGetLlvmTyString()
81 OS << "Type::getIntNTy(Context, " << OutputVTSize << ")"; in vTtoGetLlvmTyString()