Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DXCOFF.cpp113 SmallString<32> ParmsType; in parseParmsType() local
130 ParmsType += ", "; in parseParmsType()
133 ParmsType += "i"; in parseParmsType()
140 ParmsType += "f"; in parseParmsType()
143 ParmsType += "d"; in parseParmsType()
152 ParmsType += ", ..."; in parseParmsType()
159 return ParmsType; in parseParmsType()
191 SmallString<32> ParmsType; in parseParmsTypeWithVecInfo() local
201 ParmsType += ", "; in parseParmsTypeWithVecInfo()
205 ParmsType += "i"; in parseParmsTypeWithVecInfo()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DXCOFFObjectFile.h897 std::optional<SmallString<32>> ParmsType;
960 return ParmsType;
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DXCOFFDump.cpp272 PRINTOPTIONAL(ParmsType); in dumpTracebackTable()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCAsmPrinter.cpp2575 Expected<SmallString<32>> ParmsType = in emitTracebackTable() local
2583 assert(ParmsType && toString(ParmsType.takeError()).c_str()); in emitTracebackTable()
2584 if (ParmsType) { in emitTracebackTable()
2585 CommentOS << "Parameter type = " << ParmsType.get(); in emitTracebackTable()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DXCOFFObjectFile.cpp1531 ParmsType = ParmsTypeOrError.get(); in XCOFFTracebackTable()