Lines Matching refs:Address
2263 // Cannot simplify if address spaces are different!
2685 // FIXME: Check address space sizes here
2859 // If both are pointers then the address spaces must match.
3461 void IndirectBrInst::init(Value *Address, unsigned NumDests) {
3462 assert(Address && Address->getType()->isPointerTy() &&
3463 "Address of indirectbr must be a pointer");
3468 OperandList[0] = Address;
3488 IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases,
3490 : TerminatorInst(Type::getVoidTy(Address->getContext()),Instruction::IndirectBr,
3492 init(Address, NumCases);
3495 IndirectBrInst::IndirectBrInst(Value *Address, unsigned NumCases,
3497 : TerminatorInst(Type::getVoidTy(Address->getContext()),Instruction::IndirectBr,
3499 init(Address, NumCases);