Searched refs:op1 (Results 1 - 25 of 68) sorted by relevance

123

/macosx-10.10/cxxfilt-11/cxxfilt/opcodes/
H A Dmsp430-dis.c289 char *op1,
329 sprintf (op1, "r%d", regd);
340 sprintf (op1, "0x%04x", PS (dst));
355 sprintf (op1, "&0x%04x", PS (dst));
363 sprintf (op1, "%d(r%d)", dst, regd);
387 sprintf (op1, "#0");
393 sprintf (op1, "r%d", regs);
402 sprintf (op1, "#4");
407 sprintf (op1, "#2");
415 sprintf (op1, "
285 msp430_doubleoperand(disassemble_info *info, struct msp430_opcode_s *opcode, bfd_vma addr, unsigned short insn, char *op1, char *op2, char *comm1, char *comm2, int *cycles) argument
538 msp430_branchinstr(disassemble_info *info, struct msp430_opcode_s *opcode ATTRIBUTE_UNUSED, bfd_vma addr ATTRIBUTE_UNUSED, unsigned short insn, char *op1, char *comm1, int *cycles) argument
670 char op1[32], op2[32], comm1[64], comm2[64]; local
[all...]
H A Dsparc-dis.c250 sparc_opcode *op1 = * (sparc_opcode **) b; local
251 unsigned long int match0 = op0->match, match1 = op1->match;
252 unsigned long int lose0 = op0->lose, lose1 = op1->lose;
262 if (! (op1->architecture & current_arch_mask))
267 if (op1->architecture & current_arch_mask)
269 else if (op0->architecture != op1->architecture)
270 return op0->architecture - op1->architecture;
292 op1->name, match1, lose1);
293 op1->lose &= ~op1
[all...]
H A Davr-dis.c266 char op1[20], op2[20], comment1[40], comment2[40]; local
315 op1[0] = 0;
337 ok = avr_operand (insn, insn2, addr, *op, op1, comment1, 0, &sym_op1, &sym_addr1);
348 sprintf (op1, "0x%04x", insn);
356 if (*op1)
357 (*prin) (stream, "\t%s", op1);
H A Dd30v-dis.c37 int op1 = (num >> 25) & 0x7; local
44 if ((op->op1 == op1) && (op->op2 == op2))
53 while (op->op1 == op1 && op->op2 == op2)
/macosx-10.10/JavaScriptCore-7600.1.17/jit/
H A DJITArithmetic.cpp48 int op1 = currentInstruction[1].u.operand; local
52 emit_compareAndJump(op_jless, op1, op2, target, LessThan);
57 int op1 = currentInstruction[1].u.operand; local
61 emit_compareAndJump(op_jlesseq, op1, op2, target, LessThanOrEqual);
66 int op1 = currentInstruction[1].u.operand; local
70 emit_compareAndJump(op_jgreater, op1, op2, target, GreaterThan);
75 int op1 = currentInstruction[1].u.operand; local
79 emit_compareAndJump(op_jgreatereq, op1, op2, target, GreaterThanOrEqual);
84 int op1 = currentInstruction[1].u.operand; local
88 emit_compareAndJump(op_jnless, op1, op
93 int op1 = currentInstruction[1].u.operand; local
102 int op1 = currentInstruction[1].u.operand; local
111 int op1 = currentInstruction[1].u.operand; local
120 int op1 = currentInstruction[1].u.operand; local
129 int op1 = currentInstruction[1].u.operand; local
138 int op1 = currentInstruction[1].u.operand; local
147 int op1 = currentInstruction[1].u.operand; local
156 int op1 = currentInstruction[1].u.operand; local
165 int op1 = currentInstruction[1].u.operand; local
174 int op1 = currentInstruction[1].u.operand; local
183 int op1 = currentInstruction[1].u.operand; local
228 int op1 = currentInstruction[2].u.operand; local
253 int op1 = currentInstruction[2].u.operand; local
310 int op1 = currentInstruction[2].u.operand; local
367 int op1 = currentInstruction[2].u.operand; local
385 emit_compareAndJump(OpcodeID, int op1, int op2, unsigned target, RelationalCondition condition) argument
429 emit_compareAndJumpSlow(int op1, int op2, unsigned target, DoubleCondition condition, size_t (JIT_OPERATION *operation)(ExecState*, EncodedJSValue, EncodedJSValue), bool invert, Vector<SlowCaseEntry>::iterator& iter) argument
532 int op1 = currentInstruction[2].u.operand; local
610 int op1 = currentInstruction[2].u.operand; local
666 compileBinaryArithOp(OpcodeID opcodeID, int, int op1, int op2, OperandTypes) argument
705 compileBinaryArithOpSlowCase(Instruction* currentInstruction, OpcodeID opcodeID, Vector<SlowCaseEntry>::iterator& iter, int result, int op1, int op2, OperandTypes types, bool op1HasImmediateIntFastCase, bool op2HasImmediateIntFastCase) argument
791 int op1 = currentInstruction[2].u.operand; local
821 int op1 = currentInstruction[2].u.operand; local
838 int op1 = currentInstruction[2].u.operand; local
867 int op1 = currentInstruction[2].u.operand; local
879 int op1 = currentInstruction[2].u.operand; local
954 int op1 = currentInstruction[2].u.operand; local
978 int op1 = currentInstruction[2].u.operand; local
989 int op1 = currentInstruction[2].u.operand; local
[all...]
H A DJITArithmetic32_64.cpp80 void JIT::emit_compareAndJump(OpcodeID opcode, int op1, int op2, unsigned target, RelationalCondition condition) argument
86 if (isOperandConstantImmediateChar(op1)) {
92 addJump(branch32(commute(condition), regT0, Imm32(asString(getConstantOperand(op1))->tryGetValue()[0])), target);
96 emitLoad(op1, regT1, regT0);
104 if (isOperandConstantImmediateInt(op1)) {
107 addJump(branch32(commute(condition), regT2, Imm32(getConstantOperand(op1).asInt32())), target);
109 emitLoad(op1, regT1, regT0);
113 emitLoad2(op1, regT1, regT0, op2, regT3, regT2);
127 emitBinaryDoubleOp(opcode, target, op1, op2, OperandTypes(), notInt32Op1, notInt32Op2, !isOperandConstantImmediateInt(op1), isOperandConstantImmediateIn
131 emit_compareAndJumpSlow(int op1, int op2, unsigned target, DoubleCondition, size_t (JIT_OPERATION *operation)(ExecState*, EncodedJSValue, EncodedJSValue), bool invert, Vector<SlowCaseEntry>::iterator& iter) argument
163 int op1 = currentInstruction[2].u.operand; local
184 int op1 = currentInstruction[2].u.operand; local
200 int op1 = currentInstruction[2].u.operand; local
232 int op1 = currentInstruction[2].u.operand; local
310 int op1 = currentInstruction[2].u.operand; local
333 int op1 = currentInstruction[2].u.operand; local
355 int op1 = currentInstruction[2].u.operand; local
371 int op1 = currentInstruction[2].u.operand; local
393 int op1 = currentInstruction[2].u.operand; local
409 int op1 = currentInstruction[2].u.operand; local
431 int op1 = currentInstruction[2].u.operand; local
487 int op1 = currentInstruction[2].u.operand; local
557 int op1 = currentInstruction[2].u.operand; local
604 int op1 = currentInstruction[2].u.operand; local
694 emitBinaryDoubleOp(OpcodeID opcodeID, int dst, int op1, int op2, OperandTypes types, JumpList& notInt32Op1, JumpList& notInt32Op2, bool op1IsInRegisters, bool op2IsInRegisters) argument
915 int op1 = currentInstruction[2].u.operand; local
949 int op1 = currentInstruction[2].u.operand; local
992 int op1 = currentInstruction[2].u.operand; local
1074 int op1 = currentInstruction[2].u.operand; local
[all...]
/macosx-10.10/tcl-105/tcl_ext/ffidl/ffidl/demos/other/
H A Dtest-gmpq.tcl9 foreach {op op1 op2 result} {
22 if {[string compare [$op $op1 $op2] $result] != 0} {
23 puts "\[$op $op1 $op2\] == [$op $op1 $op2] instead of $result"
31 foreach {op op1 result} {
35 if {[string compare [$op $op1] $result] != 0} {
36 puts "\[$op $op1\] == [$op $op1] instead of $result"
H A Dtest-gmpz.tcl9 foreach {op op1 op2 result} {
28 if {[string compare [$op $op1 $op2] $result] != 0} {
29 puts "\[$op $op1 $op2\] == [$op $op1 $op2] instead of $result"
37 foreach {op op1 result} {
47 if {[string compare [$op $op1] $result] != 0} {
48 puts "\[$op $op1\] == [$op $op1] instead of $result"
/macosx-10.10/JavaScriptCore-7600.1.17/parser/
H A DResultType.h115 static ResultType forAdd(ResultType op1, ResultType op2) argument
117 if (op1.definitelyIsNumber() && op2.definitelyIsNumber())
119 if (op1.definitelyIsString() || op2.definitelyIsString())
126 static ResultType forLogicalOp(ResultType op1, ResultType op2) argument
128 if (op1.definitelyIsBoolean() && op2.definitelyIsBoolean())
130 if (op1.definitelyIsNumber() && op2.definitelyIsNumber())
132 if (op1.definitelyIsString() && op2.definitelyIsString())
/macosx-10.10/dcerpc-61/dcerpc/idl_compiler/
H A Dastp_exp.c267 AST_exp_n_t * op1 = exp->exp.expression.oper1; local
269 AST_exp_n_t * ident_exp = op1->exp.expression.oper1;
270 long nval = ASTP_expr_integer_value(location, op1->exp.expression.oper2);
342 AST_exp_n_t * op1=NULL, *op2=NULL, *op3=NULL; local
367 op1 = exp->exp.expression.oper1;
369 if (op1->exp.constant.type == AST_nil_const_k &&
370 op1->exp.constant.val.other == NULL) {
371 op1->exp.constant.val.other =
374 op1->exp.constant.name,
376 if (op1
[all...]
/macosx-10.10/cxxfilt-11/cxxfilt/bfd/
H A Dvms-tir.c523 long op1, op2;
536 op1 = (long) _bfd_vms_pop (abfd, NULL);
538 _bfd_vms_push (abfd, (uquad) (op1 + op2), -1);
542 op1 = (long) _bfd_vms_pop (abfd, NULL);
544 _bfd_vms_push (abfd, (uquad) (op2 - op1), -1);
548 op1 = (long) _bfd_vms_pop (abfd, NULL);
550 _bfd_vms_push (abfd, (uquad) (op1 * op2), -1);
554 op1 = (long) _bfd_vms_pop (abfd, NULL);
559 _bfd_vms_push (abfd, (uquad) (op2 / op1), -1);
563 op1
521 long op1, op2; local
1316 long op1, op2; local
1393 op2 >>= op1; local
1395 op2 <<= op1; local
1405 op2 >>= op1; local
1407 op2 <<= op1; local
1417 op2 >>= op1; local
1419 op2 <<= op1; local
[all...]
/macosx-10.10/BerkeleyDB-21/db/test/
H A Dfop006.tcl46 # Set up cases where op1 is successful.
49 foreach op1 $ops {
52 $op1 $op2 $exists $noexist\
59 # Set up evil two-op cases (op1 fails). Omit open_create
60 # and truncate from op1 list -- open_create always succeeds
63 foreach op1 { rename remove open open_excl } {
65 append cases " " [create_badtests $op1 $op2 \
72 # {{op1 {args} result end} {op2 {args} result}}
97 set op1 [lindex [lindex $case 0] 0]
106 puts "\tFop$tnum.$testid: $op1 (
[all...]
H A Dfoputils.tcl222 proc create_tests { op1 op2 exists noexist open retval { end1 "" } } {
224 switch $op1 {
232 set op1ret [list $op1 "$from $to" 0 $end1]
243 set op1ret [list $op1 $from 0 $end1]
254 set op1ret [list $op1 $from 0 $end1]
268 set op1ret [list $op1 $from 0 $end1]
290 proc create_badtests { op1 op2 exists noexist open retval {end1 ""} } {
292 switch $op1 {
301 [list $op1 "$to $to" "no such file" $end1]
303 [list $op1 "
[all...]
H A Dfop001.tcl36 # Set up all sensible two-op cases (op1 succeeds).
38 foreach op1 {rename remove open open_excl \
41 append cases " " [create_tests $op1 $op2 \
47 # Set up evil two-op cases (op1 fails). Omit open_create
48 # and truncate from op1 list -- open_create always succeeds
51 foreach op1 { rename remove open open_excl } {
53 append cases " " [create_badtests $op1 $op2 \
60 # {{op1 {names1} result end1} {op2 {names2} result}}
83 set op1 [lindex [lindex $case 0] 0]
91 puts "\tFop$tnum.$testid: $op1 (
[all...]
H A Drecd005.tcl45 set op1 [lindex $ops 0]
47 puts "\tRecd005.$tnum: $s1 $s2 $op1 $op2"
71 $testdir $method $dbenv $env_cmd $testfile1 $s1 $op1
76 check_file $testdir $env_cmd $testfile1 $op1
98 if { $op1 == "abort" } {
133 check_file $testdir $env_cmd $testfile1 $op1
H A Drep075.tcl195 set op1 commit
198 set op1 abort
203 set op1 commit
206 set op1 abort
210 set oplist [list $op1 $op2]
327 puts "\tRep$tnum.c.0: Resolve ($op1 $op2) and recover master."
328 error_check_good resolve1 [$txn1 $op1] 0
473 if { $op1 == "commit" } {
/macosx-10.10/JavaScriptCore-7600.1.17/dfg/
H A DDFGNode.h1620 static bool shouldSpeculateBoolean(Node* op1, Node* op2) argument
1622 return op1->shouldSpeculateBoolean() && op2->shouldSpeculateBoolean();
1625 static bool shouldSpeculateInt32(Node* op1, Node* op2) argument
1627 return op1->shouldSpeculateInt32() && op2->shouldSpeculateInt32();
1630 static bool shouldSpeculateInt32OrBoolean(Node* op1, Node* op2) argument
1632 return op1->shouldSpeculateInt32OrBoolean()
1636 static bool shouldSpeculateInt32OrBooleanForArithmetic(Node* op1, Node* op2) argument
1638 return op1->shouldSpeculateInt32OrBooleanForArithmetic()
1642 static bool shouldSpeculateInt32OrBooleanExpectingDefined(Node* op1, Node* op2) argument
1644 return op1
1648 shouldSpeculateMachineInt(Node* op1, Node* op2) argument
1653 shouldSpeculateNumber(Node* op1, Node* op2) argument
1658 shouldSpeculateNumberOrBoolean(Node* op1, Node* op2) argument
1664 shouldSpeculateNumberOrBooleanExpectingDefined(Node* op1, Node* op2) argument
1670 shouldSpeculateFinalObject(Node* op1, Node* op2) argument
1675 shouldSpeculateArray(Node* op1, Node* op2) argument
[all...]
H A DDFGSpeculativeJIT.cpp1032 SpeculativeJIT* jit, ReuseTag, JSValueOperand& op1, WhichValueWord which)
1036 if (!op1.isDouble() && m_jit->canReuse(op1.node()))
1037 m_gpr = m_jit->reuse(op1.gpr(which));
1085 FPRTemporary::FPRTemporary(SpeculativeJIT* jit, SpeculateDoubleOperand& op1) argument
1089 if (m_jit->canReuse(op1.node()))
1090 m_fpr = m_jit->reuse(op1.fpr());
1095 FPRTemporary::FPRTemporary(SpeculativeJIT* jit, SpeculateDoubleOperand& op1, SpeculateDoubleOperand& op2) argument
1099 if (m_jit->canReuse(op1.node()))
1100 m_fpr = m_jit->reuse(op1
1031 GPRTemporary( SpeculativeJIT* jit, ReuseTag, JSValueOperand& op1, WhichValueWord which) argument
1108 FPRTemporary(SpeculativeJIT* jit, JSValueOperand& op1) argument
[all...]
H A DDFGByteCodeParser.cpp2228 Node* op1 = getThis();
2229 if (op1->op() != ToThis) {
2236 || (op1->op() == GetLocal && op1->variableAccessData()->structureCheckHoistingFailed())) {
2237 setThis(addToGraph(ToThis, op1));
2242 op1);
2341 Node* op1 = get(VirtualRegister(currentInstruction[2].u.operand));
2343 set(VirtualRegister(currentInstruction[1].u.operand), addToGraph(BitAnd, op1, op2));
2348 Node* op1 = get(VirtualRegister(currentInstruction[2].u.operand));
2350 set(VirtualRegister(currentInstruction[1].u.operand), addToGraph(BitOr, op1, op
[all...]
/macosx-10.10/awk-20/src/
H A Dawkgram.y283 | NOT re { $$ = op1(NOT, notnull($2)); }
360 | '-' term %prec UMINUS { $$ = op1(UMINUS, $2); }
362 | NOT term %prec UMINUS { $$ = op1(NOT, notnull($2)); }
368 | CLOSE term { $$ = op1(CLOSE, $2); }
369 | DECR var { $$ = op1(PREDECR, $2); }
370 | INCR var { $$ = op1(PREINCR, $2); }
371 | var DECR { $$ = op1(POSTDECR, $1); }
372 | var INCR { $$ = op1(POSTINCR, $1); }
397 | SPRINTF '(' patlist ')' { $$ = op1($1, $3); }
423 | IVAR { $$ = op1(INDIREC
[all...]
/macosx-10.10/IOFWDVComponents-207.4.1/tests/
H A DAVCTest.c160 static OSErr doControlTest(DVDeviceRefNum refNum, UInt8 op1, UInt8 op2) argument
170 in[2] = op1;
187 static OSErr doStatusTest(DVDeviceRefNum refNum, UInt8 op1, UInt8 op2) argument
197 in[2] = op1;
214 static OSErr doStatusTest6(DVDeviceRefNum refNum, UInt8 op1, UInt8 op2, argument
225 in[2] = op1;
/macosx-10.10/emacs-93/emacs/lisp/
H A Dcompare-w.el311 (op1 (point))
320 (or (setq in-bounds-p (< region-size (max (- (point-max) op1)
333 (let ((p1 op1)
334 (bound1 (- (min (+ op1 region-size) (point-max)) string-size))
350 (compare-windows-highlight op1 (car p12) (current-buffer) w1
/macosx-10.10/JavaScriptCore-7600.1.17/assembler/
H A DMacroAssemblerX86Common.h168 void and32(RegisterID op1, RegisterID op2, RegisterID dest) argument
170 if (op1 == op2)
171 zeroExtend32ToPtr(op1, dest);
172 else if (op1 == dest)
176 and32(op1, dest);
273 void or32(RegisterID op1, RegisterID op2, RegisterID dest) argument
275 if (op1 == op2)
276 zeroExtend32ToPtr(op1, dest);
277 else if (op1 == dest)
281 or32(op1, des
424 xor32(RegisterID op1, RegisterID op2, RegisterID dest) argument
751 addDouble(FPRegisterID op1, FPRegisterID op2, FPRegisterID dest) argument
774 divDouble(FPRegisterID op1, FPRegisterID op2, FPRegisterID dest) argument
795 subDouble(FPRegisterID op1, FPRegisterID op2, FPRegisterID dest) argument
816 mulDouble(FPRegisterID op1, FPRegisterID op2, FPRegisterID dest) argument
[all...]
H A DMacroAssemblerARM.h94 void add32(RegisterID op1, RegisterID op2, RegisterID dest) argument
96 m_assembler.adds(dest, op1, op2);
134 void and32(RegisterID op1, RegisterID op2, RegisterID dest) argument
136 m_assembler.bitAnds(dest, op1, op2);
186 void mul32(RegisterID op1, RegisterID op2, RegisterID dest) argument
189 if (op1 == dest) {
194 RegisterID tmp = op1;
195 op1 = op2;
199 m_assembler.muls(dest, op1, op2);
241 void or32(RegisterID op1, RegisterI argument
325 xor32(RegisterID op1, RegisterID op2, RegisterID dest) argument
757 branchAdd32(ResultCondition cond, RegisterID op1, RegisterID op2, RegisterID dest) argument
794 mull32(RegisterID op1, RegisterID op2, RegisterID dest) argument
862 branchSub32(ResultCondition cond, RegisterID op1, RegisterID op2, RegisterID dest) argument
1174 addDouble(FPRegisterID op1, FPRegisterID op2, FPRegisterID dest) argument
1196 divDouble(FPRegisterID op1, FPRegisterID op2, FPRegisterID dest) argument
1213 subDouble(FPRegisterID op1, FPRegisterID op2, FPRegisterID dest) argument
1235 mulDouble(FPRegisterID op1, FPRegisterID op2, FPRegisterID dest) argument
[all...]
H A DMacroAssemblerARM64.h313 void and32(RegisterID op1, RegisterID op2, RegisterID dest) argument
315 m_assembler.and_<32>(dest, op1, op2);
449 void or32(RegisterID op1, RegisterID op2, RegisterID dest) argument
451 m_assembler.orr<32>(dest, op1, op2);
491 void or64(RegisterID op1, RegisterID op2, RegisterID dest) argument
493 m_assembler.orr<64>(dest, op1, op2);
697 void xor32(RegisterID op1, RegisterID op2, RegisterID dest) argument
699 m_assembler.eor<32>(dest, op1, op2);
736 void xor64(RegisterID op1, RegisterID op2, RegisterID dest) argument
738 m_assembler.eor<64>(dest, op1, op
1157 addDouble(FPRegisterID op1, FPRegisterID op2, FPRegisterID dest) argument
1298 divDouble(FPRegisterID op1, FPRegisterID op2, FPRegisterID dest) argument
1362 mulDouble(FPRegisterID op1, FPRegisterID op2, FPRegisterID dest) argument
1427 subDouble(FPRegisterID op1, FPRegisterID op2, FPRegisterID dest) argument
1886 branchAdd32(ResultCondition cond, RegisterID op1, RegisterID op2, RegisterID dest) argument
1892 branchAdd32(ResultCondition cond, RegisterID op1, TrustedImm32 imm, RegisterID dest) argument
1942 branchAdd64(ResultCondition cond, RegisterID op1, RegisterID op2, RegisterID dest) argument
1948 branchAdd64(ResultCondition cond, RegisterID op1, TrustedImm32 imm, RegisterID dest) argument
2046 branchSub32(ResultCondition cond, RegisterID op1, RegisterID op2, RegisterID dest) argument
2052 branchSub32(ResultCondition cond, RegisterID op1, TrustedImm32 imm, RegisterID dest) argument
2077 branchSub64(ResultCondition cond, RegisterID op1, RegisterID op2, RegisterID dest) argument
2083 branchSub64(ResultCondition cond, RegisterID op1, TrustedImm32 imm, RegisterID dest) argument
2254 test64(ResultCondition cond, RegisterID op1, RegisterID op2, RegisterID dest) argument
[all...]

Completed in 422 milliseconds

123