Home
last modified time | relevance | path

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

/external/llvm/lib/ExecutionEngine/Interpreter/
DExecution.cpp119 assert(Src1.AggregateVal.size() == Src2.AggregateVal.size()); \
120 Dest.AggregateVal.resize( Src1.AggregateVal.size() ); \
121 for( uint32_t _i=0;_i<Src1.AggregateVal.size();_i++) \
122 Dest.AggregateVal[_i].IntVal = APInt(1, \
123 Src1.AggregateVal[_i].IntVal.OP(Src2.AggregateVal[_i].IntVal));\
308 assert(Src1.AggregateVal.size() == Src2.AggregateVal.size()); \
309 Dest.AggregateVal.resize( Src1.AggregateVal.size() ); \
310 for( uint32_t _i=0;_i<Src1.AggregateVal.size();_i++) \
311 Dest.AggregateVal[_i].IntVal = APInt(1, \
312 Src1.AggregateVal[_i].TY##Val OP Src2.AggregateVal[_i].TY##Val);\
[all …]
/external/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp564 Result.AggregateVal.resize(elemNum); in getConstantValue()
567 Result.AggregateVal[i].IntVal = in getConstantValue()
868 Result.AggregateVal.resize(elemNum); in getConstantValue()
874 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), in getConstantValue()
881 Result.AggregateVal[i].FloatVal = cast<ConstantFP>( in getConstantValue()
887 Result.AggregateVal[i].FloatVal = CDV->getElementAsFloat(i); in getConstantValue()
896 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), in getConstantValue()
903 Result.AggregateVal[i].DoubleVal = cast<ConstantFP>( in getConstantValue()
909 Result.AggregateVal[i].DoubleVal = CDV->getElementAsDouble(i); in getConstantValue()
918 std::fill(Result.AggregateVal.begin(), Result.AggregateVal.end(), in getConstantValue()
[all …]
/external/llvm/include/llvm/ExecutionEngine/
DGenericValue.h40 std::vector<GenericValue> AggregateVal; member