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

1 2

  /external/llvm/lib/Transforms/Utils/
ModuleUtils.cpp 29 Constant *RuntimeCtorInit = ConstantStruct::get(
ValueMapper.cpp 159 if (isa<ConstantStruct>(C))
160 return VM[V] = ConstantStruct::get(cast<StructType>(NewTy), Ops);
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCAPElim.cpp 159 Function *F = dyn_cast<Function>(cast<ConstantStruct>(Op)->getOperand(1));
  /external/llvm/include/llvm/IR/
Constants.h 377 // ConstantStruct - Constant Struct Declarations
379 class ConstantStruct : public Constant {
380 friend struct ConstantArrayCreator<ConstantStruct, StructType>;
381 ConstantStruct(const ConstantStruct &) LLVM_DELETED_FUNCTION;
383 ConstantStruct(StructType *T, ArrayRef<Constant *> Val);
385 // ConstantStruct accessors
428 struct OperandTraits<ConstantStruct> :
429 public VariadicOperandTraits<ConstantStruct> {
432 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ConstantStruct, Constant
    [all...]
  /external/llvm/tools/bugpoint/
ExtractFunction.cpp 217 ArrayElts.push_back(ConstantStruct::get(STy, Elts));
239 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
  /external/clang/lib/CodeGen/
CGExprConstant.cpp 561 llvm::ConstantStruct::getTypeForElements(CGM.getLLVMContext(),
569 llvm::Constant *Result = llvm::ConstantStruct::get(STy, Elements);
683 return llvm::ConstantStruct::get(STy, Elts);
812 return llvm::ConstantStruct::get(SType, Elts);
    [all...]
CGObjCMac.cpp     [all...]
CGObjCGNU.cpp 199 llvm::Constant *C = llvm::ConstantStruct::get(Ty, V);
    [all...]
CGExprComplex.cpp 114 llvm::ConstantStruct *pair =
115 cast<llvm::ConstantStruct>(result.getValue());
ItaniumCXXABI.cpp 488 return llvm::ConstantStruct::getAnon(Values);
560 return llvm::ConstantStruct::getAnon(MemPtr);
    [all...]
CGDecl.cpp 684 if (isa<llvm::ConstantArray>(Init) || isa<llvm::ConstantStruct>(Init)) {
735 assert((isa<llvm::ConstantStruct>(Init) || isa<llvm::ConstantArray>(Init)) &&
    [all...]
  /external/llvm/lib/CodeGen/
ShadowStackGC.cpp 225 ConstantStruct::get(FrameMapTy, BaseElts),
232 Constant *FrameMap = ConstantStruct::get(STy, DescriptorElts);
  /external/llvm/lib/Transforms/Instrumentation/
ProfilingUtils.cpp 166 dtors.push_back(ConstantStruct::get(GlobalDtorElemTy, Elem));
PathProfiling.cpp     [all...]
AddressSanitizer.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
GlobalMerge.cpp 176 Constant *MergedInit = ConstantStruct::get(MergedTy, Inits);
  /external/llvm/tools/lto/
LTOModule.cpp 342 const ConstantStruct *c = dyn_cast<ConstantStruct>(clgv->getInitializer());
379 const ConstantStruct *c = dyn_cast<ConstantStruct>(clgv->getInitializer());
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 376 Constant *Struct = ConstantStruct::get(ST, V);
390 Constant *Struct = ConstantStruct::get(ST, V);
418 ConstantStruct::get(cast<StructType>(II->getType()), V);
439 ConstantStruct::get(cast<StructType>(II->getType()), V);
469 Constant *Struct = ConstantStruct::get(cast<StructType>(II->getType()),V);
499 ConstantStruct::get(cast<StructType>(II->getType()), V);
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 314 ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i));
    [all...]
  /external/llvm/lib/IR/
LLVMContextImpl.h 269 typedef ConstantAggrUniqueMap<StructType, ConstantStruct> StructConstantsTy;
Constants.cpp 187 if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(this))
836 StructType *ConstantStruct::getTypeForElements(LLVMContext &Context,
848 StructType *ConstantStruct::getTypeForElements(ArrayRef<Constant*> V,
851 "ConstantStruct::getTypeForElements cannot be called on empty list");
856 ConstantStruct::ConstantStruct(StructType *T, ArrayRef<Constant *> V)
858 OperandTraits<ConstantStruct>::op_end(this) - V.size(),
868 // ConstantStruct accessors.
869 Constant *ConstantStruct::get(StructType *ST, ArrayRef<Constant*> V)
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 301 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(C)) {
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp     [all...]

Completed in 483 milliseconds

1 2