Home
last modified time | relevance | path

Searched refs:AggregateVal (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp70 R.AggregateVal.resize(Src.AggregateVal.size()); in visitUnaryOperator()
78 for (unsigned i = 0; i < R.AggregateVal.size(); ++i) in visitUnaryOperator()
79 R.AggregateVal[i].FloatVal = -Src.AggregateVal[i].FloatVal; in visitUnaryOperator()
81 for (unsigned i = 0; i < R.AggregateVal.size(); ++i) in visitUnaryOperator()
82 R.AggregateVal[i].DoubleVal = -Src.AggregateVal[i].DoubleVal; in visitUnaryOperator()
175 assert(Src1.AggregateVal.size() == Src2.AggregateVal.size()); \
176 Dest.AggregateVal.resize(Src1.AggregateVal.size()); \
177 for (uint32_t _i = 0; _i < Src1.AggregateVal.size(); _i++) \
178 Dest.AggregateVal[_i].IntVal = APInt( \
179 1, Src1.AggregateVal[_i].IntVal.OP(Src2.AggregateVal[_i].IntVal)); \
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp604 Result.AggregateVal.resize(elemNum); in getConstantValue()
608 Result.AggregateVal[i].IntVal = in getConstantValue()
612 Result.AggregateVal[i] = getConstantValue(ElemUndef); in getConstantValue()
626 Result.AggregateVal.resize(elemNum); in getConstantValue()
629 Result.AggregateVal[i].IntVal = in getConstantValue()
932 Result.AggregateVal.resize(elemNum); in getConstantValue()
938 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), in getConstantValue()
945 Result.AggregateVal[i].FloatVal = cast<ConstantFP>( in getConstantValue()
951 Result.AggregateVal[i].FloatVal = CDV->getElementAsFloat(i); in getConstantValue()
960 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), in getConstantValue()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/
H A DGenericValue.h37 std::vector<GenericValue> AggregateVal; member