| /external/llvm/lib/Transforms/Utils/ |
| CtorUtils.cpp | 53 ConstantStruct::get(StructTy, makeArrayRef(CSVals, NumElts))); 92 ConstantStruct *CS = cast<ConstantStruct>(*i); 117 ConstantStruct *CS = cast<ConstantStruct>(*i);
|
| ModuleUtils.cpp | 58 ConstantStruct::get(EltTy, makeArrayRef(CSVals, EltTy->getNumElements()));
|
| ValueMapper.cpp | 167 if (isa<ConstantStruct>(C)) 168 return VM[V] = ConstantStruct::get(cast<StructType>(NewTy), Ops);
|
| /external/llvm/lib/Transforms/ObjCARC/ |
| ObjCARCAPElim.cpp | 160 Function *F = dyn_cast<Function>(cast<ConstantStruct>(Op)->getOperand(1));
|
| /external/llvm/include/llvm/IR/ |
| Constants.h | 376 // ConstantStruct - Constant Struct Declarations 378 class ConstantStruct : public Constant { 379 friend struct ConstantArrayCreator<ConstantStruct, StructType>; 380 ConstantStruct(const ConstantStruct &) LLVM_DELETED_FUNCTION; 382 ConstantStruct(StructType *T, ArrayRef<Constant *> Val); 384 // ConstantStruct accessors 427 struct OperandTraits<ConstantStruct> : 428 public VariadicOperandTraits<ConstantStruct> { 431 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ConstantStruct, Constant [all...] |
| /external/llvm/tools/bugpoint/ |
| ExtractFunction.cpp | 218 ArrayElts.push_back(ConstantStruct::get(STy, Elts)); 240 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i))){
|
| /external/llvm/lib/LTO/ |
| LTOModule.cpp | 193 const ConstantStruct *c = dyn_cast<ConstantStruct>(clgv->getInitializer()); 230 const ConstantStruct *c = dyn_cast<ConstantStruct>(clgv->getInitializer());
|
| /external/llvm/lib/IR/ |
| AutoUpgrade.cpp | 204 ConstantStruct *Init = cast<ConstantStruct>(&U); 206 ConstantStruct::get(NewTy, Init->getOperand(0), Init->getOperand(1),
|
| LLVMContextImpl.h | 278 typedef ConstantAggrUniqueMap<StructType, ConstantStruct> StructConstantsTy;
|
| Constants.cpp | 206 if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(this)) 879 StructType *ConstantStruct::getTypeForElements(LLVMContext &Context, 891 StructType *ConstantStruct::getTypeForElements(ArrayRef<Constant*> V, 894 "ConstantStruct::getTypeForElements cannot be called on empty list"); 899 ConstantStruct::ConstantStruct(StructType *T, ArrayRef<Constant *> V) [all...] |
| /external/clang/lib/CodeGen/ |
| CGExprConstant.cpp | 511 llvm::ConstantStruct::getTypeForElements(CGM.getLLVMContext(), 519 llvm::Constant *Result = llvm::ConstantStruct::get(STy, Elements); 633 return llvm::ConstantStruct::get(STy, Elts); 771 return llvm::ConstantStruct::get(SType, Elts); [all...] |
| CGObjCMac.cpp | [all...] |
| CGOpenMPRuntime.cpp | 63 llvm::Constant *Init = llvm::ConstantStruct::get(IdentTy, Values);
|
| CGObjCGNU.cpp | 200 llvm::Constant *C = llvm::ConstantStruct::get(Ty, V); [all...] |
| MicrosoftCXXABI.cpp | [all...] |
| /external/llvm/lib/CodeGen/ |
| ShadowStackGC.cpp | 226 ConstantStruct::get(FrameMapTy, BaseElts), 233 Constant *FrameMap = ConstantStruct::get(STy, DescriptorElts);
|
| GlobalMerge.cpp | 203 Constant *MergedInit = ConstantStruct::get(MergedTy, Inits);
|
| /external/llvm/unittests/Linker/ |
| LinkModulesTest.cpp | 143 GV->setInitializer(ConstantStruct::get(STy, F));
|
| /external/llvm/lib/Transforms/InstCombine/ |
| InstCombineCalls.cpp | 378 Constant *Struct = ConstantStruct::get(ST, V); 392 Constant *Struct = ConstantStruct::get(ST, V); 420 ConstantStruct::get(cast<StructType>(II->getType()), V); 434 Constant *Struct = ConstantStruct::get(ST, V); 456 ConstantStruct::get(cast<StructType>(II->getType()), V); 486 Constant *Struct = ConstantStruct::get(cast<StructType>(II->getType()),V); 516 ConstantStruct::get(cast<StructType>(II->getType()), V); [all...] |
| /external/llvm/lib/Transforms/Instrumentation/ |
| AddressSanitizer.cpp | 291 ConstantStruct *Contents = 292 cast<ConstantStruct>(SourceLocGV->getInitializer()); [all...] |
| /external/llvm/lib/Transforms/IPO/ |
| MergeFunctions.cpp | 566 const ConstantStruct *LS = cast<ConstantStruct>(L); 567 const ConstantStruct *RS = cast<ConstantStruct>(R); [all...] |
| /external/llvm/lib/ExecutionEngine/ |
| ExecutionEngine.cpp | 323 ConstantStruct *CS = dyn_cast<ConstantStruct>(InitList->getOperand(i)); [all...] |
| /external/llvm/lib/Target/NVPTX/ |
| NVPTXGenericToNVVM.cpp | 228 isa<ConstantStruct>(C)) {
|
| /external/llvm/lib/CodeGen/AsmPrinter/ |
| AsmPrinter.cpp | [all...] |
| /external/llvm/lib/Analysis/ |
| ConstantFolding.cpp | 315 if (ConstantStruct *CS = dyn_cast<ConstantStruct>(C)) { [all...] |