Home
last modified time | relevance | path

Searched refs:OperandList (Results 1 – 25 of 263) sorted by relevance

1234567891011

/external/llvm/utils/TableGen/
DCodeGenInstruction.h137 std::vector<OperandInfo> OperandList; variable
145 bool empty() const { return OperandList.empty(); } in empty()
146 unsigned size() const { return OperandList.size(); } in size()
147 const OperandInfo &operator[](unsigned i) const { return OperandList[i]; }
148 OperandInfo &operator[](unsigned i) { return OperandList[i]; }
149 OperandInfo &back() { return OperandList.back(); } in back()
150 const OperandInfo &back() const { return OperandList.back(); } in back()
154 iterator begin() { return OperandList.begin(); } in begin()
155 const_iterator begin() const { return OperandList.begin(); } in begin()
156 iterator end() { return OperandList.end(); } in end()
[all …]
/external/llvm-project/llvm/utils/TableGen/
DCodeGenInstruction.h149 std::vector<OperandInfo> OperandList; variable
157 bool empty() const { return OperandList.empty(); } in empty()
158 unsigned size() const { return OperandList.size(); } in size()
159 const OperandInfo &operator[](unsigned i) const { return OperandList[i]; }
160 OperandInfo &operator[](unsigned i) { return OperandList[i]; }
161 OperandInfo &back() { return OperandList.back(); } in back()
162 const OperandInfo &back() const { return OperandList.back(); } in back()
166 iterator begin() { return OperandList.begin(); } in begin()
167 const_iterator begin() const { return OperandList.begin(); } in begin()
168 iterator end() { return OperandList.end(); } in end()
[all …]
/external/swiftshader/third_party/subzero/pnacl-llvm/
DNaClBitCodes.cpp102 for (unsigned i = 0; i < OperandList.size(); ++i) { in Simplify()
103 const NaClBitCodeAbbrevOp &Op = OperandList[i]; in Simplify()
108 assert(!Op.isArrayOp() || i == OperandList.size() - 2); in Simplify()
109 while (Op.isArrayOp() && !Abbrev->OperandList.empty() && in Simplify()
110 Abbrev->OperandList.back() == OperandList[i + 1]) { in Simplify()
111 Abbrev->OperandList.pop_back(); in Simplify()
113 Abbrev->OperandList.push_back(Op); in Simplify()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Bitstream/
DBitCodes.h168 SmallVector<BitCodeAbbrevOp, 32> OperandList; variable
173 explicit BitCodeAbbrev(std::initializer_list<BitCodeAbbrevOp> OperandList) in BitCodeAbbrev() argument
174 : OperandList(OperandList) {} in BitCodeAbbrev()
177 return static_cast<unsigned>(OperandList.size()); in getNumOperandInfos()
180 return OperandList[N]; in getOperandInfo()
184 OperandList.push_back(OpInfo); in Add()
/external/llvm-project/llvm/include/llvm/Bitstream/
DBitCodes.h168 SmallVector<BitCodeAbbrevOp, 32> OperandList; variable
173 explicit BitCodeAbbrev(std::initializer_list<BitCodeAbbrevOp> OperandList) in BitCodeAbbrev() argument
174 : OperandList(OperandList) {} in BitCodeAbbrev()
177 return static_cast<unsigned>(OperandList.size()); in getNumOperandInfos()
180 return OperandList[N]; in getOperandInfo()
184 OperandList.push_back(OpInfo); in Add()
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/fuzz/
Dtransformation_replace_linear_algebra_instruction.cpp305 opt::Instruction::OperandList( in ReplaceOpTranspose()
315 opt::Instruction::OperandList( in ReplaceOpTranspose()
321 opt::Instruction::OperandList in_operands; in ReplaceOpTranspose()
329 result_column_ids[i], opt::Instruction::OperandList(in_operands))); in ReplaceOpTranspose()
367 opt::Instruction::OperandList( in ReplaceOpVectorTimesScalar()
377 opt::Instruction::OperandList( in ReplaceOpVectorTimesScalar()
424 opt::Instruction::OperandList( in ReplaceOpMatrixTimesScalar()
437 opt::Instruction::OperandList( in ReplaceOpMatrixTimesScalar()
447 opt::Instruction::OperandList( in ReplaceOpMatrixTimesScalar()
453 opt::Instruction::OperandList composite_construct_in_operands; in ReplaceOpMatrixTimesScalar()
[all …]
Dtransformation_add_loop_to_create_int_constant_synonym.cpp266 opt::Instruction::OperandList{})); in Apply()
272 opt::Instruction::OperandList{ in Apply()
280 opt::Instruction::OperandList{ in Apply()
296 opt::Instruction::OperandList{ in Apply()
304 opt::Instruction::OperandList{{SPV_OPERAND_TYPE_ID, {message_.ctr_id()}}, in Apply()
311 opt::Instruction::OperandList{ in Apply()
320 opt::Instruction::OperandList{ in Apply()
331 opt::Instruction::OperandList{ in Apply()
344 opt::Instruction::OperandList{})); in Apply()
358 opt::Instruction::OperandList{ in Apply()
[all …]
Dtransformation_add_early_terminator_wrapper.cpp70 opt::Instruction::OperandList())); in Apply()
73 opt::Instruction::OperandList())); in Apply()
79 opt::Instruction::OperandList( in Apply()
88 ir_context, SpvOpFunctionEnd, 0, 0, opt::Instruction::OperandList())); in Apply()
Dinstruction_message.cpp24 const opt::Instruction::OperandList& input_operands) { in MakeInstructionMessage()
41 opt::Instruction::OperandList input_operands; in MakeInstructionMessage()
62 opt::Instruction::OperandList in_operands; in InstructionFromMessage()
Dforce_render_red.cpp209 opt::Instruction::OperandList()); in ForceRenderRed()
212 ir_context.get(), SpvOpReturn, 0, 0, opt::Instruction::OperandList())); in ForceRenderRed()
220 opt::Instruction::OperandList()); in ForceRenderRed()
227 opt::Instruction::OperandList op_composite_construct_operands = { in ForceRenderRed()
241 opt::Instruction::OperandList op_store_operands = {variable_to_store_into, in ForceRenderRed()
312 opt::Instruction::OperandList greater_than_operands = { in ForceRenderRed()
345 opt::Instruction::OperandList op_branch_conditional_operands = { in ForceRenderRed()
/external/deqp-deps/SPIRV-Tools/source/fuzz/
Dtransformation_replace_linear_algebra_instruction.cpp306 opt::Instruction::OperandList( in ReplaceOpTranspose()
316 opt::Instruction::OperandList( in ReplaceOpTranspose()
322 opt::Instruction::OperandList in_operands; in ReplaceOpTranspose()
330 result_column_ids[i], opt::Instruction::OperandList(in_operands))); in ReplaceOpTranspose()
368 opt::Instruction::OperandList( in ReplaceOpVectorTimesScalar()
378 opt::Instruction::OperandList( in ReplaceOpVectorTimesScalar()
425 opt::Instruction::OperandList( in ReplaceOpMatrixTimesScalar()
438 opt::Instruction::OperandList( in ReplaceOpMatrixTimesScalar()
448 opt::Instruction::OperandList( in ReplaceOpMatrixTimesScalar()
454 opt::Instruction::OperandList composite_construct_in_operands; in ReplaceOpMatrixTimesScalar()
[all …]
Dtransformation_add_loop_to_create_int_constant_synonym.cpp267 opt::Instruction::OperandList{})); in Apply()
273 opt::Instruction::OperandList{ in Apply()
281 opt::Instruction::OperandList{ in Apply()
297 opt::Instruction::OperandList{ in Apply()
305 opt::Instruction::OperandList{{SPV_OPERAND_TYPE_ID, {message_.ctr_id()}}, in Apply()
312 opt::Instruction::OperandList{ in Apply()
321 opt::Instruction::OperandList{ in Apply()
332 opt::Instruction::OperandList{ in Apply()
345 opt::Instruction::OperandList{})); in Apply()
359 opt::Instruction::OperandList{ in Apply()
[all …]
Dtransformation_add_early_terminator_wrapper.cpp71 opt::Instruction::OperandList())); in Apply()
74 opt::Instruction::OperandList())); in Apply()
80 opt::Instruction::OperandList( in Apply()
89 ir_context, SpvOpFunctionEnd, 0, 0, opt::Instruction::OperandList())); in Apply()
Dinstruction_message.cpp24 const opt::Instruction::OperandList& input_operands) { in MakeInstructionMessage()
41 opt::Instruction::OperandList input_operands; in MakeInstructionMessage()
62 opt::Instruction::OperandList in_operands; in InstructionFromMessage()
Dforce_render_red.cpp211 opt::Instruction::OperandList()); in ForceRenderRed()
214 ir_context.get(), SpvOpReturn, 0, 0, opt::Instruction::OperandList())); in ForceRenderRed()
222 opt::Instruction::OperandList()); in ForceRenderRed()
229 opt::Instruction::OperandList op_composite_construct_operands = { in ForceRenderRed()
243 opt::Instruction::OperandList op_store_operands = {variable_to_store_into, in ForceRenderRed()
314 opt::Instruction::OperandList greater_than_operands = { in ForceRenderRed()
347 opt::Instruction::OperandList op_branch_conditional_operands = { in ForceRenderRed()
/external/swiftshader/third_party/SPIRV-Tools/source/fuzz/
Dtransformation_replace_linear_algebra_instruction.cpp306 opt::Instruction::OperandList( in ReplaceOpTranspose()
316 opt::Instruction::OperandList( in ReplaceOpTranspose()
322 opt::Instruction::OperandList in_operands; in ReplaceOpTranspose()
330 result_column_ids[i], opt::Instruction::OperandList(in_operands))); in ReplaceOpTranspose()
368 opt::Instruction::OperandList( in ReplaceOpVectorTimesScalar()
378 opt::Instruction::OperandList( in ReplaceOpVectorTimesScalar()
425 opt::Instruction::OperandList( in ReplaceOpMatrixTimesScalar()
438 opt::Instruction::OperandList( in ReplaceOpMatrixTimesScalar()
448 opt::Instruction::OperandList( in ReplaceOpMatrixTimesScalar()
454 opt::Instruction::OperandList composite_construct_in_operands; in ReplaceOpMatrixTimesScalar()
[all …]
Dtransformation_add_loop_to_create_int_constant_synonym.cpp267 opt::Instruction::OperandList{})); in Apply()
273 opt::Instruction::OperandList{ in Apply()
281 opt::Instruction::OperandList{ in Apply()
297 opt::Instruction::OperandList{ in Apply()
305 opt::Instruction::OperandList{{SPV_OPERAND_TYPE_ID, {message_.ctr_id()}}, in Apply()
312 opt::Instruction::OperandList{ in Apply()
321 opt::Instruction::OperandList{ in Apply()
332 opt::Instruction::OperandList{ in Apply()
345 opt::Instruction::OperandList{})); in Apply()
359 opt::Instruction::OperandList{ in Apply()
[all …]
Dtransformation_add_early_terminator_wrapper.cpp71 opt::Instruction::OperandList())); in Apply()
74 opt::Instruction::OperandList())); in Apply()
80 opt::Instruction::OperandList( in Apply()
89 ir_context, SpvOpFunctionEnd, 0, 0, opt::Instruction::OperandList())); in Apply()
Dinstruction_message.cpp24 const opt::Instruction::OperandList& input_operands) { in MakeInstructionMessage()
41 opt::Instruction::OperandList input_operands; in MakeInstructionMessage()
62 opt::Instruction::OperandList in_operands; in InstructionFromMessage()
Dforce_render_red.cpp211 opt::Instruction::OperandList()); in ForceRenderRed()
214 ir_context.get(), SpvOpReturn, 0, 0, opt::Instruction::OperandList())); in ForceRenderRed()
222 opt::Instruction::OperandList()); in ForceRenderRed()
229 opt::Instruction::OperandList op_composite_construct_operands = { in ForceRenderRed()
243 opt::Instruction::OperandList op_store_operands = {variable_to_store_into, in ForceRenderRed()
314 opt::Instruction::OperandList greater_than_operands = { in ForceRenderRed()
347 opt::Instruction::OperandList op_branch_conditional_operands = { in ForceRenderRed()
/external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
DNaClBitCodes.h271 SmallVector<NaClBitCodeAbbrevOp, 8> OperandList;
285 return static_cast<unsigned>(OperandList.size());
288 return OperandList[N];
291 void Add(const NaClBitCodeAbbrevOp &OpInfo) { OperandList.push_back(OpInfo); }
302 size_t OperandListSize = OperandList.size();
303 size_t AbbrevOperandListSize = Abbrev.OperandList.size();
311 if (int Diff = OperandList[I].Compare(Abbrev.OperandList[I]))
323 return !OperandList[Size - 2].isArrayOp();
/external/llvm/include/llvm/Bitcode/
DBitCodes.h162 SmallVector<BitCodeAbbrevOp, 32> OperandList;
169 return static_cast<unsigned>(OperandList.size());
172 return OperandList[N];
176 OperandList.push_back(OpInfo);
/external/swiftshader/third_party/SPIRV-Tools/source/reduce/
Dreduction_util.cpp39 opt::Instruction::OperandList( in FindOrCreateGlobalVariable()
78 opt::Instruction::OperandList( in FindOrCreateFunctionVariable()
95 context, SpvOpUndef, type_id, undef_id, opt::Instruction::OperandList()); in FindOrCreateGlobalUndef()
104 opt::Instruction::OperandList new_in_operands; in AdaptPhiInstructionsForRemovedEdge()
/external/deqp-deps/SPIRV-Tools/source/reduce/
Dreduction_util.cpp39 opt::Instruction::OperandList( in FindOrCreateGlobalVariable()
78 opt::Instruction::OperandList( in FindOrCreateFunctionVariable()
95 context, SpvOpUndef, type_id, undef_id, opt::Instruction::OperandList()); in FindOrCreateGlobalUndef()
104 opt::Instruction::OperandList new_in_operands; in AdaptPhiInstructionsForRemovedEdge()
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/reduce/
Dreduction_util.cpp39 opt::Instruction::OperandList( in FindOrCreateGlobalVariable()
78 opt::Instruction::OperandList( in FindOrCreateFunctionVariable()
95 context, SpvOpUndef, type_id, undef_id, opt::Instruction::OperandList()); in FindOrCreateGlobalUndef()
104 opt::Instruction::OperandList new_in_operands; in AdaptPhiInstructionsForRemovedEdge()

1234567891011