Home
last modified time | relevance | path

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

/external/llvm/lib/ExecutionEngine/Interpreter/
DExecution.cpp121 assert(Src1.AggregateVal.size() == Src2.AggregateVal.size()); \
122 Dest.AggregateVal.resize( Src1.AggregateVal.size() ); \
123 for( uint32_t _i=0;_i<Src1.AggregateVal.size();_i++) \
124 Dest.AggregateVal[_i].IntVal = APInt(1, \
125 Src1.AggregateVal[_i].IntVal.OP(Src2.AggregateVal[_i].IntVal));\
310 assert(Src1.AggregateVal.size() == Src2.AggregateVal.size()); \
311 Dest.AggregateVal.resize( Src1.AggregateVal.size() ); \
312 for( uint32_t _i=0;_i<Src1.AggregateVal.size();_i++) \
313 Dest.AggregateVal[_i].IntVal = APInt(1, \
314 Src1.AggregateVal[_i].TY##Val OP Src2.AggregateVal[_i].TY##Val);\
[all …]
/external/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp611 Result.AggregateVal.resize(elemNum); in getConstantValue()
615 Result.AggregateVal[i].IntVal = in getConstantValue()
619 Result.AggregateVal[i] = getConstantValue(ElemUndef); in getConstantValue()
630 Result.AggregateVal.resize(elemNum); in getConstantValue()
633 Result.AggregateVal[i].IntVal = in getConstantValue()
930 Result.AggregateVal.resize(elemNum); in getConstantValue()
936 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), in getConstantValue()
943 Result.AggregateVal[i].FloatVal = cast<ConstantFP>( in getConstantValue()
949 Result.AggregateVal[i].FloatVal = CDV->getElementAsFloat(i); in getConstantValue()
958 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), in getConstantValue()
[all …]
/external/llvm/include/llvm/ExecutionEngine/
DGenericValue.h41 std::vector<GenericValue> AggregateVal; member