search for: argsx

Displaying 3 results from an estimated 3 matches for "argsx".

Did you mean: args
2018 Jul 23
2
LLVM FunctionType cannot be returned as VectorType?
..., VecInt , VecInt , VecInt , VecInt , VecInt , VecInt ))(TheExecutionEngine->getFunctionAddress(TheFunction->getName().str())); VecInt argsX = {0,0,0,0}; int64_t* result = function(argsX,argsX,argsX,argsX,argsX,argsX,argsX,argsX); //////////////////////////////////////////////////////////// /////////////////////////////// My output result: 422162285262848 562251371602737 843692813695832 422162285262848 It only prints out some random...
2018 Jul 23
2
LLVM FunctionType cannot be returned as VectorType?
..., VecInt > > , VecInt > > , VecInt > > , VecInt > > > ))(TheExecutionEngine->getFunctionAddress(TheFunction->getName().str())); > > > > VecInt argsX = {0,0,0,0}; > > int64_t* result = > function(argsX,argsX,argsX,argsX,argsX,argsX,argsX,argsX); > > > > > > > /////////////////////////////////////////////////////////////////////////////////////////// > My output result: > > 422162285262848 562251371602737 84...
2018 Jul 20
2
LLVM FunctionType cannot be returned as VectorType?
Dear all, I am using LLVM C++ API to generate some code. In particular, I am dealing with AVX2 SIMD API which uses __m256i. My function input types a set of vectors and return type is also a vector. /////////////////////////////////////////////////////////////////////////////////////////// arguments.push_back(VectorType::get(IntegerType::getIntNTy(TheContext, 64), 4));//int64*4 = __m256i