Searched defs:operand1 (Results 1 - 11 of 11) sorted by relevance

/external/v8/src/interpreter/
H A Dbytecode-pipeline.cc26 uint32_t operand1) {
30 operands_[1] = operand1;
34 uint32_t operand1, uint32_t operand2) {
38 operands_[1] = operand1;
43 uint32_t operand1, uint32_t operand2,
48 operands_[1] = operand1;
25 BytecodeNode(Bytecode bytecode, uint32_t operand0, uint32_t operand1) argument
33 BytecodeNode(Bytecode bytecode, uint32_t operand0, uint32_t operand1, uint32_t operand2) argument
42 BytecodeNode(Bytecode bytecode, uint32_t operand0, uint32_t operand1, uint32_t operand2, uint32_t operand3) argument
H A Dbytecode-register-optimizer.cc338 uint32_t operand1 = static_cast<uint32_t>(output.ToOperand()); local
339 BytecodeNode node(Bytecode::kMov, operand0, operand1);
H A Dbytecode-array-builder.cc114 uint32_t operand1, uint32_t operand2,
116 DCHECK(OperandsAreValid(bytecode, 4, operand0, operand1, operand2, operand3));
117 BytecodeNode node(bytecode, operand0, operand1, operand2, operand3);
123 uint32_t operand1, uint32_t operand2) {
124 DCHECK(OperandsAreValid(bytecode, 3, operand0, operand1, operand2));
125 BytecodeNode node(bytecode, operand0, operand1, operand2);
131 uint32_t operand1) {
132 DCHECK(OperandsAreValid(bytecode, 2, operand0, operand1));
133 BytecodeNode node(bytecode, operand0, operand1);
680 Bytecode bytecode, int operand_count, uint32_t operand0, uint32_t operand1,
113 Output(Bytecode bytecode, uint32_t operand0, uint32_t operand1, uint32_t operand2, uint32_t operand3) argument
122 Output(Bytecode bytecode, uint32_t operand0, uint32_t operand1, uint32_t operand2) argument
130 Output(Bytecode bytecode, uint32_t operand0, uint32_t operand1) argument
679 OperandsAreValid( Bytecode bytecode, int operand_count, uint32_t operand0, uint32_t operand1, uint32_t operand2, uint32_t operand3) const argument
[all...]
/external/google-breakpad/src/processor/
H A Dpostfix_evaluator-inl.h103 ValueType operand1 = ValueType(); local
105 if (!PopValues(&operand1, &operand2)) {
115 result = operand1 + operand2;
118 result = operand1 - operand2;
121 result = operand1 * operand2;
124 result = operand1 / operand2;
127 result = operand1 % operand2;
131 operand1 & (static_cast<ValueType>(-1) ^ (operand2 - 1));
/external/v8/test/unittests/interpreter/
H A Dbytecode-array-writer-unittest.cc34 void Write(Bytecode bytecode, uint32_t operand0, uint32_t operand1,
37 void Write(Bytecode bytecode, uint32_t operand0, uint32_t operand1,
40 void Write(Bytecode bytecode, uint32_t operand0, uint32_t operand1,
81 uint32_t operand1,
83 BytecodeNode node(bytecode, operand0, operand1);
88 uint32_t operand1, uint32_t operand2,
90 BytecodeNode node(bytecode, operand0, operand1, operand2);
95 uint32_t operand1, uint32_t operand2,
98 BytecodeNode node(bytecode, operand0, operand1, operand2, operand3);
80 Write(Bytecode bytecode, uint32_t operand0, uint32_t operand1, const BytecodeSourceInfo& info) argument
87 Write(Bytecode bytecode, uint32_t operand0, uint32_t operand1, uint32_t operand2, const BytecodeSourceInfo& info) argument
94 Write(Bytecode bytecode, uint32_t operand0, uint32_t operand1, uint32_t operand2, uint32_t operand3, const BytecodeSourceInfo& info) argument
H A Dbytecodes-unittest.cc27 uint32_t operand1 = Register(i).ToOperand(); local
28 Register reg1 = Register::FromOperand(operand1);
/external/libunwind/src/dwarf/
H A DGexpr.c193 unw_word_t operand1 = 0, operand2 = 0, tmp1, tmp2, tmp3, end_addr; local
255 &operand1, arg)) < 0)
293 (int) opcode - DW_OP_breg0, (unsigned long) operand1);
298 push (tmp1 + operand1);
303 (int) operand1, (unsigned long) operand2);
305 dwarf_to_unw_regnum (operand1), &tmp1)) < 0)
327 Debug (15, "OP_regx(r%d)\n", (int) operand1);
328 *valp = dwarf_to_unw_regnum (operand1);
340 Debug (15, "OP_const(0x%lx)\n", (unsigned long) operand1);
341 push (operand1);
[all...]
/external/ltrace/sysdeps/linux-gnu/arm/
H A Dtrace.c173 uint32_t operand1, operand2, result = 0; local
204 (proc, BITS(this_instr, 16, 19), &operand1) < 0)
223 result = operand1 & operand2;
227 result = operand1 ^ operand2;
231 result = operand1 - operand2;
235 result = operand2 - operand1;
239 result = operand1 + operand2;
243 result = operand1 + operand2 + c;
247 result = operand1 - operand2 + c;
251 result = operand2 - operand1
[all...]
/external/v8/src/compiler/ia32/
H A Dinstruction-selector-ia32.cc183 InstructionOperand operand1 = g.Use(node->InputAt(1)); local
185 selector->Emit(avx_opcode, g.DefineAsRegister(node), operand0, operand1);
187 selector->Emit(sse_opcode, g.DefineSameAsFirst(node), operand0, operand1);
/external/v8/src/compiler/x64/
H A Dinstruction-selector-x64.cc1122 InstructionOperand operand1 = g.Use(node->InputAt(1)); local
1124 selector->Emit(avx_opcode, g.DefineAsRegister(node), operand0, operand1);
1126 selector->Emit(sse_opcode, g.DefineSameAsFirst(node), operand0, operand1);
/external/vixl/src/vixl/a64/
H A Dlogic-a64.cc1269 uint64_t operand1 = dst.Uint(vform, i); local
1272 uint64_t result = operand1 ^ ((operand1 ^ operand3) & operand2);
1285 uint64_t operand1 = dst.Uint(vform, i); local
1288 uint64_t result = operand1 ^ ((operand1 ^ operand3) & operand2);
1301 uint64_t operand1 = src2.Uint(vform, i); local
1304 uint64_t result = operand1 ^ ((operand1 ^ operand3) & operand2);

Completed in 433 milliseconds