Searched refs:ElementTy (Results 1 - 10 of 10) sorted by relevance

/external/clang/lib/AST/
H A DMicrosoftMangle.cpp1336 void MicrosoftCXXNameMangler::mangleExtraDimensions(QualType ElementTy) { argument
1340 getASTContext().getAsConstantArrayType(ElementTy)) {
1342 ElementTy = CAT->getElementType();
1343 } else if (ElementTy->isVariableArrayType()) {
1345 getASTContext().getAsVariableArrayType(ElementTy);
1352 } else if (ElementTy->isDependentSizedArrayType()) {
1355 getASTContext().getAsDependentSizedArrayType(ElementTy);
1362 } else if (ElementTy->isIncompleteArrayType()) continue;
1365 mangleQualifiers(ElementTy.getQualifiers(), false);
1375 mangleType(ElementTy
[all...]
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c342 CAMLprim LLVMTypeRef llvm_array_type(LLVMTypeRef ElementTy, value Count) { argument
343 return LLVMArrayType(ElementTy, Int_val(Count));
347 CAMLprim LLVMTypeRef llvm_pointer_type(LLVMTypeRef ElementTy) { argument
348 return LLVMPointerType(ElementTy, 0);
352 CAMLprim LLVMTypeRef llvm_qualified_pointer_type(LLVMTypeRef ElementTy, argument
354 return LLVMPointerType(ElementTy, Int_val(AddressSpace));
358 CAMLprim LLVMTypeRef llvm_vector_type(LLVMTypeRef ElementTy, value Count) { argument
359 return LLVMVectorType(ElementTy, Int_val(Count));
662 CAMLprim LLVMValueRef llvm_const_array(LLVMTypeRef ElementTy, argument
664 return LLVMConstArray(ElementTy, (LLVMValueRe
[all...]
/external/clang/lib/CodeGen/
H A DCGExprConstant.cpp1277 QualType ElementTy = CAT->getElementType(); local
1278 uint64_t ElementSize = CGM.getContext().getTypeSize(ElementTy);
1281 FillInNullDataMemberPointers(CGM, ElementTy, Elements,
1472 QualType ElementTy = CAT->getElementType(); local
1474 llvm::Constant *Element = EmitNullConstant(ElementTy);
H A DCGDebugInfo.cpp1457 llvm::DIType ElementTy = getOrCreateType(Ty->getElementType(), Unit); local
1474 DBuilder.createVectorType(Size, Align, ElementTy, SubscriptArray);
/external/clang/lib/StaticAnalyzer/Core/
H A DRegionStore.cpp1633 QualType ElementTy = AT->getElementType(); local
1657 return setImplicitDefaultValue(store, R, ElementTy);
1670 const ElementRegion *ER = MRMgr.getElementRegion(ElementTy, Idx, R, Ctx);
1672 if (ElementTy->isStructureOrClassType())
1674 else if (ElementTy->isArrayType())
1683 newStore = setImplicitDefaultValue(newStore.getStore(), R, ElementTy);
/external/llvm/lib/Target/X86/
H A DX86FastISel.cpp1618 Type *ElementTy = Ty->getElementType(); local
1619 unsigned FrameSize = TD.getTypeAllocSize(ElementTy);
1622 FrameAlign = TLI.getByValTypeAlignment(ElementTy);
/external/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp639 Type *ElementTy = Ty->getElementType(); local
640 return getTargetData()->getTypeAllocSize(ElementTy);
/external/llvm/include/llvm-c/
H A DCore.h1434 LLVMValueRef LLVMConstArray(LLVMTypeRef ElementTy,
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp6467 Type *ElementTy = Ty->getElementType(); local
6468 Flags.setByValSize(getTargetData()->getTypeAllocSize(ElementTy));
6475 FrameAlign = getByValTypeAlignment(ElementTy);
6691 Type *ElementTy = Ty->getElementType(); local
6692 Flags.setByValSize(TD->getTypeAllocSize(ElementTy));
6699 FrameAlign = TLI.getByValTypeAlignment(ElementTy);
/external/llvm/lib/VMCore/
H A DCore.cpp671 LLVMValueRef LLVMConstArray(LLVMTypeRef ElementTy, argument
674 return wrap(ConstantArray::get(ArrayType::get(unwrap(ElementTy), Length), V));

Completed in 971 milliseconds