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

1 2

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Instruction.h 164 bool isUnaryOp() const { return isUnaryOp(getOpcode()); }
183 static inline bool isUnaryOp(unsigned Opcode) {
InstrTypes.h 80 return I->isUnaryOp() ||
179 return I->isUnaryOp();
IntrinsicInst.h 436 bool isUnaryOp() const;
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/array/
operations.d 156 static if (isUnaryOp(Args[idx]))
248 bool isUnaryOp(scope string op) pure nothrow @safe @nogc
292 else static if (isUnaryOp(arg))
357 else static if (isUnaryOp(arg))
  /src/external/apache2/llvm/dist/llvm/lib/IR/
IntrinsicInst.cpp 251 bool ConstrainedFPIntrinsic::isUnaryOp() const {
ConstantsContext.h 62 Instruction::isUnaryOp(CE->getOpcode());
IRBuilder.cpp 836 if (Instruction::isUnaryOp(Opc)) {
ConstantFold.cpp 1057 assert(Instruction::isUnaryOp(Opcode) && "Non-unary instruction detected");
Constants.cpp 2258 assert(Instruction::isUnaryOp(Opcode) &&
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 265 bool isUnaryOp() const { return IsOperator && Args.size() == 1; }
269 assert(isUnaryOp() || isBinaryOp());
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 265 bool isUnaryOp() const { return IsOperator && Args.size() == 1; }
269 assert(isUnaryOp() || isBinaryOp());
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 265 bool isUnaryOp() const { return IsOperator && Args.size() == 1; }
269 assert(isUnaryOp() || isBinaryOp());
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 263 bool isUnaryOp() const { return IsOperator && Args.size() == 1; }
267 assert(isUnaryOp() || isBinaryOp());
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 248 bool isUnaryOp() const { return IsOperator && Args.size() == 1; }
252 assert(isUnaryOp() || isBinaryOp());
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 270 bool isUnaryOp() const { return IsOperator && Args.size() == 1; }
274 assert(isUnaryOp() || isBinaryOp());
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 271 bool isUnaryOp() const { return IsOperator && Args.size() == 1; }
275 assert(isUnaryOp() || isBinaryOp());
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 224 bool isUnaryOp() const { return isOperator && Args.size() == 1; }
228 assert(isUnaryOp() || isBinaryOp());
toy.cpp 231 bool isUnaryOp() const { return isOperator && Args.size() == 1; }
235 assert(isUnaryOp() || isBinaryOp());
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 208 bool isUnaryOp() const { return isOperator && Args.size() == 1; }
212 assert(isUnaryOp() || isBinaryOp());
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 209 bool isUnaryOp() const { return isOperator && Args.size() == 1; }
213 assert(isUnaryOp() || isBinaryOp());
toy.cpp 210 bool isUnaryOp() const { return isOperator && Args.size() == 1; }
214 assert(isUnaryOp() || isBinaryOp());
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter9/
toy.cpp 373 bool isUnaryOp() const { return IsOperator && Args.size() == 1; }
377 assert(isUnaryOp() || isBinaryOp());
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 250 bool isUnaryOp() const { return isOperator && Args.size() == 1; }
254 assert(isUnaryOp() || isBinaryOp());
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ConstantFolding.cpp 1055 if (Instruction::isUnaryOp(Opcode))
1317 assert(Instruction::isUnaryOp(Opcode));
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
IRTranslator.cpp 1807 if (!FPI.isUnaryOp())

Completed in 76 milliseconds

1 2