forked from OSchip/llvm-project
				
			
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Go
		
	
	
	
//===- call.go - IR generation for calls ----------------------------------===//
 | 
						|
//
 | 
						|
//                     The LLVM Compiler Infrastructure
 | 
						|
//
 | 
						|
// This file is distributed under the University of Illinois Open Source
 | 
						|
// License. See LICENSE.TXT for details.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
//
 | 
						|
// This file implements IR generation for calls.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
 | 
						|
package irgen
 | 
						|
 | 
						|
import (
 | 
						|
	"llvm.org/llgo/third_party/gotools/go/types"
 | 
						|
	"llvm.org/llvm/bindings/go/llvm"
 | 
						|
)
 | 
						|
 | 
						|
// createCall emits the code for a function call,
 | 
						|
// taking into account receivers, and panic/defer.
 | 
						|
func (fr *frame) createCall(fn *govalue, chain llvm.Value, argValues []*govalue) []*govalue {
 | 
						|
	fntyp := fn.Type().Underlying().(*types.Signature)
 | 
						|
	typinfo := fr.types.getSignatureInfo(fntyp)
 | 
						|
 | 
						|
	args := make([]llvm.Value, len(argValues))
 | 
						|
	for i, arg := range argValues {
 | 
						|
		args[i] = arg.value
 | 
						|
	}
 | 
						|
	var results []llvm.Value
 | 
						|
	if fr.unwindBlock.IsNil() {
 | 
						|
		results = typinfo.call(fr.types.ctx, fr.allocaBuilder, fr.builder, fn.value, chain, args)
 | 
						|
	} else {
 | 
						|
		contbb := llvm.AddBasicBlock(fr.function, "")
 | 
						|
		results = typinfo.invoke(fr.types.ctx, fr.allocaBuilder, fr.builder, fn.value, chain, args, contbb, fr.unwindBlock)
 | 
						|
	}
 | 
						|
 | 
						|
	resultValues := make([]*govalue, len(results))
 | 
						|
	for i, res := range results {
 | 
						|
		resultValues[i] = newValue(res, fntyp.Results().At(i).Type())
 | 
						|
	}
 | 
						|
	return resultValues
 | 
						|
}
 |