Home
last modified time | relevance | path

Searched refs:operands (Results 1 – 25 of 3372) sorted by relevance

12345678910>>...135

/external/angle/third_party/vulkan-deps/glslang/src/SPIRV/
Ddoc.cpp1621 InstructionDesc[OpSource].operands.push(OperandSource, ""); in Parameterize()
1622 InstructionDesc[OpSource].operands.push(OperandLiteralNumber, "'Version'"); in Parameterize()
1623 InstructionDesc[OpSource].operands.push(OperandId, "'File'", true); in Parameterize()
1624 InstructionDesc[OpSource].operands.push(OperandLiteralString, "'Source'", true); in Parameterize()
1626 InstructionDesc[OpSourceContinued].operands.push(OperandLiteralString, "'Continued Source'"); in Parameterize()
1628 InstructionDesc[OpSourceExtension].operands.push(OperandLiteralString, "'Extension'"); in Parameterize()
1630 InstructionDesc[OpName].operands.push(OperandId, "'Target'"); in Parameterize()
1631 InstructionDesc[OpName].operands.push(OperandLiteralString, "'Name'"); in Parameterize()
1633 InstructionDesc[OpMemberName].operands.push(OperandId, "'Type'"); in Parameterize()
1634 InstructionDesc[OpMemberName].operands.push(OperandLiteralNumber, "'Member'"); in Parameterize()
[all …]
/external/deqp-deps/glslang/SPIRV/
Ddoc.cpp1613 InstructionDesc[OpSource].operands.push(OperandSource, ""); in Parameterize()
1614 InstructionDesc[OpSource].operands.push(OperandLiteralNumber, "'Version'"); in Parameterize()
1615 InstructionDesc[OpSource].operands.push(OperandId, "'File'", true); in Parameterize()
1616 InstructionDesc[OpSource].operands.push(OperandLiteralString, "'Source'", true); in Parameterize()
1618 InstructionDesc[OpSourceContinued].operands.push(OperandLiteralString, "'Continued Source'"); in Parameterize()
1620 InstructionDesc[OpSourceExtension].operands.push(OperandLiteralString, "'Extension'"); in Parameterize()
1622 InstructionDesc[OpName].operands.push(OperandId, "'Target'"); in Parameterize()
1623 InstructionDesc[OpName].operands.push(OperandLiteralString, "'Name'"); in Parameterize()
1625 InstructionDesc[OpMemberName].operands.push(OperandId, "'Type'"); in Parameterize()
1626 InstructionDesc[OpMemberName].operands.push(OperandLiteralNumber, "'Member'"); in Parameterize()
[all …]
/external/capstone/suite/cstest/
Dissues.cs11 0x0: 0x70,0x47,0x00 == bx lr ; op_count: 1 ; operands[0].type: REG = lr ; operands[0].access: READ …
15 …_count: 1 ; operands[0].type: MEM ; operands[0].mem.base: REG = r0 ; operands[0].mem.index: REG = …
19operands[0].type: MEM ; operands[0].mem.base: REG = rip ; operands[0].mem.disp: 0x2175a1 ; operand…
23 …1 ; op_count: 1 ; operands[0].type: MEM ; operands[0].mem.base: REG = rsp ; operands[0].mem.disp: …
27 …1 ; op_count: 1 ; operands[0].type: MEM ; operands[0].mem.base: REG = rsp ; operands[0].mem.disp: …
31 … ; op_count: 1 ; operands[0].type: MEM ; operands[0].mem.base: REG = rsp ; operands[0].mem.disp: 0…
35 … 0xd9 ; disp: 0x0 ; sib: 0x0 ; op_count: 1 ; operands[0].type: REG = st(1) ; operands[0].size: 10 …
39 …1 ; op_count: 1 ; operands[0].type: MEM ; operands[0].mem.base: REG = rsp ; operands[0].mem.disp: …
63 0x0: 0x0b,0x00,0x00,0x0a == beq #0x34 ; op_count: 1 ; operands[0].type: IMM = 0x34 ; Code condition…
75operands[0].type: MEM ; operands[0].mem.disp: 0x8049094 ; operands[0].size: 2 ; operands[0].access…
[all …]
/external/mesa3d/src/compiler/glsl/
Dir_validate.cpp301 assert(ir->operands[i] == NULL); in visit_leave()
305 assert(ir->operands[i] != NULL); in visit_leave()
310 assert(ir->operands[0]->type == ir->type); in visit_leave()
314 assert(ir->operands[0]->type->is_boolean()); in visit_leave()
318 assert(ir->type == ir->operands[0]->type); in visit_leave()
323 assert(ir->operands[0]->type->is_int_16_32_64() || in visit_leave()
324 ir->operands[0]->type->is_float_16_32_64()); in visit_leave()
325 assert(ir->type == ir->operands[0]->type); in visit_leave()
332 assert(ir->type == ir->operands[0]->type); in visit_leave()
340 assert(ir->operands[0]->type->is_float_16_32()); in visit_leave()
[all …]
Dopt_algebraic.cpp182 if (ir->operands[0]->type->is_vector()) in update_type()
183 ir->type = ir->operands[0]->type; in update_type()
185 ir->type = ir->operands[1]->type; in update_type()
196 ir_swizzle *x = expr0->operands[0]->as_swizzle(); in try_replace_with_dot()
197 ir_swizzle *y = expr0->operands[1]->as_swizzle(); in try_replace_with_dot()
198 ir_swizzle *z = expr1->operands[0]->as_swizzle(); in try_replace_with_dot()
199 ir_swizzle *w = expr1->operands[1]->as_swizzle(); in try_replace_with_dot()
234 ir_rvalue *temp = ir2->operands[op2]; in reassociate_operands()
235 ir2->operands[op2] = ir1->operands[op1]; in reassociate_operands()
236 ir1->operands[op1] = temp; in reassociate_operands()
[all …]
Dlower_instructions.cpp205 ir->operands[1] = new(ir) ir_expression(ir_unop_neg, ir->operands[1]->type, in sub_to_add_neg()
206 ir->operands[1], NULL); in sub_to_add_neg()
213 assert(ir->operands[1]->type->is_float_16_32_64()); in div_to_mul_rcp()
218 ir->operands[1]->type, in div_to_mul_rcp()
219 ir->operands[1]); in div_to_mul_rcp()
224 ir->operands[1] = expr; in div_to_mul_rcp()
232 assert(ir->operands[1]->type->is_integer_32()); in int_div_to_mul_rcp()
242 ir->operands[1]->type->vector_elements, in int_div_to_mul_rcp()
243 ir->operands[1]->type->matrix_columns); in int_div_to_mul_rcp()
245 if (ir->operands[1]->type->base_type == GLSL_TYPE_INT) in int_div_to_mul_rcp()
[all …]
Dopt_rebalance_tree.cpp75 ir_rvalue *remainder = root->operands[1]; in tree_to_vine()
80 remainder_temp->operands[0]->as_expression() : NULL; in tree_to_vine()
86 ((ir_expression *)remainder)->operands[1] : NULL; in tree_to_vine()
91 ((ir_expression *)remainder)->operands[0] = tempptr->operands[1]; in tree_to_vine()
92 tempptr->operands[1] = remainder; in tree_to_vine()
94 ((ir_expression *)vine_tail)->operands[1] = tempptr; in tree_to_vine()
107 ir_expression *child = (ir_expression *)scanner->operands[1]; in compression()
108 scanner->operands[1] = child->operands[1]; in compression()
109 scanner = (ir_expression *)scanner->operands[1]; in compression()
110 child->operands[1] = scanner->operands[0]; in compression()
[all …]
/external/llvm-project/mlir/lib/Dialect/SPIRV/Serialization/
DDeserializer.cpp161 LogicalResult processCapability(ArrayRef<uint32_t> operands);
176 LogicalResult processMemoryModel(ArrayRef<uint32_t> operands);
179 LogicalResult processName(ArrayRef<uint32_t> operands);
197 LogicalResult processFunction(ArrayRef<uint32_t> operands);
202 LogicalResult processFunctionEnd(ArrayRef<uint32_t> operands);
240 LogicalResult processGlobalVariable(ArrayRef<uint32_t> operands);
262 LogicalResult processType(spirv::Opcode opcode, ArrayRef<uint32_t> operands);
264 LogicalResult processOpTypePointer(ArrayRef<uint32_t> operands);
266 LogicalResult processArrayType(ArrayRef<uint32_t> operands);
268 LogicalResult processCooperativeMatrixType(ArrayRef<uint32_t> operands);
[all …]
/external/mesa3d/src/amd/compiler/
Daco_optimizer.cpp534 if (instr->operands[0].isConstant() || in can_swap_operands()
535 (instr->operands[0].isTemp() && instr->operands[0].getTemp().type() == RegType::sgpr)) in can_swap_operands()
603 if (instr->operands.size() && instr->operands[0].isLiteral() && ctx.program->chip_class < GFX10) in can_use_VOP3()
640 …instr.reset(create_instruction<VOP3A_instruction>(tmp->opcode, format, tmp->operands.size(), tmp->… in to_VOP3()
641 std::copy(tmp->operands.cbegin(), tmp->operands.cend(), instr->operands.begin()); in to_VOP3()
687 bool check_vop3_operands(opt_ctx& ctx, unsigned num_operands, Operand *operands) in check_vop3_operands() argument
696 Operand op = operands[i]; in check_vop3_operands()
736 Operand op = instr->operands[op_index]; in parse_base_offset()
763 if (add_instr->operands[i].isConstant()) { in parse_base_offset()
764 *offset = add_instr->operands[i].constantValue(); in parse_base_offset()
[all …]
Daco_assembler.cpp50 unsigned offset = instr->operands[0].constantValue(); in emit_instruction()
106 encoding |= instr->operands.size() >= 2 ? instr->operands[1].physReg() << 8 : 0; in emit_instruction()
107 encoding |= !instr->operands.empty() ? instr->operands[0].physReg() : 0; in emit_instruction()
133 !instr->operands.empty() && instr->operands[0].physReg() <= 127 ? in emit_instruction()
134 instr->operands[0].physReg() << 16 : 0; in emit_instruction()
147 encoding |= !instr->operands.empty() ? instr->operands[0].physReg() : 0; in emit_instruction()
154 encoding |= instr->operands.size() == 2 ? instr->operands[1].physReg() << 8 : 0; in emit_instruction()
155 encoding |= !instr->operands.empty() ? instr->operands[0].physReg() : 0; in emit_instruction()
173 bool soe = instr->operands.size() >= (!instr->definitions.empty() ? 3 : 4); in emit_instruction()
181 encoding |= instr->operands.size() ? (instr->operands[0].physReg() >> 1) << 9 : 0; in emit_instruction()
[all …]
/external/clang/test/SemaOpenCL/
Dinvalid-logical-ops-1.1.cl10 int flaf = 0.0f && 0.0f; // expected-error {{invalid operands}}
11 int flof = 0.0f || 0.0f; // expected-error {{invalid operands}}
12 float fbaf = 0.0f & 0.0f; // expected-error {{invalid operands}}
13 float fbof = 0.0f | 0.0f; // expected-error {{invalid operands}}
14 float fbxf = 0.0f ^ 0.0f; // expected-error {{invalid operands}}
15 int flai = 0.0f && 0; // expected-error {{invalid operands}}
16 int floi = 0.0f || 0; // expected-error {{invalid operands}}
17 float ibaf = 0 & 0.0f; // expected-error {{invalid operands}}
18 float ibof = 0 | 0.0f; // expected-error {{invalid operands}}
25 int4 f4laf = f4 && 0.0f; // expected-error {{invalid operands}}
[all …]
Dinvalid-logical-ops-1.2.cl13 float fbaf = 0.0f & 0.0f; // expected-error {{invalid operands}}
14 float fbof = 0.0f | 0.0f; // expected-error {{invalid operands}}
15 float fbxf = 0.0f ^ 0.0f; // expected-error {{invalid operands}}
18 float ibaf = 0 & 0.0f; // expected-error {{invalid operands}}
19 float ibof = 0 | 0.0f; // expected-error {{invalid operands}}
28 float4 f4baf = f4 & 0.0f; // expected-error {{invalid operands}}
29 float4 f4bof = f4 | 0.0f; // expected-error {{invalid operands}}
30 float4 f4bxf = f4 ^ 0.0f; // expected-error {{invalid operands}}
38 double fbaf = 0.0 & 0.0; // expected-error {{invalid operands}}
39 double fbof = 0.0 | 0.0; // expected-error {{invalid operands}}
[all …]
/external/llvm-project/mlir/include/mlir/Dialect/
DCommonFolders.h30 Attribute constFoldBinaryOp(ArrayRef<Attribute> operands, in constFoldBinaryOp() argument
32 assert(operands.size() == 2 && "binary op takes two operands"); in constFoldBinaryOp()
33 if (!operands[0] || !operands[1]) in constFoldBinaryOp()
35 if (operands[0].getType() != operands[1].getType()) in constFoldBinaryOp()
38 if (operands[0].isa<AttrElementT>() && operands[1].isa<AttrElementT>()) { in constFoldBinaryOp()
39 auto lhs = operands[0].cast<AttrElementT>(); in constFoldBinaryOp()
40 auto rhs = operands[1].cast<AttrElementT>(); in constFoldBinaryOp()
44 } else if (operands[0].isa<SplatElementsAttr>() && in constFoldBinaryOp()
45 operands[1].isa<SplatElementsAttr>()) { in constFoldBinaryOp()
48 auto lhs = operands[0].cast<SplatElementsAttr>(); in constFoldBinaryOp()
[all …]
/external/llvm-project/llvm/test/MC/RISCV/
Drv32zbbp-invalid.s3 # Too few operands
4 andn t0, t1 # CHECK: :[[@LINE]]:1: error: too few operands for instruction
5 # Too few operands
6 orn t0, t1 # CHECK: :[[@LINE]]:1: error: too few operands for instruction
7 # Too few operands
8 xnor t0, t1 # CHECK: :[[@LINE]]:1: error: too few operands for instruction
9 # Too few operands
10 rol t0, t1 # CHECK: :[[@LINE]]:1: error: too few operands for instruction
11 # Too few operands
12 ror t0, t1 # CHECK: :[[@LINE]]:1: error: too few operands for instruction
[all …]
Drv32zbb-invalid.s3 # Too few operands
4 slo t0, t1 # CHECK: :[[@LINE]]:1: error: too few operands for instruction
5 # Too few operands
6 sro t0, t1 # CHECK: :[[@LINE]]:1: error: too few operands for instruction
7 # Too few operands
8 sloi t0, t1 # CHECK: :[[@LINE]]:1: error: too few operands for instruction
12 # Too few operands
13 sroi t0, t1 # CHECK: :[[@LINE]]:1: error: too few operands for instruction
17 # Too many operands
19 # Too many operands
[all …]
Drv64zbb-invalid.s3 # Too few operands
4 addiwu t0, t1 # CHECK: :[[@LINE]]:1: error: too few operands for instruction
8 # Too few operands
9 slliu.w t0, t1 # CHECK: :[[@LINE]]:1: error: too few operands for instruction
13 # Too few operands
14 addwu t0, t1 # CHECK: :[[@LINE]]:1: error: too few operands for instruction
15 # Too few operands
16 subwu t0, t1 # CHECK: :[[@LINE]]:1: error: too few operands for instruction
17 # Too few operands
18 addu.w t0, t1 # CHECK: :[[@LINE]]:1: error: too few operands for instruction
[all …]
/external/capstone/bindings/java/
DTestX86.java49 X86.OpInfo operands = (X86.OpInfo) ins.operands; in print_ins_detail() local
51 System.out.printf("\tPrefix: %s\n", array2hex(operands.prefix)); in print_ins_detail()
53 System.out.printf("\tOpcode: %s\n", array2hex(operands.opcode)); in print_ins_detail()
56 System.out.printf("\trex: 0x%x\n", operands.rex); in print_ins_detail()
59 System.out.printf("\taddr_size: %d\n", operands.addrSize); in print_ins_detail()
62 System.out.printf("\tmodrm: 0x%x\n", operands.modrm); in print_ins_detail()
65 if (operands.encoding.modrmOffset != 0) { in print_ins_detail()
66 System.out.printf("\tmodrm offset: 0x%x\n", operands.encoding.modrmOffset); in print_ins_detail()
70 System.out.printf("\tdisp: 0x%x\n", operands.disp); in print_ins_detail()
73 if (operands.encoding.dispOffset != 0) { in print_ins_detail()
[all …]
/external/llvm-project/clang/test/SemaOpenCL/
Dlogical-ops.cl15 // expected-error@-2{{invalid operands}}
19 // expected-error@-2{{invalid operands}}
21 float fbaf = 0.0f & 0.0f; // expected-error {{invalid operands}}
22 float fbof = 0.0f | 0.0f; // expected-error {{invalid operands}}
23 float fbxf = 0.0f ^ 0.0f; // expected-error {{invalid operands}}
26 // expected-error@-2{{invalid operands}}
30 // expected-error@-2{{invalid operands}}
32 …float ibaf = 0 & 0.0f; // expected-error {{invalid operands to binary expression ('int' and 'float…
33 float ibof = 0 | 0.0f; // expected-error {{invalid operands}}
45 // expected-error@-2{{invalid operands}}
[all …]
/external/capstone/arch/TMS320C64x/
DTMS320C64xInstPrinter.c153 …MI->flat_insn->detail->tms320c64x.operands[MI->flat_insn->detail->tms320c64x.op_count].type = TMS3… in printOperand()
154 MI->flat_insn->detail->tms320c64x.operands[MI->flat_insn->detail->tms320c64x.op_count].reg = reg; in printOperand()
173 …MI->flat_insn->detail->tms320c64x.operands[MI->flat_insn->detail->tms320c64x.op_count].type = TMS3… in printOperand()
174 MI->flat_insn->detail->tms320c64x.operands[MI->flat_insn->detail->tms320c64x.op_count].imm = Imm; in printOperand()
244 tms320c64x->operands[tms320c64x->op_count].type = TMS320C64X_OP_MEM; in printMemOperand()
245 tms320c64x->operands[tms320c64x->op_count].mem.base = base; in printMemOperand()
246 tms320c64x->operands[tms320c64x->op_count].mem.disp = offset; in printMemOperand()
247 tms320c64x->operands[tms320c64x->op_count].mem.unit = unit + 1; in printMemOperand()
248 tms320c64x->operands[tms320c64x->op_count].mem.scaled = scaled; in printMemOperand()
251 tms320c64x->operands[tms320c64x->op_count].mem.disptype = TMS320C64X_MEM_DISP_CONSTANT; in printMemOperand()
[all …]
/external/capstone/arch/XCore/
DXCoreInstPrinter.c68 … MI->flat_insn->detail->xcore.operands[MI->flat_insn->detail->xcore.op_count].type = XCORE_OP_REG; in XCore_insn_extract()
69 MI->flat_insn->detail->xcore.operands[MI->flat_insn->detail->xcore.op_count].reg = id; in XCore_insn_extract()
90 … MI->flat_insn->detail->xcore.operands[MI->flat_insn->detail->xcore.op_count].type = XCORE_OP_MEM; in XCore_insn_extract()
91 …MI->flat_insn->detail->xcore.operands[MI->flat_insn->detail->xcore.op_count].mem.base = (uint8_t)i… in XCore_insn_extract()
92 …MI->flat_insn->detail->xcore.operands[MI->flat_insn->detail->xcore.op_count].mem.index = XCORE_REG… in XCore_insn_extract()
93 MI->flat_insn->detail->xcore.operands[MI->flat_insn->detail->xcore.op_count].mem.disp = 0; in XCore_insn_extract()
94 MI->flat_insn->detail->xcore.operands[MI->flat_insn->detail->xcore.op_count].mem.direct = 1; in XCore_insn_extract()
109 …MI->flat_insn->detail->xcore.operands[MI->flat_insn->detail->xcore.op_count].mem.index = (uint8_t)… in XCore_insn_extract()
114 … MI->flat_insn->detail->xcore.operands[MI->flat_insn->detail->xcore.op_count].mem.disp = atoi(p2); in XCore_insn_extract()
129 … MI->flat_insn->detail->xcore.operands[MI->flat_insn->detail->xcore.op_count].type = XCORE_OP_REG; in XCore_insn_extract()
[all …]
/external/deqp-deps/amber/src/
Dclspv_helper.cc70 auto ext_inst = inst->words[inst->operands[3].offset]; in ParseExtendedInst()
74 const auto& name = helper->strings[inst->words[inst->operands[5].offset]]; in ParseExtendedInst()
80 const auto& name = helper->strings[inst->words[inst->operands[4].offset]]; in ParseExtendedInst()
90 auto kernel_id = inst->words[inst->operands[4].offset]; in ParseExtendedInst()
91 auto ordinal_id = inst->words[inst->operands[5].offset]; in ParseExtendedInst()
92 auto ds_id = inst->words[inst->operands[6].offset]; in ParseExtendedInst()
93 auto binding_id = inst->words[inst->operands[7].offset]; in ParseExtendedInst()
96 arg_name = helper->strings[inst->words[inst->operands[8].offset]]; in ParseExtendedInst()
114 auto kernel_id = inst->words[inst->operands[4].offset]; in ParseExtendedInst()
115 auto ordinal_id = inst->words[inst->operands[5].offset]; in ParseExtendedInst()
[all …]
/external/capstone/bindings/ocaml/
Docaml.c126 switch(insn[j-1].detail->arm.operands[i].type) { in _cs_disasm()
130 Store_field(tmp, 0, Val_int(insn[j-1].detail->arm.operands[i].reg)); in _cs_disasm()
134 Store_field(tmp, 0, Val_int(insn[j-1].detail->arm.operands[i].imm)); in _cs_disasm()
138 Store_field(tmp, 0, Val_int(insn[j-1].detail->arm.operands[i].imm)); in _cs_disasm()
142 Store_field(tmp, 0, Val_int(insn[j-1].detail->arm.operands[i].imm)); in _cs_disasm()
146 Store_field(tmp, 0, caml_copy_double(insn[j-1].detail->arm.operands[i].fp)); in _cs_disasm()
151 Store_field(tmp3, 0, Val_int(insn[j-1].detail->arm.operands[i].mem.base)); in _cs_disasm()
152 Store_field(tmp3, 1, Val_int(insn[j-1].detail->arm.operands[i].mem.index)); in _cs_disasm()
153 Store_field(tmp3, 2, Val_int(insn[j-1].detail->arm.operands[i].mem.scale)); in _cs_disasm()
154 Store_field(tmp3, 3, Val_int(insn[j-1].detail->arm.operands[i].mem.disp)); in _cs_disasm()
[all …]
/external/llvm-project/mlir/test/mlir-tblgen/
Dop-python-bindings.td23 // CHECK: operands = []
27 // CHECK: operands += [*variadic1]
29 // CHECK: operands.append(non_variadic)
31 // CHECK: if variadic2 is not None: operands.append(variadic2)
36 …// CHECK: "test.attr_sized_operands", attributes=attributes, operands=operands, results=result…
42 // CHECK: self.operation.operands,
49 // CHECK: self.operation.operands,
56 // CHECK: self.operation.operands,
69 // CHECK: operands = []
82 …// CHECK: "test.attr_sized_results", attributes=attributes, operands=operands, results=results,
[all …]
/external/capstone/arch/ARM/
DARMInstPrinter.c149 MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_MEM; in set_mem_access()
150 …MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.base = ARM_REG_INVALI… in set_mem_access()
151 …MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.index = ARM_REG_INVAL… in set_mem_access()
152 MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.scale = 1; in set_mem_access()
153 MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].mem.disp = 0; in set_mem_access()
157 MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].access = access; in set_mem_access()
169 MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].type = ARM_OP_IMM; in op_addImm()
170 MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].imm = v; in op_addImm()
215 …MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count].shift.type = (arm_shifter… in printRegImmShift()
217 …MI->flat_insn->detail->arm.operands[MI->flat_insn->detail->arm.op_count - 1].shift.type = (arm_shi… in printRegImmShift()
[all …]
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_rematerialization_test_utils_test.cc46 EXPECT_THAT(instructions[1]->operands(), in TEST_F()
49 EXPECT_THAT(instructions[2]->operands(), in TEST_F()
52 EXPECT_THAT(instructions[3]->operands(), in TEST_F()
55 EXPECT_THAT(instructions[4]->operands(), in TEST_F()
58 EXPECT_THAT(instructions[5]->operands(), in TEST_F()
61 EXPECT_THAT(instructions[6]->operands(), in TEST_F()
64 EXPECT_THAT(instructions[7]->operands(), in TEST_F()
80 EXPECT_THAT(instructions[1]->operands(), in TEST_F()
83 EXPECT_THAT(instructions[2]->operands(), in TEST_F()
86 EXPECT_THAT(instructions[3]->operands(), in TEST_F()
[all …]

12345678910>>...135