Searched refs:op2 (Results 1 - 25 of 101) sorted by relevance

12345

/macosx-10.10/JavaScriptCore-7600.1.17/jit/
H A DJITArithmetic.cpp49 int op2 = currentInstruction[2].u.operand; local
52 emit_compareAndJump(op_jless, op1, op2, target, LessThan);
58 int op2 = currentInstruction[2].u.operand; local
61 emit_compareAndJump(op_jlesseq, op1, op2, target, LessThanOrEqual);
67 int op2 = currentInstruction[2].u.operand; local
70 emit_compareAndJump(op_jgreater, op1, op2, target, GreaterThan);
76 int op2 = currentInstruction[2].u.operand; local
79 emit_compareAndJump(op_jgreatereq, op1, op2, target, GreaterThanOrEqual);
85 int op2 = currentInstruction[2].u.operand; local
88 emit_compareAndJump(op_jnless, op1, op2, targe
94 int op2 = currentInstruction[2].u.operand; local
103 int op2 = currentInstruction[2].u.operand; local
112 int op2 = currentInstruction[2].u.operand; local
121 int op2 = currentInstruction[2].u.operand; local
130 int op2 = currentInstruction[2].u.operand; local
139 int op2 = currentInstruction[2].u.operand; local
148 int op2 = currentInstruction[2].u.operand; local
157 int op2 = currentInstruction[2].u.operand; local
166 int op2 = currentInstruction[2].u.operand; local
175 int op2 = currentInstruction[2].u.operand; local
184 int op2 = currentInstruction[2].u.operand; local
229 int op2 = currentInstruction[3].u.operand; local
254 int op2 = currentInstruction[3].u.operand; local
287 int op2 = currentInstruction[3].u.operand; local
311 int op2 = currentInstruction[3].u.operand; local
344 int op2 = currentInstruction[3].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
533 int op2 = currentInstruction[3].u.operand; local
611 int op2 = currentInstruction[3].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
792 int op2 = currentInstruction[3].u.operand; local
822 int op2 = currentInstruction[3].u.operand; local
839 int op2 = currentInstruction[3].u.operand; local
868 int op2 = currentInstruction[3].u.operand; local
880 int op2 = currentInstruction[3].u.operand; local
955 int op2 = currentInstruction[3].u.operand; local
979 int op2 = currentInstruction[3].u.operand; local
990 int op2 = currentInstruction[3].u.operand; local
[all...]
H A DJITArithmetic32_64.cpp80 void JIT::emit_compareAndJump(OpcodeID opcode, int op1, int op2, unsigned target, RelationalCondition condition) argument
87 emitLoad(op2, regT1, regT0);
95 if (isOperandConstantImmediateChar(op2)) {
101 addJump(branch32(condition, regT0, Imm32(asString(getConstantOperand(op2))->tryGetValue()[0])), target);
105 emitLoad(op2, regT3, regT2);
108 } else if (isOperandConstantImmediateInt(op2)) {
111 addJump(branch32(condition, regT0, Imm32(getConstantOperand(op2).asInt32())), target);
113 emitLoad2(op1, regT1, regT0, op2, regT3, regT2);
127 emitBinaryDoubleOp(opcode, target, op1, op2, OperandTypes(), notInt32Op1, notInt32Op2, !isOperandConstantImmediateInt(op1), isOperandConstantImmediateInt(op1) || !isOperandConstantImmediateInt(op2));
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
164 int op2 = currentInstruction[3].u.operand; local
185 int op2 = currentInstruction[3].u.operand; local
201 int op2 = currentInstruction[3].u.operand; local
233 int op2 = currentInstruction[3].u.operand; local
334 int op2 = currentInstruction[3].u.operand; local
356 int op2 = currentInstruction[3].u.operand; local
372 int op2 = currentInstruction[3].u.operand; local
394 int op2 = currentInstruction[3].u.operand; local
410 int op2 = currentInstruction[3].u.operand; local
432 int op2 = currentInstruction[3].u.operand; local
488 int op2 = currentInstruction[3].u.operand; local
558 int op2 = currentInstruction[3].u.operand; local
605 int op2 = currentInstruction[3].u.operand; local
665 int op2 = currentInstruction[3].u.operand; local
694 emitBinaryDoubleOp(OpcodeID opcodeID, int dst, int op1, int op2, OperandTypes types, JumpList& notInt32Op1, JumpList& notInt32Op2, bool op1IsInRegisters, bool op2IsInRegisters) argument
916 int op2 = currentInstruction[3].u.operand; local
950 int op2 = currentInstruction[3].u.operand; local
993 int op2 = currentInstruction[3].u.operand; local
1075 int op2 = currentInstruction[3].u.operand; local
[all...]
/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/JavaScriptCore-7600.1.17/assembler/
H A DARMAssembler.h304 void emitInstruction(ARMWord op, int rd, int rn, ARMWord op2) argument
306 ASSERT(((op2 & ~Op2Immediate) <= 0xfff) || (((op2 & ~ImmediateForHalfWordTransfer) <= 0xfff)));
307 m_buffer.putInt(op | RN(rn) | RD(rd) | op2);
326 void bitAnd(int rd, int rn, ARMWord op2, Condition cc = AL) argument
328 emitInstruction(toARMWord(cc) | AND, rd, rn, op2);
331 void bitAnds(int rd, int rn, ARMWord op2, Condition cc = AL) argument
333 emitInstruction(toARMWord(cc) | AND | SetConditionalCodes, rd, rn, op2); local
336 void eor(int rd, int rn, ARMWord op2, Condition cc = AL) argument
338 emitInstruction(toARMWord(cc) | EOR, rd, rn, op2);
341 eors(int rd, int rn, ARMWord op2, Condition cc = AL) argument
343 emitInstruction(toARMWord(cc) | EOR | SetConditionalCodes, rd, rn, op2); local
346 sub(int rd, int rn, ARMWord op2, Condition cc = AL) argument
351 subs(int rd, int rn, ARMWord op2, Condition cc = AL) argument
353 emitInstruction(toARMWord(cc) | SUB | SetConditionalCodes, rd, rn, op2); local
356 rsb(int rd, int rn, ARMWord op2, Condition cc = AL) argument
361 rsbs(int rd, int rn, ARMWord op2, Condition cc = AL) argument
363 emitInstruction(toARMWord(cc) | RSB | SetConditionalCodes, rd, rn, op2); local
366 add(int rd, int rn, ARMWord op2, Condition cc = AL) argument
371 adds(int rd, int rn, ARMWord op2, Condition cc = AL) argument
373 emitInstruction(toARMWord(cc) | ADD | SetConditionalCodes, rd, rn, op2); local
376 adc(int rd, int rn, ARMWord op2, Condition cc = AL) argument
381 adcs(int rd, int rn, ARMWord op2, Condition cc = AL) argument
383 emitInstruction(toARMWord(cc) | ADC | SetConditionalCodes, rd, rn, op2); local
386 sbc(int rd, int rn, ARMWord op2, Condition cc = AL) argument
391 sbcs(int rd, int rn, ARMWord op2, Condition cc = AL) argument
393 emitInstruction(toARMWord(cc) | SBC | SetConditionalCodes, rd, rn, op2); local
396 rsc(int rd, int rn, ARMWord op2, Condition cc = AL) argument
401 rscs(int rd, int rn, ARMWord op2, Condition cc = AL) argument
403 emitInstruction(toARMWord(cc) | RSC | SetConditionalCodes, rd, rn, op2); local
406 tst(int rn, ARMWord op2, Condition cc = AL) argument
408 emitInstruction(toARMWord(cc) | TST | SetConditionalCodes, 0, rn, op2); local
411 teq(int rn, ARMWord op2, Condition cc = AL) argument
413 emitInstruction(toARMWord(cc) | TEQ | SetConditionalCodes, 0, rn, op2); local
416 cmp(int rn, ARMWord op2, Condition cc = AL) argument
418 emitInstruction(toARMWord(cc) | CMP | SetConditionalCodes, 0, rn, op2); local
421 cmn(int rn, ARMWord op2, Condition cc = AL) argument
423 emitInstruction(toARMWord(cc) | CMN | SetConditionalCodes, 0, rn, op2); local
426 orr(int rd, int rn, ARMWord op2, Condition cc = AL) argument
431 orrs(int rd, int rn, ARMWord op2, Condition cc = AL) argument
433 emitInstruction(toARMWord(cc) | ORR | SetConditionalCodes, rd, rn, op2); local
436 mov(int rd, ARMWord op2, Condition cc = AL) argument
438 emitInstruction(toARMWord(cc) | MOV, rd, ARMRegisters::r0, op2); local
442 movw(int rd, ARMWord op2, Condition cc = AL) argument
448 movt(int rd, ARMWord op2, Condition cc = AL) argument
455 movs(int rd, ARMWord op2, Condition cc = AL) argument
457 emitInstruction(toARMWord(cc) | MOV | SetConditionalCodes, rd, ARMRegisters::r0, op2); local
460 bic(int rd, int rn, ARMWord op2, Condition cc = AL) argument
465 bics(int rd, int rn, ARMWord op2, Condition cc = AL) argument
467 emitInstruction(toARMWord(cc) | BIC | SetConditionalCodes, rd, rn, op2); local
470 mvn(int rd, ARMWord op2, Condition cc = AL) argument
472 emitInstruction(toARMWord(cc) | MVN, rd, ARMRegisters::r0, op2); local
475 mvns(int rd, ARMWord op2, Condition cc = AL) argument
477 emitInstruction(toARMWord(cc) | MVN | SetConditionalCodes, rd, ARMRegisters::r0, op2); local
550 dtrUp(DataTransferTypeA transferType, int rd, int rb, ARMWord op2, Condition cc = AL) argument
552 emitInstruction(toARMWord(cc) | transferType | DataTransferUp, rd, rb, op2); local
560 dtrDown(DataTransferTypeA transferType, int rd, int rb, ARMWord op2, Condition cc = AL) argument
570 halfDtrUp(DataTransferTypeB transferType, int rd, int rb, ARMWord op2, Condition cc = AL) argument
572 emitInstruction(toARMWord(cc) | transferType | DataTransferUp, rd, rb, op2); local
580 halfDtrDown(DataTransferTypeB transferType, int rd, int rb, ARMWord op2, Condition cc = AL) argument
590 doubleDtrUp(DataTransferTypeFloat type, int rd, int rb, ARMWord op2, Condition cc = AL) argument
597 doubleDtrDown(DataTransferTypeFloat type, int rd, int rb, ARMWord op2, Condition cc = AL) argument
[all...]
H A DMacroAssemblerARM.cpp78 ARMWord op2; local
81 op2 = m_assembler.lsl(address.index, static_cast<int>(address.scale));
84 m_assembler.add(ARMRegisters::S0, address.base, op2);
88 m_assembler.add(ARMRegisters::S0, address.base, op2);
93 m_assembler.add(ARMRegisters::S0, ARMRegisters::S0, op2);
/macosx-10.10/BerkeleyDB-21/db/test/
H A Dfoputils.tcl222 proc create_tests { op1 op2 exists noexist open retval { end1 "" } } {
282 set op2list [create_op2 $op2 $exists $noexist $open $retval]
290 proc create_badtests { op1 op2 exists noexist open retval {end1 ""} } {
310 $op2 $exists $noexist $open $retval]
312 foreach op2 $op2list {
313 lappend retlist [list $op1 $op2]
325 $op2 $exists $noexist $open $retval]
326 foreach op2 $op2list {
327 lappend retlist [list $op1list $op2]
335 $op2
[all...]
H A Dfop006.tcl50 foreach op2 $ops {
52 $op1 $op2 $exists $noexist\
64 foreach op2 $ops {
65 append cases " " [create_badtests $op1 $op2 \
72 # {{op1 {args} result end} {op2 {args} result}}
102 set op2 [lindex [lindex $case 1] 0]
107 $op2 ($names2) $res2."
155 $operator $omethod $op2 $end2 $res2 $names2 &]
H A Dfop001.tcl40 foreach op2 $ops {
41 append cases " " [create_tests $op1 $op2 \
52 foreach op2 $ops {
53 append cases " " [create_badtests $op1 $op2 \
60 # {{op1 {names1} result end1} {op2 {names2} result}}
87 set op2 [lindex [lindex $case 1] 0]
91 puts "\tFop$tnum.$testid: $op1 ($names1), then $op2 ($names2)."
149 $omethod $op2 $names2 $txn $env $args]
/macosx-10.10/awk-20/src/
H A Dawkgram.y199 var ASGNOP ppattern { $$ = op2($2, $1, $3); }
203 { $$ = op2(BOR, notnull($1), notnull($3)); }
205 { $$ = op2(AND, notnull($1), notnull($3)); }
212 | ppattern IN varname { $$ = op2(INTEST, $1, makearr($3)); }
213 | '(' plist ')' IN varname { $$ = op2(INTEST, $2, makearr($5)); }
214 | ppattern term %prec CAT { $$ = op2(CAT, $1, $2); }
220 var ASGNOP pattern { $$ = op2($2, $1, $3); }
224 { $$ = op2(BOR, notnull($1), notnull($3)); }
226 { $$ = op2(AND, notnull($1), notnull($3)); }
227 | pattern EQ pattern { $$ = op2(
[all...]
H A Db.c143 p1 = op2(CAT, op2(STAR, op2(ALL, NIL, NIL), NIL), p);
145 p1 = op2(CAT, p1, op2(FINAL, NIL, NIL));
638 return(op2(EMPTYRE, NIL, NIL));
659 np = op2(CHAR, NIL, itonp(rlxval));
664 return (unary(op2(ALL, NIL, NIL)));
673 return (unary(op2(EMPTYRE, NIL, NIL)));
677 return (unary(op2(DO
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/contrib/slapd-modules/samba4/
H A Drdnval.c83 Operation op2 = *op; local
98 op2.o_bd = &db;
99 op2.o_bd->bd_info = (BackendInfo *)on->on_info;
100 op2.o_tag = LDAP_REQ_SEARCH;
101 op2.o_dn = op->o_bd->be_rootdn;
102 op2.o_ndn = op->o_bd->be_rootndn;
103 op2.o_callback = &cb;
107 dnParent( &op->o_req_ndn, &op2.o_req_dn );
108 op2.o_req_ndn = op2
[all...]
/macosx-10.10/dcerpc-61/dcerpc/idl_compiler/
H A Dastp_exp.c268 AST_exp_n_t * op2 = exp->exp.expression.oper2; local
277 ASTP_expr_integer_value(location, op2->exp.expression.oper1)
342 AST_exp_n_t * op1=NULL, *op2=NULL, *op3=NULL; local
380 op2 = exp->exp.expression.oper2;
382 if (op2->exp.constant.type == AST_nil_const_k &&
383 op2->exp.constant.val.other == NULL) {
384 op2->exp.constant.val.other =
387 op2->exp.constant.name,
389 if (op2->exp.constant.val.other == NULL)
407 op2
[all...]
/macosx-10.10/cxxfilt-11/cxxfilt/opcodes/
H A Dmsp430-dis.c290 char *op2,
367 *op2 = 0;
494 sprintf (op2, "r0");
497 sprintf (op2, "r1");
500 sprintf (op2, "r2");
503 sprintf (op2, "r%d", regd);
514 sprintf (op2, "0x%04x", PS (dst));
524 sprintf (op2, "&0x%04x", PS (dst));
530 sprintf (op2, "%d(r%d)", dst, regd);
670 char op1[32], op2[3 local
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
[all...]
H A Davr-dis.c266 char op1[20], op2[20], comment1[40], comment2[40]; local
316 op2[0] = 0;
340 ok = avr_operand (insn, insn2, addr, *(++op), op2,
349 op2[0] = 0;
359 if (*op2)
360 (*prin) (stream, ", %s", op2);
/macosx-10.10/cxxfilt-11/cxxfilt/bfd/
H A Dvms-tir.c523 long op1, op2;
537 op2 = (long) _bfd_vms_pop (abfd, NULL);
538 _bfd_vms_push (abfd, (uquad) (op1 + op2), -1);
543 op2 = (long) _bfd_vms_pop (abfd, NULL);
544 _bfd_vms_push (abfd, (uquad) (op2 - op1), -1);
549 op2 = (long) _bfd_vms_pop (abfd, NULL);
550 _bfd_vms_push (abfd, (uquad) (op1 * op2), -1);
555 op2 = (long) _bfd_vms_pop (abfd, NULL);
556 if (op2 == 0)
559 _bfd_vms_push (abfd, (uquad) (op2 / op
521 long op1, op2; local
594 op1 <<= op2; local
1316 long op1, op2; 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"
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"
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/
H A Doperation.c57 Operation *op, *op2; local
58 for ( op = data; op; op = op2 ) {
59 op2 = LDAP_STAILQ_NEXT( op, o_next );
141 Operation *op2 = NULL; local
143 op, slap_op_q_destroy, (void **)&op2, NULL );
144 LDAP_STAILQ_NEXT( op, o_next ) = op2;
145 if ( op2 ) {
146 op->o_tincr = op2->o_tincr + 1;
150 op2, slap_op_q_destroy, NULL, NULL );
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/contrib/slapd-modules/lastbind/
H A Dlastbind.c173 Operation op2 = *op; local
178 op2.o_tag = LDAP_REQ_MODIFY;
179 op2.o_callback = &cb;
180 op2.orm_modlist = mod;
181 op2.o_dn = op->o_bd->be_rootdn;
182 op2.o_ndn = op->o_bd->be_rootndn;
183 op2.o_dont_replicate = 1;
184 rc = op->o_bd->be_modify( &op2, &r2 );
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/overlays/
H A Drefint.c529 Operation op2; local
568 op2 = *op;
576 op2.o_bd = select_backend( &dp->ndn, 1 );
577 if ( !op2.o_bd ) {
583 op2.o_tag = LDAP_REQ_MODIFY;
584 op2.orm_modlist = NULL;
585 op2.o_req_dn = dp->dn;
586 op2.o_req_ndn = dp->ndn;
588 op2.orm_no_opattrs = 1;
589 op2
[all...]
H A Dmemberof.c245 Operation op2 = *op; local
263 op2.o_tag = LDAP_REQ_SEARCH;
264 op2.o_callback = &cb;
265 op2.o_dn = op->o_bd->be_rootdn;
266 op2.o_ndn = op->o_bd->be_rootndn;
268 op2.ors_scope = LDAP_SCOPE_BASE;
269 op2.ors_deref = LDAP_DEREF_NEVER;
271 op2.ors_attrs = an;
272 op2.ors_attrsonly = 0;
273 op2
343 Operation op2 = *op; local
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/contrib/slapd-modules/nssov/
H A Dpasswd.c170 Operation op2; local
181 op2 = *op;
182 op2.o_callback = &cb;
183 op2.o_req_dn = mi->mi_base;
184 op2.o_req_ndn = mi->mi_base;
185 op2.ors_scope = mi->mi_scope;
186 op2.ors_filterstr = filter;
187 op2.ors_filter = str2filter_x( op, filter.bv_val );
188 op2.ors_attrs = slap_anlist_no_attrs;
189 op2
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-sql/
H A Ddelete.c335 Operation op2 = *op; local
352 op2.o_tag = LDAP_REQ_SEARCH;
353 op2.o_protocol = LDAP_VERSION3;
358 op2.o_callback = &sc;
360 op2.o_dn = op->o_bd->be_rootdn;
361 op2.o_ndn = op->o_bd->be_rootndn;
363 op2.o_managedsait = SLAP_CONTROL_CRITICAL;
365 op2.ors_scope = LDAP_SCOPE_SUBTREE;
366 op2.ors_deref = LDAP_DEREF_NEVER;
367 op2
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/dfg/
H A DDFGStrengthReductionPhase.cpp76 JSValue op2 = m_graph.valueOfJSConstant(m_node->child2().node()); local
77 if (op2.isInt32() && !op2.asInt32()) {
93 JSValue op2 = m_graph.valueOfJSConstant(m_node->child2().node()); local
94 if (op2.isInt32() && !(op2.asInt32() & 0x1f)) {
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
1633 && op2->shouldSpeculateInt32OrBoolean();
1636 static bool shouldSpeculateInt32OrBooleanForArithmetic(Node* op1, Node* op2) argument
1639 && op2->shouldSpeculateInt32OrBooleanForArithmetic();
1642 static bool shouldSpeculateInt32OrBooleanExpectingDefined(Node* op1, Node* op2) argument
1645 && op2
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...]

Completed in 359 milliseconds

12345