Searched defs:CallInst (Results 1 - 4 of 4) sorted by relevance
/external/llvm/lib/Target/Sparc/ |
H A D | SparcAsmPrinter.cpp | 114 MCInst CallInst; local 115 CallInst.setOpcode(SP::CALL); 116 CallInst.addOperand(Callee); 117 OutStreamer.EmitInstruction(CallInst, STI);
|
/external/llvm/include/llvm/IR/ |
H A D | Instructions.h | 1270 /// CallInst - This class represents a function call, abstracting a target 1275 class CallInst : public Instruction { class in namespace:llvm 1277 CallInst(const CallInst &CI); 1281 /// Construct a CallInst given a range of arguments. 1282 /// \brief Construct a CallInst from a range of arguments 1283 inline CallInst(Value *Func, ArrayRef<Value *> Args, 1286 /// Construct a CallInst given a range of arguments. 1287 /// \brief Construct a CallInst from a range of arguments 1288 inline CallInst(Valu 1555 CallInst::CallInst(Value *Func, ArrayRef<Value *> Args, function in class:llvm::CallInst 1565 CallInst::CallInst(Value *Func, ArrayRef<Value *> Args, function in class:llvm::CallInst [all...] |
/external/llvm/lib/IR/ |
H A D | Instructions.cpp | 36 ? cast<CallInst>(II)->op_end() - 1 // Skip Callee 260 // CallInst Implementation 263 CallInst::~CallInst() { 266 void CallInst::init(Value *Func, ArrayRef<Value *> Args, const Twine &NameStr) { 288 void CallInst::init(Value *Func, const Twine &NameStr) { 302 CallInst::CallInst(Value *Func, const Twine &Name, function in class:CallInst 307 OperandTraits<CallInst>::op_end(this) - 1, 312 CallInst function in class:CallInst 322 CallInst::CallInst(const CallInst &CI) function in class:CallInst [all...] |
/external/llvm/bindings/ocaml/llvm/ |
H A D | llvm_ocaml.c | 1455 CAMLprim value llvm_is_tail_call(LLVMValueRef CallInst) { argument 1456 return Val_bool(LLVMIsTailCall(CallInst)); 1461 LLVMValueRef CallInst) { 1462 LLVMSetTailCall(CallInst, Bool_val(IsTailCall)); 1460 llvm_set_tail_call(value IsTailCall, LLVMValueRef CallInst) argument
|
Completed in 104 milliseconds