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 174 if (isa<ConstantAggregateZero>(C))
175 return VM[V] = ConstantAggregateZero::get(NewTy);
  /external/llvm/lib/IR/
Constants.cpp 85 return isa<ConstantAggregateZero>(this) || isa<ConstantPointerNull>(this);
139 return ConstantAggregateZero::get(Ty);
193 if (const ConstantAggregateZero *CAZ =dyn_cast<ConstantAggregateZero>(this))
655 // ConstantAggregateZero Implementation
660 Constant *ConstantAggregateZero::getSequentialElement() const {
666 Constant *ConstantAggregateZero::getStructElement(unsigned Elt) const {
672 Constant *ConstantAggregateZero::getElementValue(Constant *C) const {
680 Constant *ConstantAggregateZero::getElementValue(unsigned Idx) const {
746 // Empty arrays are canonicalized to ConstantAggregateZero
    [all...]
LLVMContextImpl.h 264 DenseMap<Type*, ConstantAggregateZero*> CAZConstants;
  /external/llvm/include/llvm/IR/
Constants.h 295 /// ConstantAggregateZero - All zero aggregate value
297 class ConstantAggregateZero : public Constant {
299 ConstantAggregateZero(const ConstantAggregateZero &) LLVM_DELETED_FUNCTION;
301 explicit ConstantAggregateZero(Type *ty)
309 static ConstantAggregateZero *get(Type *Ty);
661 /// can return a ConstantAggregateZero object.
713 /// 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/
InstCombineVectorOps.cpp 383 if (isa<ConstantAggregateZero>(V)) {
657 if (isa<ConstantAggregateZero>(V)) {
658 return ConstantAggregateZero::get(
    [all...]
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...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 855 const ConstantAggregateZero *CAZ = dyn_cast<ConstantAggregateZero>(C);
    [all...]
  /external/clang/lib/CodeGen/
CGDecl.cpp 701 if (isa<llvm::ConstantAggregateZero>(Init) ||
783 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 757 isa<ConstantAggregateZero>(LHS)) &&
    [all...]
  /external/llvm/include/llvm-c/
Core.h 1064 macro(ConstantAggregateZero) \
    [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 519 if (Init && isa<ConstantAggregateZero>(Init) && GEP->isInBounds())
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 265 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 1084 milliseconds

1 2