Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DVTEmitter.cpp39 int64_t OutputVTSize = OutputVT->getValueAsInt("Size"); in VTtoGetLLVMTyString() local
44 switch (OutputVTSize) { in VTtoGetLLVMTyString()
66 if ((isPowerOf2_64(OutputVTSize) && OutputVTSize >= 8 && in VTtoGetLLVMTyString()
67 OutputVTSize <= 128) || in VTtoGetLLVMTyString()
68 OutputVTSize == 1) in VTtoGetLLVMTyString()
69 OS << "Type::getInt" << OutputVTSize << "Ty(Context)"; in VTtoGetLLVMTyString()
71 OS << "Type::getIntNTy(Context, " << OutputVTSize << ")"; in VTtoGetLLVMTyString()