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

1 2

  /external/llvm/lib/Transforms/Utils/
ValueMapper.cpp 166 if (isa<ConstantAggregateZero>(C))
167 return VM[V] = ConstantAggregateZero::get(NewTy);
  /external/llvm/lib/IR/
Constants.cpp 57 if (const ConstantAggregateZero *CAZ = dyn_cast<ConstantAggregateZero>(this))
88 return isa<ConstantAggregateZero>(this) || isa<ConstantPointerNull>(this);
142 return ConstantAggregateZero::get(Ty);
196 if (const ConstantAggregateZero *CAZ =dyn_cast<ConstantAggregateZero>(this))
650 // ConstantAggregateZero Implementation
655 Constant *ConstantAggregateZero::getSequentialElement() const {
661 Constant *ConstantAggregateZero::getStructElement(unsigned Elt) const {
667 Constant *ConstantAggregateZero::getElementValue(Constant *C) const
    [all...]
LLVMContextImpl.h 264 DenseMap<Type*, ConstantAggregateZero*> CAZConstants;
  /external/llvm/include/llvm/IR/
Constants.h 296 /// ConstantAggregateZero - All zero aggregate value
298 class ConstantAggregateZero : public Constant {
300 ConstantAggregateZero(const ConstantAggregateZero &) LLVM_DELETED_FUNCTION;
302 explicit ConstantAggregateZero(Type *ty)
310 static ConstantAggregateZero *get(Type *Ty);
662 /// can return a ConstantAggregateZero object.
714 /// can return a ConstantAggregateZero object.
    [all...]
IRBuilder.h     [all...]
  /external/llvm/lib/Target/
TargetLoweringObjectFile.cpp 94 if (isa<ConstantAggregateZero>(C))
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 662 if (isa<ConstantAggregateZero>(Arg0) || isa<ConstantAggregateZero>(Arg1)) {
663 return ReplaceInstUsesWith(CI, ConstantAggregateZero::get(II->getType()));
    [all...]
InstructionCombining.cpp     [all...]
InstCombineAndOrXor.cpp     [all...]
InstCombineSelect.cpp     [all...]
InstCombineVectorOps.cpp 308 if (isa<ConstantAggregateZero>(V)) {
  /external/clang/lib/CodeGen/
CGDecl.cpp 674 if (isa<llvm::ConstantAggregateZero>(Init) ||
756 if (isa<llvm::ConstantAggregateZero>(Init)) return true;
    [all...]
CGExprConstant.cpp     [all...]
CGExprScalar.cpp     [all...]
  /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/Support/
PatternMatch.h 744 isa<ConstantAggregateZero>(LHS)) &&
  /external/llvm/include/llvm-c/
Core.h 1017 macro(ConstantAggregateZero) \
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 517 if (Init && isa<ConstantAggregateZero>(Init) && GEP->isInBounds())
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 264 if (isa<ConstantAggregateZero>(C) || isa<UndefValue>(C))
    [all...]
ValueTracking.cpp 253 isa<ConstantAggregateZero>(V)) {
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp     [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]

Completed in 777 milliseconds

1 2