HomeSort by relevance Sort by last modified time
    Searched refs:ConstantAggregateZero (Results 1 - 25 of 29) sorted by null

1 2

  /external/llvm/lib/Transforms/Utils/
ValueMapper.cpp 151 if (isa<ConstantAggregateZero>(C))
152 return VM[V] = ConstantAggregateZero::get(NewTy);
  /external/llvm/include/llvm/
Constants.h 301 /// ConstantAggregateZero - All zero aggregate value
303 class ConstantAggregateZero : public Constant {
305 ConstantAggregateZero(const ConstantAggregateZero &); // DO NOT IMPLEMENT
307 explicit ConstantAggregateZero(Type *ty)
315 static ConstantAggregateZero *get(Type *Ty);
337 static bool classof(const ConstantAggregateZero *) { return true; }
673 /// can return a ConstantAggregateZero object.
726 /// can return a ConstantAggregateZero object.
    [all...]
  /external/llvm/lib/VMCore/
Constants.cpp 64 return isa<ConstantAggregateZero>(this) || isa<ConstantPointerNull>(this);
117 return ConstantAggregateZero::get(Ty);
171 if (const ConstantAggregateZero *CAZ =dyn_cast<ConstantAggregateZero>(this))
598 // ConstantAggregateZero Implementation
603 Constant *ConstantAggregateZero::getSequentialElement() const {
609 Constant *ConstantAggregateZero::getStructElement(unsigned Elt) const {
615 Constant *ConstantAggregateZero::getElementValue(Constant *C) const {
623 Constant *ConstantAggregateZero::getElementValue(unsigned Idx) const {
689 // Empty arrays are canonicalized to ConstantAggregateZero
    [all...]
LLVMContextImpl.h 266 DenseMap<Type*, ConstantAggregateZero*> CAZConstants;
AsmWriter.cpp 815 if (isa<ConstantAggregateZero>(CV)) {
    [all...]
ConstantFold.cpp 140 if (isa<ConstantAggregateZero>(V))
    [all...]
Verifier.cpp     [all...]
  /external/llvm/lib/Target/
TargetLoweringObjectFile.cpp 94 if (isa<ConstantAggregateZero>(C))
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
InstCombineAndOrXor.cpp     [all...]
InstCombineVectorOps.cpp 299 if (isa<ConstantAggregateZero>(V)) {
  /external/clang/lib/CodeGen/
CGDecl.cpp 656 if (isa<llvm::ConstantAggregateZero>(Init) ||
736 if (isa<llvm::ConstantAggregateZero>(Init)) return true;
    [all...]
CGExprConstant.cpp     [all...]
CGExprScalar.cpp     [all...]
  /external/llvm/include/llvm/Support/
PatternMatch.h 663 isa<ConstantAggregateZero>(LHS)) &&
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 417 ConstantAggregateZero,
442 DEFINE_CASE(Val, ConstantAggregateZero);
    [all...]
llvm.ml 217 | ConstantAggregateZero
    [all...]
  /external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp     [all...]
  /external/llvm/include/llvm-c/
Core.h 1002 macro(ConstantAggregateZero) \
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 348 if (Init && isa<ConstantAggregateZero>(Init) && GEP->isInBounds())
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 283 if (isa<ConstantAggregateZero>(C) || isa<UndefValue>(C))
    [all...]
ValueTracking.cpp 253 isa<ConstantAggregateZero>(V)) {
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 698 } else if (isa<ConstantAggregateZero>(CV)) {
699 Out << "ConstantAggregateZero* " << constName
700 << " = ConstantAggregateZero::get(" << typeName << ");";
    [all...]

Completed in 704 milliseconds

1 2