Searched refs:ConstantAggregateZero (Results 1 - 25 of 37) sorted by relevance

12

/external/llvm/lib/Transforms/Utils/
H A DCtorUtils.cpp110 if (isa<ConstantAggregateZero>(GV->getInitializer()))
115 if (isa<ConstantAggregateZero>(*i))
H A DValueMapper.cpp174 if (isa<ConstantAggregateZero>(C))
175 return VM[V] = ConstantAggregateZero::get(NewTy);
/external/llvm/lib/IR/
H A DConstants.cpp85 return isa<ConstantAggregateZero>(this) || isa<ConstantPointerNull>(this);
161 return ConstantAggregateZero::get(Ty);
215 if (const ConstantAggregateZero *CAZ =dyn_cast<ConstantAggregateZero>(this))
693 // ConstantAggregateZero Implementation
698 Constant *ConstantAggregateZero::getSequentialElement() const {
704 Constant *ConstantAggregateZero::getStructElement(unsigned Elt) const {
710 Constant *ConstantAggregateZero::getElementValue(Constant *C) const {
718 Constant *ConstantAggregateZero::getElementValue(unsigned Idx) const {
784 // Empty arrays are canonicalized to ConstantAggregateZero
[all...]
H A DLLVMContextImpl.h273 DenseMap<Type*, ConstantAggregateZero*> CAZConstants;
H A DAutoUpgrade.cpp199 if (!OldInit && !isa<ConstantAggregateZero>(OldInitC))
/external/llvm/include/llvm/IR/
H A DConstants.h295 /// ConstantAggregateZero - All zero aggregate value
297 class ConstantAggregateZero : public Constant { class in namespace:llvm
299 ConstantAggregateZero(const ConstantAggregateZero &) LLVM_DELETED_FUNCTION;
301 explicit ConstantAggregateZero(Type *ty) function in class:llvm::ConstantAggregateZero
309 static ConstantAggregateZero *get(Type *Ty);
661 /// can return a ConstantAggregateZero object.
713 /// can return a ConstantAggregateZero object.
H A DPatternMatch.h847 isa<ConstantAggregateZero>(LHS)) &&
H A DIRBuilder.h1469 Value *Zeros = ConstantAggregateZero::get(VectorType::get(I32Ty, NumElts));
/external/llvm/lib/Target/
H A DTargetLoweringObjectFile.cpp97 if (isa<ConstantAggregateZero>(C))
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp618 CI, ConstantAggregateZero::get(Vec->getType()));
794 } else if (isa<ConstantAggregateZero>(V)) {
909 if (isa<ConstantAggregateZero>(Arg0) || isa<ConstantAggregateZero>(Arg1)) {
910 return ReplaceInstUsesWith(CI, ConstantAggregateZero::get(II->getType()));
H A DInstCombineVectorOps.cpp426 if (isa<ConstantAggregateZero>(V)) {
752 if (isa<ConstantAggregateZero>(V)) {
753 return ConstantAggregateZero::get(
H A DInstructionCombining.cpp2260 if (isa<ConstantAggregateZero>(FilterClause)) {
2408 if (isa<ConstantAggregateZero>(LFilter)) { // LFilter only contains zeros.
2411 if (isa<ConstantAggregateZero>(Filter)) {
2421 if (isa<ConstantAggregateZero>(Filter)) { // Filter only contains zeros.
H A DInstCombineAndOrXor.cpp1045 if (isa<ConstantAggregateZero>(LHS->getOperand(1)) &&
1046 isa<ConstantAggregateZero>(RHS->getOperand(1)))
1841 if (isa<ConstantAggregateZero>(LHS->getOperand(1)) &&
1842 isa<ConstantAggregateZero>(RHS->getOperand(1)))
H A DInstCombineSelect.cpp1093 if (isa<ConstantAggregateZero>(CondVal)) {
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp904 const ConstantAggregateZero *CAZ = dyn_cast<ConstantAggregateZero>(C);
1181 if (isa<ConstantAggregateZero>(Init)) {
/external/clang/lib/CodeGen/
H A DCGDecl.cpp709 if (isa<llvm::ConstantAggregateZero>(Init) ||
791 if (isa<llvm::ConstantAggregateZero>(Init)) return true;
H A DCGExprConstant.cpp1459 return llvm::ConstantAggregateZero::get(ATy);
H A DCGExprScalar.cpp2888 Value *Zero = llvm::ConstantAggregateZero::get(LHS->getType());
2966 Value *Zero = llvm::ConstantAggregateZero::get(LHS->getType());
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c480 ConstantAggregateZero, enumerator in enum:ValueKind
507 DEFINE_CASE(Val, ConstantAggregateZero);
H A Dllvm.ml262 | ConstantAggregateZero Constructor in type:ValueKind/t
/external/llvm/examples/ExceptionDemo/
H A DExceptionDemo.cpp1032 llvm::ConstantAggregateZero::get(
/external/llvm/include/llvm-c/
H A DCore.h1160 macro(ConstantAggregateZero) \
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp278 if (isa<ConstantAggregateZero>(C) || isa<UndefValue>(C))
/external/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp903 if (isa<ConstantAggregateZero>(OP))
/external/lldb/source/Expression/
H A DIRForTarget.cpp1419 else if (isa<ConstantAggregateZero>(initializer))

Completed in 396 milliseconds

12