Home | History | Annotate | Download | only in VMCore

Lines Matching defs:Result

412   Instruction *Result = NULL;
415 Result = MCall;
416 if (Result->getType() != AllocPtrType)
418 Result = new BitCastInst(MCall, AllocPtrType, Name, InsertBefore);
421 Result = MCall;
422 if (Result->getType() != AllocPtrType) {
425 Result = new BitCastInst(MCall, AllocPtrType, Name);
435 return Result;
443 /// 3. Bitcast the result of the malloc call to the specified type.
458 /// 3. Bitcast the result of the malloc call to the specified type.
483 CallInst* Result = NULL;
488 Result = CallInst::Create(FreeFunc, PtrCast, "", InsertBefore);
492 Result = CallInst::Create(FreeFunc, PtrCast, "");
494 Result->setTailCall();
496 Result->setCallingConv(F->getCallingConv());
498 return Result;
1397 /// zeros. If so, the result pointer and the first operand have the same
1411 /// constant integers. If so, the result pointer and the first operand have
1605 /// output result. This is either -1 if the element is undef or a number less
1620 SmallVectorImpl<int> &Result) {
1625 Result.push_back(CDS->getElementAsInteger(i));
1630 Result.push_back(isa<UndefValue>(C) ? -1 :
3410 AtomicCmpXchgInst *Result =
3413 Result->setVolatile(isVolatile());
3414 return Result;
3418 AtomicRMWInst *Result =
3421 Result->setVolatile(isVolatile());
3422 return Result;