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

/external/swiftshader/third_party/LLVM/lib/Target/CBackend/
H A DCBackend.cpp216 void printConstantArray(ConstantArray *CPA, bool Static);
560 void CWriter::printConstantArray(ConstantArray *CPA, bool Static) { argument
565 Type *ETy = CPA->getType()->getElementType();
566 bool isString = (ETy == Type::getInt8Ty(CPA->getContext()) ||
567 ETy == Type::getInt8Ty(CPA->getContext()));
570 if (isString && (CPA->getNumOperands() == 0 ||
571 !cast<Constant>(*(CPA->op_end()-1))->isNullValue()))
580 for (unsigned i = 0, e = CPA->getNumOperands()-1; i != e; ++i) {
581 unsigned char C = cast<ConstantInt>(CPA->getOperand(i))->getZExtValue();
617 if (CPA
[all...]

Completed in 172 milliseconds