Home
last modified time | relevance | path

Searched refs:LLVMGetOperand (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/llvm/tools/llvm-c-test/
H A Decho.cpp502 LLVMValueRef SrcOp = LLVMGetOperand(Src, 0); in CloneInstruction()
509 LLVMValueRef Else = LLVMGetOperand(Src, 1); in CloneInstruction()
511 LLVMValueRef Then = LLVMGetOperand(Src, 2); in CloneInstruction()
523 Args.push_back(CloneValue(LLVMGetOperand(Src, i))); in CloneInstruction()
537 LLVMValueRef LHS = CloneValue(LLVMGetOperand(Src, 0)); in CloneInstruction()
643 Idx.push_back(CloneValue(LLVMGetOperand(Src, i))); in CloneInstruction()
680 LLVMValueRef V = CloneValue(LLVMGetOperand(Src, 0)); in CloneInstruction()
711 Args.push_back(CloneValue(LLVMGetOperand(Src, i))); in CloneInstruction()
751 Args.push_back(CloneValue(LLVMGetOperand(Src, i))); in CloneInstruction()
796 LLVMValueRef V = CloneValue(LLVMGetOperand(Src, 1)); in CloneInstruction()
[all …]
H A Dmodule.c101 LLVMGetOperand(isn, LLVMGetNumOperands(isn) - 1); in llvm_module_list_functions()
/llvm-project-15.0.7/llvm/bindings/python/llvm/
H A Dcore.py187 return Value(lib.LLVMGetOperand(self, i))
369 return Value(lib.LLVMGetOperand(self.__as_value(),
559 library.LLVMGetOperand.argtypes = [Value, c_uint]
560 library.LLVMGetOperand.restype = c_object_p
/llvm-project-15.0.7/llvm/include/llvm-c/
H A DCore.h1853 LLVMValueRef LLVMGetOperand(LLVMValueRef Val, unsigned Index);
/llvm-project-15.0.7/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c735 return LLVMGetOperand(V, Int_val(I)); in llvm_operand()
/llvm-project-15.0.7/llvm/bindings/go/llvm/
H A Dir.go800 func (v Value) Operand(i int) (rv Value) { rv.C = C.LLVMGetOperand(v.C, C.unsigned(i)); return }
/llvm-project-15.0.7/llvm/lib/IR/
H A DCore.cpp1047 LLVMValueRef LLVMGetOperand(LLVMValueRef Val, unsigned Index) { in LLVMGetOperand() function