Searched defs:ABIArgInfo (Results 1 - 1 of 1) sorted by relevance

/external/clang/lib/CodeGen/
H A DABIInfo.h36 /// ABIArgInfo - Helper class to encapsulate information about how a
38 class ABIArgInfo { class in namespace:clang
78 ABIArgInfo(Kind K, llvm::Type *TD=0, unsigned UI=0, function in class:clang::ABIArgInfo
84 ABIArgInfo() : TheKind(Direct), TypeData(0), UIntData(0) {} function in class:clang::ABIArgInfo
86 static ABIArgInfo getDirect(llvm::Type *T = 0, unsigned Offset = 0,
88 return ABIArgInfo(Direct, T, Offset, false, false, Padding);
90 static ABIArgInfo getExtend(llvm::Type *T = 0) {
91 return ABIArgInfo(Extend, T, 0);
93 static ABIArgInfo getIgnore() {
94 return ABIArgInfo(Ignor
[all...]

Completed in 61 milliseconds