/art/runtime/interpreter/mterp/x86_64/ |
binop.S | 11 /* binop vAA, vBB, vCC */
|
binopLit16.S | 11 /* binop/lit16 vA, vB, #+CCCC */
|
binopLit8.S | 12 /* binop/lit8 vAA, vBB, #+CC */
|
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel1CommandsLib/ |
If.c | 112 @param[in] BinOp The type of comparison to perform.
123 IN CONST BIN_OPERATOR_TYPE BinOp,
132 // "Compare1 BinOp Compare2"
134 switch (BinOp) {
158 if (BinOp == OperatorGreaterThan) {
192 if (BinOp == OperatorLessThan) {
281 if (BinOp == OperatorGreatorOrEqual) {
315 if (BinOp == OperatorLessOrEqual) {
363 BIN_OPERATOR_TYPE BinOp;
372 BinOp = OperatorMax; [all...] |
/external/valgrind/VEX/priv/ |
host_mips_isel.c | 722 if (e->tag == Iex_Binop && e->Iex.Binop.op == Iop_Add64 723 && e->Iex.Binop.arg2->tag == Iex_Const 724 && e->Iex.Binop.arg2->Iex.Const.con->tag == Ico_U64 726 uLong_is_4_aligned(e->Iex.Binop.arg2->Iex.Const.con->Ico.U64) : True) 727 && uLong_fits_in_16_bits(e->Iex.Binop.arg2->Iex.Const.con->Ico.U64)) { 728 return MIPSAMode_IR((Int) e->Iex.Binop.arg2->Iex.Const.con->Ico.U64, 729 iselWordExpr_R(env, e->Iex.Binop.arg1)); 733 if (e->tag == Iex_Binop && e->Iex.Binop.op == Iop_Add64) { 734 HReg r_base = iselWordExpr_R(env, e->Iex.Binop.arg1); 735 HReg r_idx = iselWordExpr_R(env, e->Iex.Binop.arg2) [all...] |
guest_s390_helpers.c | 1809 #define binop macro [all...] |
ir_match.c | 74 if (p->Iex.Binop.op != e->Iex.Binop.op) return False; 75 if (!matchWrk(mi, p->Iex.Binop.arg1, e->Iex.Binop.arg1)) 77 if (!matchWrk(mi, p->Iex.Binop.arg2, e->Iex.Binop.arg2))
|
host_ppc_isel.c | [all...] |
guest_x86_helpers.c | 819 # define binop(_op,_a1,_a2) IRExpr_Binop((_op),(_a1),(_a2)) macro 852 binop(Iop_CmpEQ32, 853 binop(Iop_Add32, cc_dep1, cc_dep2), 862 binop(Iop_CmpEQ32, cc_dep1, cc_dep2)); 867 binop(Iop_CmpNE32, cc_dep1, cc_dep2)); 874 binop(Iop_CmpLT32S, cc_dep1, cc_dep2)); 879 return binop(Iop_Xor32, 881 binop(Iop_CmpLT32S, cc_dep1, cc_dep2)), 889 binop(Iop_CmpLE32S, cc_dep1, cc_dep2)); 895 return binop(Iop_Xor32 1354 # undef binop macro [all...] |
guest_arm64_helpers.c | 718 # define binop(_op,_a1,_a2) IRExpr_Binop((_op),(_a1),(_a2)) macro 756 binop(Iop_CmpEQ64, cc_dep1, cc_dep2)); 761 binop(Iop_CmpNE64, cc_dep1, cc_dep2)); 769 binop(Iop_CmpLE64U, cc_dep2, cc_dep1)); 774 binop(Iop_CmpLT64U, cc_dep1, cc_dep2)); 781 binop(Iop_CmpLE64U, cc_dep1, cc_dep2)); 787 binop(Iop_CmpLT64U, cc_dep2, cc_dep1)); 794 binop(Iop_CmpLT64S, cc_dep1, cc_dep2)); 800 binop(Iop_CmpLE64S, cc_dep2, cc_dep1)); 808 binop(Iop_CmpLT64S, cc_dep2, cc_dep1)) 1127 # undef binop macro [all...] |
ir_inject.c | 42 #define binop(kind, a1, a2) IRExpr_Binop(kind, a1, a2) macro 91 next_addr = binop(Iop_Add64, addr, mkU64(8)); 94 next_addr = binop(Iop_Add32, addr, mkU32(8)); 108 return binop(concat, 113 return binop(concat, 152 next_addr = binop(Iop_Add64, addr, mkU64(8)); 155 next_addr = binop(Iop_Add32, addr, mkU32(8)); 205 data = binop(iricb.op, rounding_mode, opnd1); 225 data = binop(iricb.op, opnd1, opnd2);
|
host_arm64_isel.c | 870 && (e->Iex.Binop.op == Iop_Add64 || e->Iex.Binop.op == Iop_Sub64) 871 && e->Iex.Binop.arg2->tag == Iex_Const 872 && e->Iex.Binop.arg2->Iex.Const.con->tag == Ico_U64) { 873 Long simm = (Long)e->Iex.Binop.arg2->Iex.Const.con->Ico.U64; 880 HReg reg = iselIntExpr_R(env, e->Iex.Binop.arg1); 881 if (e->Iex.Binop.op == Iop_Sub64) simm = -simm; 888 && e->Iex.Binop.op == Iop_Add64 889 && e->Iex.Binop.arg2->tag == Iex_Const 890 && e->Iex.Binop.arg2->Iex.Const.con->tag == Ico_U64) [all...] |
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/ |
parser.ml | 53 (* If this is a binop, find its precedence. *) 57 (* If this is a binop that binds at least as tightly as the current binop, 60 (* Eat the binop. *) 66 (* Okay, we know this is a binop. *) 70 (* If BinOp binds less tightly with rhs than the operator after
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/ |
parser.ml | 53 (* If this is a binop, find its precedence. *) 57 (* If this is a binop that binds at least as tightly as the current binop, 60 (* Eat the binop. *) 66 (* Okay, we know this is a binop. *) 70 (* If BinOp binds less tightly with rhs than the operator after
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/ |
parser.ml | 53 (* If this is a binop, find its precedence. *) 57 (* If this is a binop that binds at least as tightly as the current binop, 60 (* Eat the binop. *) 66 (* Okay, we know this is a binop. *) 70 (* If BinOp binds less tightly with rhs than the operator after
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/ |
parser.ml | 89 (* If this is a binop, find its precedence. *) 93 (* If this is a binop that binds at least as tightly as the current binop, 96 (* Eat the binop. *) 102 (* Okay, we know this is a binop. *) 106 (* If BinOp binds less tightly with rhs than the operator after
|
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter2/ |
parser.ml | 53 (* If this is a binop, find its precedence. *) 57 (* If this is a binop that binds at least as tightly as the current binop, 60 (* Eat the binop. *) 66 (* Okay, we know this is a binop. *) 70 (* If BinOp binds less tightly with rhs than the operator after
|
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter3/ |
parser.ml | 53 (* If this is a binop, find its precedence. *) 57 (* If this is a binop that binds at least as tightly as the current binop, 60 (* Eat the binop. *) 66 (* Okay, we know this is a binop. *) 70 (* If BinOp binds less tightly with rhs than the operator after
|
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter4/ |
parser.ml | 53 (* If this is a binop, find its precedence. *) 57 (* If this is a binop that binds at least as tightly as the current binop, 60 (* Eat the binop. *) 66 (* Okay, we know this is a binop. *) 70 (* If BinOp binds less tightly with rhs than the operator after
|
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter5/ |
parser.ml | 89 (* If this is a binop, find its precedence. *) 93 (* If this is a binop that binds at least as tightly as the current binop, 96 (* Eat the binop. *) 102 (* Okay, we know this is a binop. *) 106 (* If BinOp binds less tightly with rhs than the operator after
|
/external/v8/src/asmjs/ |
asm-typer.h | 268 AsmType* ValidateBinaryOperation(BinaryOperation* binop); 284 AsmType* ValidateMultiplicativeExpression(BinaryOperation* binop); 286 AsmType* ValidateAdditiveExpression(BinaryOperation* binop, 289 AsmType* ValidateShiftExpression(BinaryOperation* binop); 295 AsmType* ValidateBitwiseANDExpression(BinaryOperation* binop); 297 AsmType* ValidateBitwiseXORExpression(BinaryOperation* binop); 299 AsmType* ValidateBitwiseORExpression(BinaryOperation* binop);
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/ |
parser.ml | 100 (* If this is a binop, find its precedence. *) 104 (* If this is a binop that binds at least as tightly as the current binop, 107 (* Eat the binop. *) 113 (* Okay, we know this is a binop. *) 117 (* If BinOp binds less tightly with rhs than the operator after
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
parser.ml | 114 (* If this is a binop, find its precedence. *) 118 (* If this is a binop that binds at least as tightly as the current binop, 121 (* Eat the binop. *) 127 (* Okay, we know this is a binop. *) 131 (* If BinOp binds less tightly with rhs than the operator after
|
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter6/ |
parser.ml | 100 (* If this is a binop, find its precedence. *) 104 (* If this is a binop that binds at least as tightly as the current binop, 107 (* Eat the binop. *) 113 (* Okay, we know this is a binop. *) 117 (* If BinOp binds less tightly with rhs than the operator after
|
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter7/ |
parser.ml | 114 (* If this is a binop, find its precedence. *) 118 (* If this is a binop that binds at least as tightly as the current binop, 121 (* Eat the binop. *) 127 (* Okay, we know this is a binop. *) 131 (* If BinOp binds less tightly with rhs than the operator after
|