reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/ExecutionEngine/ExecutionEngine.cpp
 1134   LLVM_DEBUG(Init->dump());
 1135   if (isa<UndefValue>(Init))
 1138   if (const ConstantVector *CP = dyn_cast<ConstantVector>(Init)) {
 1146   if (isa<ConstantAggregateZero>(Init)) {
 1147     memset(Addr, 0, (size_t)getDataLayout().getTypeAllocSize(Init->getType()));
 1151   if (const ConstantArray *CPA = dyn_cast<ConstantArray>(Init)) {
 1159   if (const ConstantStruct *CPS = dyn_cast<ConstantStruct>(Init)) {
 1168                dyn_cast<ConstantDataSequential>(Init)) {
 1175   if (Init->getType()->isFirstClassType()) {
 1176     GenericValue Val = getConstantValue(Init);
 1177     StoreValueToMemory(Val, (GenericValue*)Addr, Init->getType());
 1181   LLVM_DEBUG(dbgs() << "Bad Type: " << *Init->getType() << "\n");