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

1 2

  /external/llvm/lib/Transforms/Utils/
ModuleUtils.cpp 29 Constant *RuntimeCtorInit = ConstantStruct::get(
ValueMapper.cpp 144 if (isa<ConstantStruct>(C))
145 return VM[V] = ConstantStruct::get(cast<StructType>(NewTy), Ops);
  /external/llvm/include/llvm/
Constants.h 384 // ConstantStruct - Constant Struct Declarations
386 class ConstantStruct : public Constant {
387 friend struct ConstantArrayCreator<ConstantStruct, StructType>;
388 ConstantStruct(const ConstantStruct &); // DO NOT IMPLEMENT
390 ConstantStruct(StructType *T, ArrayRef<Constant *> Val);
392 // ConstantStruct accessors
429 static inline bool classof(const ConstantStruct *) { return true; }
436 struct OperandTraits<ConstantStruct> :
437 public VariadicOperandTraits<ConstantStruct> {
    [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/llvm/lib/Transforms/Scalar/
GlobalMerge.cpp 150 Constant *MergedInit = ConstantStruct::get(MergedTy, Inits);
  /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);
811 return llvm::ConstantStruct::get(SType, Elts);
    [all...]
CGObjCMac.cpp     [all...]
CGObjCGNU.cpp 201 llvm::Constant *C = llvm::ConstantStruct::get(Ty, V);
    [all...]
CGExprComplex.cpp 119 llvm::ConstantStruct *pair =
120 cast<llvm::ConstantStruct>(result.getValue());
CodeGenModule.cpp 456 Ctors.push_back(llvm::ConstantStruct::get(CtorStructTy, S));
749 // Create a new global variable for the ConstantStruct in the Module.
797 // Create the ConstantStruct for the global annotation.
804 return llvm::ConstantStruct::getAnon(Fields);
    [all...]
ItaniumCXXABI.cpp 455 return llvm::ConstantStruct::getAnon(Values);
527 return llvm::ConstantStruct::getAnon(MemPtr);
    [all...]
CGDecl.cpp 681 if (isa<llvm::ConstantArray>(Init) || isa<llvm::ConstantStruct>(Init)) {
732 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 651 Constant *NewInitializer = ConstantStruct::get(
677 Initializers[i] = ConstantStruct::get(
    [all...]
  /external/llvm/tools/lto/
LTOModule.cpp 333 ConstantStruct *c = dyn_cast<ConstantStruct>(clgv->getInitializer());
370 ConstantStruct *c = dyn_cast<ConstantStruct>(clgv->getInitializer());
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 345 Constant *Struct = ConstantStruct::get(ST, V);
359 Constant *Struct = ConstantStruct::get(ST, V);
387 ConstantStruct::get(cast<StructType>(II->getType()), V);
408 ConstantStruct::get(cast<StructType>(II->getType()), V);
438 Constant *Struct = ConstantStruct::get(cast<StructType>(II->getType()),V);
468 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/VMCore/
LLVMContextImpl.h 271 typedef ConstantAggrUniqueMap<StructType, ConstantStruct> StructConstantsTy;
Constants.cpp 162 if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(this))
784 StructType *ConstantStruct::getTypeForElements(LLVMContext &Context,
796 StructType *ConstantStruct::getTypeForElements(ArrayRef<Constant*> V,
799 "ConstantStruct::getTypeForElements cannot be called on empty list");
804 ConstantStruct::ConstantStruct(StructType *T, ArrayRef<Constant *> V)
806 OperandTraits<ConstantStruct>::op_end(this) - V.size(),
816 // ConstantStruct accessors.
817 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 313 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(C)) {
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp     [all...]

Completed in 301 milliseconds

1 2