| /src/external/apache2/llvm/dist/clang/lib/Analysis/ |
| ThreadSafety.cpp | 1047 bool &Negate); 1437 // The negate variable should be called with false, and will be set to true 1441 bool &Negate) { 1447 return getTrylockCallExpr(CallExp->getArg(0), C, Negate); 1451 return getTrylockCallExpr(PE->getSubExpr(), C, Negate); 1453 return getTrylockCallExpr(CE->getSubExpr(), C, Negate); 1455 return getTrylockCallExpr(FE->getSubExpr(), C, Negate); 1458 return getTrylockCallExpr(E, C, Negate); 1462 Negate = !Negate; [all...] |
| /src/external/gpl3/gcc/dist/libgcc/config/rl78/ |
| divmodhi.S | 55 ;; Negate the denumerator (which is in DE) 63 ;; If it is not negative then we perform the division and then negate the result. 66 ;; Otherwise we negate the numerator and then go with an unsigned division. 73 ;; Negate the numerator (which is in AX) 85 ;; Negate result and transfer into r8 122 ;; Negate the denumerator (which is in DE) 133 ;; Otherwise we negate the numerator and then go with an unsigned modulo operation. 140 ;; Negate the numerator (which is in AX) 152 ;; Negate result and transfer into r8 222 ;; Negate the denumerator (which is in MDBL [all...] |
| divmodsi.S | 61 ;; Negate the denumerator (which is in HLDE) 76 ;; If it is not negative then we perform the division and then negate the result. 79 ;; Otherwise we negate the numerator and then go with a straightforward unsigned division. 110 ;; Negate the numerator (which is in BCAX) 132 ;; Negate result (in BCAX) and transfer into r8,r10 204 ;; Negate the denumerator (which is in HLDE) 222 ;; Otherwise we negate the numerator and then go with a modulo followed by negation. 240 ;; Negate the numerator (which is in BCAX) 262 ;; Negate result (in HLDE) and transfer into r8,r10 369 ;; Negate the denumerator (which is in MDBL/MDBH [all...] |
| fpbit-sf.S | 28 ;; Negate the floating point value. 300 ;; Otherwise we negate the value, call __fixunssfsi and 301 ;; then negate its result. 501 ;; Negate the result.
|
| /src/external/gpl3/gcc.old/dist/libgcc/config/rl78/ |
| divmodhi.S | 55 ;; Negate the denumerator (which is in DE) 63 ;; If it is not negative then we perform the division and then negate the result. 66 ;; Otherwise we negate the numerator and then go with an unsigned division. 73 ;; Negate the numerator (which is in AX) 85 ;; Negate result and transfer into r8 122 ;; Negate the denumerator (which is in DE) 133 ;; Otherwise we negate the numerator and then go with an unsigned modulo operation. 140 ;; Negate the numerator (which is in AX) 152 ;; Negate result and transfer into r8 222 ;; Negate the denumerator (which is in MDBL [all...] |
| divmodsi.S | 61 ;; Negate the denumerator (which is in HLDE) 76 ;; If it is not negative then we perform the division and then negate the result. 79 ;; Otherwise we negate the numerator and then go with a straightforward unsigned division. 110 ;; Negate the numerator (which is in BCAX) 132 ;; Negate result (in BCAX) and transfer into r8,r10 204 ;; Negate the denumerator (which is in HLDE) 222 ;; Otherwise we negate the numerator and then go with a modulo followed by negation. 240 ;; Negate the numerator (which is in BCAX) 262 ;; Negate result (in HLDE) and transfer into r8,r10 369 ;; Negate the denumerator (which is in MDBL/MDBH [all...] |
| fpbit-sf.S | 28 ;; Negate the floating point value. 300 ;; Otherwise we negate the value, call __fixunssfsi and 301 ;; then negate its result. 501 ;; Negate the result.
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/ |
| X86InstComments.cpp | 289 bool Negate = false; 350 Negate = true; 356 Negate = true; 368 Negate = true; 375 Negate = true; 484 Negate = true; 496 Negate = true; 508 Negate = true; 521 Negate = true; 534 Negate = true [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| VFABIDemangling.cpp | 172 const bool Negate = ParseString.consume_front("n"); 175 if (Negate)
|
| /src/external/gpl3/gcc/dist/libgcc/config/microblaze/ |
| divsi3.S | 88 RSUBI r3,r3,0 # Negate the result
|
| modsi3.S | 87 rsubi r3,r3,0 # Negate the result
|
| /src/external/gpl3/gcc.old/dist/libgcc/config/microblaze/ |
| divsi3.S | 88 RSUBI r3,r3,0 # Negate the result
|
| modsi3.S | 87 rsubi r3,r3,0 # Negate the result
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
| InstCombineNegator.cpp | 159 // negate it even if it has other uses, without increasing instruction count. 169 // And since we are trying to negate instruction I, that tells us about the 202 // While we could negate exact arithmetic shift: 266 Value *NegOp = negate(I->getOperand(0), Depth + 1); 277 negate(std::get<0>(I), Depth + 1))) // Early return. 300 Value *NegOp1 = negate(I->getOperand(1), Depth + 1); 303 Value *NegOp2 = negate(I->getOperand(2), Depth + 1); 313 Value *NegOp0 = negate(I->getOperand(0), Depth + 1); 316 Value *NegOp1 = negate(I->getOperand(1), Depth + 1); 325 Value *NegVector = negate(EEI->getVectorOperand(), Depth + 1) 440 LLVM_NODISCARD Value *Negator::negate(Value *V, unsigned Depth) { function in class:Negator [all...] |
| InstCombineInternal.h | 774 LLVM_NODISCARD Value *negate(Value *V, unsigned Depth); 786 /// Attempt to negate \p Root. Retuns nullptr if negation can't be performed, 788 LLVM_NODISCARD static Value *Negate(bool LHSIsZero, Value *Root,
|
| InstCombineAddSub.cpp | 72 void negate(); 157 void negate() { Coeff.negate(); } function in class:__anon5346::FAddend 299 negate(); 324 void FAddendCoef::negate() { function in class:FAddendCoef 379 Addend.negate(); 1703 // If we have p - gep(p, ...) then we have to negate the result. 1782 if (Value *NegOp1 = Negator::Negate(IsNegation, Op1, *this)) 2085 // Copy the nuw/nsw flags from the sub to the negate.
|
| InstCombineMulDivRem.cpp | 208 if (Value *NegOp0 = Negator::Negate(/*IsNegation*/ true, Op0, *this)) 1277 /// Negate the exponent of pow/exp to fold division-by-pow() into multiply.
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/ |
| PPCISelDAGToDAG.cpp | 4178 bool HasVSX, bool &Swap, bool &Negate) { 4180 Negate = false; 4195 case ISD::SETNE: CC = ISD::SETEQ; Negate = true; break; 4196 case ISD::SETUNE: CC = ISD::SETOEQ; Negate = true; break; 4197 case ISD::SETULE: CC = ISD::SETOGT; Negate = true; break; 4198 case ISD::SETULT: CC = ISD::SETOGE; Negate = true; break; 4239 case ISD::SETNE: CC = ISD::SETEQ; Negate = true; break; 4240 case ISD::SETUNE: CC = ISD::SETUEQ; Negate = true; break; 4241 case ISD::SETLE: CC = ISD::SETGT; Negate = true; break; 4242 case ISD::SETULE: CC = ISD::SETUGT; Negate = true; break [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/ |
| ControlHeightReduction.cpp | 1519 // Negate the predicate if an ICmp if it's used only by branches or selects by 1955 // branch, negate the icmp predicate and swap the branch targets and avoid 1956 // inserting an Xor to negate Cond. 1964 Value *Negate = IRB.CreateXor( 1966 MergedCondition = IRB.CreateAnd(MergedCondition, Negate);
|
| /src/external/gpl3/gcc/dist/libgcc/config/avr/ |
| lib1funcs.S | 179 ;; Negate a 2-byte value held in consecutive registers 186 ;; Negate a 4-byte value held in consecutive registers 1375 neg r_arg1 ; dividend negative : negate 1377 neg r_arg2 ; divisor negative : negate 1449 rcall __divmodhi4_neg1 ; dividend negative: negate 1452 rcall __divmodhi4_neg2 ; divisor negative: negate 1695 XCALL __negsi2 ; dividend negative: negate 1698 rcall __divmodsi4_neg2 ; divisor negative: negate 3264 ;; A0.7 = negate result? 3278 ;; A0.7 = negate result [all...] |
| /src/external/gpl3/gcc.old/dist/libgcc/config/avr/ |
| lib1funcs.S | 174 ;; Negate a 2-byte value held in consecutive registers 181 ;; Negate a 4-byte value held in consecutive registers 1370 neg r_arg1 ; dividend negative : negate 1372 neg r_arg2 ; divisor negative : negate 1444 rcall __divmodhi4_neg1 ; dividend negative: negate 1447 rcall __divmodhi4_neg2 ; divisor negative: negate 1690 XCALL __negsi2 ; dividend negative: negate 1693 rcall __divmodsi4_neg2 ; divisor negative: negate 3259 ;; A0.7 = negate result? 3273 ;; A0.7 = negate result [all...] |
| /src/external/gpl3/gdb.old/dist/sim/mips/ |
| sim-main.h | 781 #define Negate(op,fmt) fp_neg(SIM_ARGS, op, fmt)
|
| /src/external/gpl3/gdb/dist/sim/mips/ |
| sim-main.h | 781 #define Negate(op,fmt) fp_neg(SIM_ARGS, op, fmt)
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| AMDGPUISelDAGToDAG.cpp | 78 bool Negate = false) { 84 uint32_t K = Negate ?
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/AsmParser/ |
| AMDGPUAsmParser.cpp | 2742 bool Negate = false; 2747 Negate = true; 2763 if (Negate)
|