• Home
  • Raw
  • Download

Lines Matching refs:Instr

1694   Instruction *Instr = unwrap<Instruction>(Inst);  in LLVMGetNextInstruction()  local
1695 BasicBlock::iterator I = Instr; in LLVMGetNextInstruction()
1696 if (++I == Instr->getParent()->end()) in LLVMGetNextInstruction()
1702 Instruction *Instr = unwrap<Instruction>(Inst); in LLVMGetPreviousInstruction() local
1703 BasicBlock::iterator I = Instr; in LLVMGetPreviousInstruction()
1704 if (I == Instr->getParent()->begin()) in LLVMGetPreviousInstruction()
1730 unsigned LLVMGetInstructionCallConv(LLVMValueRef Instr) { in LLVMGetInstructionCallConv() argument
1731 Value *V = unwrap(Instr); in LLVMGetInstructionCallConv()
1739 void LLVMSetInstructionCallConv(LLVMValueRef Instr, unsigned CC) { in LLVMSetInstructionCallConv() argument
1740 Value *V = unwrap(Instr); in LLVMSetInstructionCallConv()
1748 void LLVMAddInstrAttribute(LLVMValueRef Instr, unsigned index, in LLVMAddInstrAttribute() argument
1750 CallSite Call = CallSite(unwrap<Instruction>(Instr)); in LLVMAddInstrAttribute()
1758 void LLVMRemoveInstrAttribute(LLVMValueRef Instr, unsigned index, in LLVMRemoveInstrAttribute() argument
1760 CallSite Call = CallSite(unwrap<Instruction>(Instr)); in LLVMRemoveInstrAttribute()
1768 void LLVMSetInstrParamAlignment(LLVMValueRef Instr, unsigned index, in LLVMSetInstrParamAlignment() argument
1770 CallSite Call = CallSite(unwrap<Instruction>(Instr)); in LLVMSetInstrParamAlignment()
1828 LLVMValueRef Instr) { in LLVMPositionBuilder() argument
1830 Instruction *I = Instr? unwrap<Instruction>(Instr) : (Instruction*) BB->end(); in LLVMPositionBuilder()
1834 void LLVMPositionBuilderBefore(LLVMBuilderRef Builder, LLVMValueRef Instr) { in LLVMPositionBuilderBefore() argument
1835 Instruction *I = unwrap<Instruction>(Instr); in LLVMPositionBuilderBefore()
1852 void LLVMInsertIntoBuilder(LLVMBuilderRef Builder, LLVMValueRef Instr) { in LLVMInsertIntoBuilder() argument
1853 unwrap(Builder)->Insert(unwrap<Instruction>(Instr)); in LLVMInsertIntoBuilder()
1856 void LLVMInsertIntoBuilderWithName(LLVMBuilderRef Builder, LLVMValueRef Instr, in LLVMInsertIntoBuilderWithName() argument
1858 unwrap(Builder)->Insert(unwrap<Instruction>(Instr), Name); in LLVMInsertIntoBuilderWithName()