HomeSort by: relevance | last modified time | path
    Searched refs:isBinaryOp (Results 1 - 25 of 39) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/include/llvm/WindowsResource/
ResourceScriptToken.h 49 bool isBinaryOp() const;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-rc/
ResourceScriptToken.h 61 bool isBinaryOp() const;
ResourceScriptToken.cpp 67 bool RCToken::isBinaryOp() const {
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/array/
operations.d 165 else static if (isBinaryOp(Args[idx]))
253 bool isBinaryOp(scope string op) pure nothrow @safe @nogc
270 return op.length >= 2 && op[$ - 1] == '=' && isBinaryOp(op[0 .. $ - 1]);
310 else static if (isBinaryOp(arg))
371 else static if (isBinaryOp(arg))
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Instruction.h 165 bool isBinaryOp() const { return isBinaryOp(getOpcode()); }
186 static inline bool isBinaryOp(unsigned Opcode) {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
ExpandVectorPredication.cpp 221 assert(Instruction::isBinaryOp(OC));
321 if (OC && Instruction::isBinaryOp(*OC))
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 266 bool isBinaryOp() const { return IsOperator && Args.size() == 2; }
269 assert(isUnaryOp() || isBinaryOp());
1063 if (P.isBinaryOp())
1096 if (P.isBinaryOp())
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 266 bool isBinaryOp() const { return IsOperator && Args.size() == 2; }
269 assert(isUnaryOp() || isBinaryOp());
1063 if (P.isBinaryOp())
1096 if (P.isBinaryOp())
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 266 bool isBinaryOp() const { return IsOperator && Args.size() == 2; }
269 assert(isUnaryOp() || isBinaryOp());
1063 if (P.isBinaryOp())
1096 if (P.isBinaryOp())
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 264 bool isBinaryOp() const { return IsOperator && Args.size() == 2; }
267 assert(isUnaryOp() || isBinaryOp());
1054 if (P.isBinaryOp())
1087 if (P.isBinaryOp())
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 249 bool isBinaryOp() const { return IsOperator && Args.size() == 2; }
252 assert(isUnaryOp() || isBinaryOp());
908 if (P.isBinaryOp())
936 if (P.isBinaryOp())
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 271 bool isBinaryOp() const { return IsOperator && Args.size() == 2; }
274 assert(isUnaryOp() || isBinaryOp());
1069 if (P.isBinaryOp())
1105 if (P.isBinaryOp())
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 272 bool isBinaryOp() const { return IsOperator && Args.size() == 2; }
275 assert(isUnaryOp() || isBinaryOp());
1068 if (P.isBinaryOp())
1101 if (P.isBinaryOp())
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 225 bool isBinaryOp() const { return isOperator && Args.size() == 2; }
228 assert(isUnaryOp() || isBinaryOp());
989 if (Proto->isBinaryOp())
1015 if (Proto->isBinaryOp())
toy.cpp 232 bool isBinaryOp() const { return isOperator && Args.size() == 2; }
235 assert(isUnaryOp() || isBinaryOp());
1360 if (Proto->isBinaryOp())
1383 if (Proto->isBinaryOp())
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 209 bool isBinaryOp() const { return isOperator && Args.size() == 2; }
212 assert(isUnaryOp() || isBinaryOp());
1218 if (Proto->isBinaryOp())
1241 if (Proto->isBinaryOp())
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 210 bool isBinaryOp() const { return isOperator && Args.size() == 2; }
213 assert(isUnaryOp() || isBinaryOp());
971 if (Proto->isBinaryOp())
997 if (Proto->isBinaryOp())
toy.cpp 211 bool isBinaryOp() const { return isOperator && Args.size() == 2; }
214 assert(isUnaryOp() || isBinaryOp());
1258 if (Proto->isBinaryOp())
1281 if (Proto->isBinaryOp())
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
SpeculateAroundPHIs.cpp 273 if (UserI->isBinaryOp() && UserI->isCommutative() && Idx != 1)
690 if (NewI->isBinaryOp() && NewI->isCommutative() &&
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter9/
toy.cpp 374 bool isBinaryOp() const { return IsOperator && Args.size() == 2; }
377 assert(isUnaryOp() || isBinaryOp());
1241 if (P.isBinaryOp())
1309 if (P.isBinaryOp())
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 251 bool isBinaryOp() const { return isOperator && Args.size() == 2; }
254 assert(isUnaryOp() || isBinaryOp());
1438 if (Proto->isBinaryOp())
1461 if (Proto->isBinaryOp())
  /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
NVPTXGenericToNVVM.cpp 300 if (Instruction::isBinaryOp(Opcode)) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
VectorCombine.cpp 295 bool IsBinOp = Instruction::isBinaryOp(Opcode);
682 if (!I.isBinaryOp() || !I.getType()->isIntegerTy(1))
  /src/external/apache2/llvm/dist/llvm/lib/IR/
ConstantRange.cpp 236 assert(Instruction::isBinaryOp(BinOp) && "Binary operators only!");
799 assert(Instruction::isBinaryOp(BinOp) && "Binary operators only!");
845 assert(Instruction::isBinaryOp(BinOp) && "Binary operators only!");
ConstantsContext.h 90 return Instruction::isBinaryOp(CE->getOpcode());

Completed in 56 milliseconds

1 2