Searched refs:operand (Results 101 - 125 of 356) sorted by relevance

1234567891011>>

/external/chromium_org/v8/src/arm64/
H A Dmacro-assembler-arm64.cc57 const Operand& operand,
61 if (operand.NeedsRelocation(this)) {
63 Ldr(temp, operand.immediate());
66 } else if (operand.IsImmediate()) {
67 int64_t immediate = operand.ImmediateValue();
141 } else if (operand.IsExtendedRegister()) {
142 DCHECK(operand.reg().SizeInBits() <= rd.SizeInBits());
145 DCHECK(operand.shift_amount() <= 4);
146 DCHECK(operand.reg().Is64Bits() ||
147 ((operand
55 LogicalMacro(const Register& rd, const Register& rn, const Operand& operand, LogicalOp op) argument
240 Mov(const Register& rd, const Operand& operand, DiscardMoveMode discard_mode) argument
296 Mvn(const Register& rd, const Operand& operand) argument
348 ConditionalCompareMacro(const Register& rn, const Operand& operand, StatusFlags nzcv, Condition cond, ConditionalCompareOp op) argument
378 Csel(const Register& rd, const Register& rn, const Operand& operand, Condition cond) argument
475 AddSubMacro(const Register& rd, const Register& rn, const Operand& operand, FlagsUpdate S, AddSubOp op) argument
511 AddSubWithCarryMacro(const Register& rd, const Register& rn, const Operand& operand, FlagsUpdate S, AddSubWithCarryOp op) argument
[all...]
H A Dassembler-arm64.h633 // Represents an operand in a machine instruction.
670 // This returns an LSL shift (<= 4) operand as an equivalent extend operand,
697 // MemOperand represents a memory operand in a load or store instruction.
1088 const Operand& operand);
1093 const Operand& operand);
1096 void cmn(const Register& rn, const Operand& operand);
1101 const Operand& operand);
1106 const Operand& operand);
1109 void cmp(const Register& rn, const Operand& operand);
[all...]
H A Dmacro-assembler-arm64.h142 const Operand& operand);
145 const Operand& operand);
148 const Operand& operand);
151 const Operand& operand);
154 const Operand& operand);
157 const Operand& operand);
160 const Operand& operand);
163 const Operand& operand);
164 inline void Tst(const Register& rn, const Operand& operand);
167 const Operand& operand,
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Dbignum.h54 void AddUInt16(uint16_t operand);
55 void AddUInt64(uint64_t operand);
/external/chromium_org/third_party/mach_override/libudis86/
H A Dudis86.c197 * Return the operand struct representing the nth operand of
199 * there's no such operand.
205 if (n > 2 || u->operand[n].type == UD_NONE) {
208 return &u->operand[n];
215 * Returns non-zero if the given operand is of a segment register type.
229 * Returns non-zero if the given operand is of a general purpose
/external/chromium_org/v8/src/
H A Dbignum.h28 void AddUInt16(uint16_t operand);
29 void AddUInt64(uint64_t operand);
H A Dhydrogen-escape-analysis.cc91 HValue* operand = old_state->OperandAt(index); local
92 HPhi* phi = NewPhiAndInsert(block, operand, index);
105 HValue* operand = old_state->OperandAt(index); local
106 state->SetOperandAt(index, operand);
271 HValue* operand = state->OperandAt(index); local
274 // Phi already exists, add operand.
276 phi->SetOperandAt(succ->PredecessorIndexOf(block), operand);
277 } else if (succ_operand != operand) {
280 phi->SetOperandAt(succ->PredecessorIndexOf(block), operand);
/external/chromium_org/v8/src/compiler/
H A Dregister-allocator.h155 UsePosition(LifetimePosition pos, InstructionOperand* operand,
158 InstructionOperand* operand() const { return operand_; } function in class:v8::internal::compiler::UsePosition
265 void SetSpillOperand(InstructionOperand* operand);
279 void AddUsePosition(LifetimePosition pos, InstructionOperand* operand,
398 InstructionOperand* AllocateFixed(UnallocatedOperand* operand, int pos,
400 LiveRange* LiveRangeFor(InstructionOperand* operand);
401 void Define(LifetimePosition position, InstructionOperand* operand,
404 InstructionOperand* operand, InstructionOperand* hint);
H A Dregister-allocator.cc25 UsePosition::UsePosition(LifetimePosition pos, InstructionOperand* operand, argument
27 : operand_(operand),
133 void LiveRange::SetSpillOperand(InstructionOperand* operand) { argument
134 DCHECK(!operand->IsUnallocated());
137 spill_operand_->ConvertTo(operand->kind(), operand->index());
411 InstructionOperand* operand,
415 UsePosition* use_pos = new (zone) UsePosition(pos, operand, hint);
449 use_pos->operand()->ConvertTo(op->kind(), op->index());
584 UnallocatedOperand* operand, in
410 AddUsePosition(LifetimePosition pos, InstructionOperand* operand, InstructionOperand* hint, Zone* zone) argument
583 AllocateFixed( UnallocatedOperand* operand, int pos, bool is_tagged) argument
661 LiveRangeFor(InstructionOperand* operand) argument
674 Define(LifetimePosition position, InstructionOperand* operand, InstructionOperand* hint) argument
695 Use(LifetimePosition block_start, LifetimePosition position, InstructionOperand* operand, InstructionOperand* hint) argument
1080 UnallocatedOperand* operand = local
1498 InstructionOperand* operand = cur->CreateAssignedOperand(code_zone()); local
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DMethodAdapter.java97 public void visitIntInsn(final int opcode, final int operand) { argument
98 mv.visitIntInsn(opcode, operand);
H A DMethodVisitor.java104 * Visits the current state of the local variables and operand stack
109 * values of the local variables and of the operand stack elements <i>just
147 * @param nStack the number of operand stack elements in the visited frame.
148 * @param stack the operand stack types in this frame. This array must not
163 * Visits a zero operand instruction.
183 * Visits an instruction with a single int operand.
187 * @param operand the operand of the instruction to be visited.<br> When
188 * opcode is BIPUSH, operand value should be between Byte.MIN_VALUE
189 * and Byte.MAX_VALUE.<br> When opcode is SIPUSH, operand valu
197 visitIntInsn(int opcode, int operand) argument
[all...]
/external/vixl/src/a64/
H A Dassembler-a64.h496 // This returns an LSL shift (<= 4) operand as an equivalent extend operand,
740 const Operand& operand);
745 const Operand& operand);
748 void cmn(const Register& rn, const Operand& operand);
753 const Operand& operand);
758 const Operand& operand);
761 void cmp(const Register& rn, const Operand& operand);
765 const Operand& operand);
769 const Operand& operand);
[all...]
H A Dmacro-assembler-a64.h101 const Operand& operand);
104 const Operand& operand);
107 const Operand& operand);
110 const Operand& operand);
113 const Operand& operand);
116 const Operand& operand);
119 const Operand& operand);
122 const Operand& operand);
123 void Tst(const Register& rn, const Operand& operand);
126 const Operand& operand,
[all...]
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DValidateLimitations.h42 bool validateOperation(TIntermOperator *node, TIntermNode *operand);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_debug.cpp361 const MCOperand &operand = Inst.getOperand(i); local
362 if (operand.isImm()) {
376 jump = pc + operand.getImm();
382 jump = (uint64_t)operand.getImm();
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/
H A Dbin-farabs.asm30 jmp near 0040h:001Eh ; Illegal in NASM ("mismatch in operand sizes")
48 jmp far 0040h:001Eh ; Illegal in NASM ("mismatch in operand sizes")
/external/llvm/test/MC/AArch64/
H A Darm64-optional-hash.s19 ; Barrier operand
/external/llvm/test/MC/SystemZ/
H A Dtokens.s16 #CHECK: error: invalid operand
20 #CHECK: error: invalid operand
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_debug.cpp361 const MCOperand &operand = Inst.getOperand(i); local
362 if (operand.isImm()) {
376 jump = pc + operand.getImm();
382 jump = (uint64_t)operand.getImm();
/external/valgrind/main/memcheck/tests/x86/
H A Dpushfpopf_s.S17 # flags are now undef if either operand is
/external/llvm/test/MC/ARM/
H A Dthumb-diagnostics.s29 @ CHECK-ERRORS: error: invalid operand for instruction
36 error: invalid operand for instruction
39 error: invalid operand for instruction
52 @CHECK-ERRORS: error: invalid operand for instruction
110 @ CHECK-ERRORS: error: invalid operand for instruction
113 @ CHECK-ERRORS: error: invalid operand for instruction
141 @ CHECK-ERRORS: error: invalid operand for instruction
/external/llvm/lib/Target/X86/Disassembler/
H A DX86Disassembler.cpp170 /// register, and appends it as an operand to an MCInst.
186 /// tryAddingSymbolicOperand - trys to add a symbolic operand in place of the
200 /// an MCExpr and that is added as an operand to the MCInst. If getOpInfo()
204 /// if it adds an operand to the MCInst and false otherwise.
236 /// translateSrcIndex - Appends a source index operand to an MCInst.
260 /// translateDstIndex - Appends a destination index operand to an MCInst.
281 /// translateImmediate - Appends an immediate operand to an MCInst.
285 /// @param operand - The operand, as stored in the descriptor table.
288 const OperandSpecifier &operand,
287 translateImmediate(MCInst &mcInst, uint64_t immediate, const OperandSpecifier &operand, InternalInstruction &insn, const MCDisassembler *Dis) argument
625 translateRM(MCInst &mcInst, const OperandSpecifier &operand, InternalInstruction &insn, const MCDisassembler *Dis) argument
708 translateOperand(MCInst &mcInst, const OperandSpecifier &operand, InternalInstruction &insn, const MCDisassembler *Dis) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dopt_algebraic.cpp66 ir_rvalue *operand);
172 * we may need to swizzle that operand out to a vector if the expression was
177 ir_rvalue *operand)
179 if (expr->type->is_vector() && operand->type->is_scalar()) {
180 return new(mem_ctx) ir_swizzle(operand, 0, 0, 0, 0,
183 return operand;
176 swizzle_if_required(ir_expression *expr, ir_rvalue *operand) argument
/external/mesa3d/src/glsl/
H A Dopt_algebraic.cpp66 ir_rvalue *operand);
172 * we may need to swizzle that operand out to a vector if the expression was
177 ir_rvalue *operand)
179 if (expr->type->is_vector() && operand->type->is_scalar()) {
180 return new(mem_ctx) ir_swizzle(operand, 0, 0, 0, 0,
183 return operand;
176 swizzle_if_required(ir_expression *expr, ir_rvalue *operand) argument
/external/chromium_org/v8/src/compiler/ia32/
H A Dcode-generator-ia32.cc57 Immediate ToImmediate(InstructionOperand* operand) { argument
58 Constant constant = ToConstant(operand);
306 // TODO(turbofan): IA32 SSE LoadUint32() should take an operand.
317 Operand operand = i.MemoryOperand(&index); local
319 __ mov_b(operand, i.InputInt8(index));
321 __ mov_b(operand, i.InputRegister(index));
333 Operand operand = i.MemoryOperand(&index); local
335 __ mov_w(operand, i.InputInt16(index));
337 __ mov_w(operand, i.InputRegister(index));
346 Operand operand local
359 Operand operand = i.MemoryOperand(&index); local
369 Operand operand = i.MemoryOperand(&index); local
[all...]

Completed in 1090 milliseconds

1234567891011>>