|
| hobbes::IOP (not, CreateNot, bool, bool) |
|
| hobbes::IOP (bnot, CreateNot, unsigned char, unsigned char) |
|
| hobbes::CASTOP (b2i, llvm::Instruction::ZExt, unsigned char, int) |
|
| hobbes::CASTOP (b2l, llvm::Instruction::ZExt, unsigned char, long) |
|
| hobbes::CASTOP (i2d, llvm::Instruction::SIToFP, int, double) |
|
| hobbes::CASTOP (i2f, llvm::Instruction::SIToFP, int, float) |
|
| hobbes::CASTOP (i2l, llvm::Instruction::SExt, int, long) |
|
| hobbes::CASTOP (l2d, llvm::Instruction::SIToFP, long, double) |
|
| hobbes::CASTOP (l2f, llvm::Instruction::SIToFP, long, float) |
|
| hobbes::CASTOP (s2i, llvm::Instruction::SExt, short, int) |
|
| hobbes::CASTOP (f2d, llvm::Instruction::FPExt, float, double) |
|
| hobbes::CASTOP (tl2i, llvm::Instruction::Trunc, long, int) |
|
| hobbes::CASTOP (ti2s, llvm::Instruction::Trunc, int, short) |
|
| hobbes::CASTOP (ti2b, llvm::Instruction::Trunc, int, unsigned char) |
|
| hobbes::CASTOP (tl2b, llvm::Instruction::Trunc, long, unsigned char) |
|
| hobbes::IOP (sneg, CreateNeg, short, short) |
|
| hobbes::IOP (ineg, CreateNeg, int, int) |
|
| hobbes::IOP (lneg, CreateNeg, long, long) |
|
| hobbes::IOP (fneg, CreateFNeg, float, float) |
|
| hobbes::IOP (dneg, CreateFNeg, double, double) |
|
| hobbes::BOP (ceq, CreateICmpEQ, char, char, bool) |
|
| hobbes::BOP (cneq, CreateICmpNE, char, char, bool) |
|
| hobbes::BOP (clt, CreateICmpULT, char, char, bool) |
|
| hobbes::BOP (clte, CreateICmpULE, char, char, bool) |
|
| hobbes::BOP (cgt, CreateICmpUGT, char, char, bool) |
|
| hobbes::BOP (cgte, CreateICmpUGE, char, char, bool) |
|
| hobbes::BOP (beq, CreateICmpEQ, unsigned char, unsigned char, bool) |
|
| hobbes::BOP (bneq, CreateICmpNE, unsigned char, unsigned char, bool) |
|
| hobbes::BOP (blt, CreateICmpULT, unsigned char, unsigned char, bool) |
|
| hobbes::BOP (blte, CreateICmpULE, unsigned char, unsigned char, bool) |
|
| hobbes::BOP (bgt, CreateICmpUGT, unsigned char, unsigned char, bool) |
|
| hobbes::BOP (bgte, CreateICmpUGE, unsigned char, unsigned char, bool) |
|
| hobbes::BOP (bshl, CreateShl, unsigned char, unsigned char, unsigned char) |
|
| hobbes::BOP (blshr, CreateLShr, unsigned char, unsigned char, unsigned char) |
|
| hobbes::BOP (bashr, CreateAShr, unsigned char, unsigned char, unsigned char) |
|
| hobbes::BOP (band, CreateAnd, unsigned char, unsigned char, unsigned char) |
|
| hobbes::BOP (bor, CreateOr, unsigned char, unsigned char, unsigned char) |
|
| hobbes::BOP (bxor, CreateXor, unsigned char, unsigned char, unsigned char) |
|
| hobbes::BOP (cadd, CreateAdd, char, char, char) |
|
| hobbes::BOP (csub, CreateSub, char, char, char) |
|
| hobbes::BOP (cmul, CreateMul, char, char, char) |
|
| hobbes::BOP (cdiv, CreateSDiv, char, char, char) |
|
| hobbes::BOP (crem, CreateSRem, char, char, char) |
|
| hobbes::BOP (badd, CreateAdd, unsigned char, unsigned char, unsigned char) |
|
| hobbes::BOP (bsub, CreateSub, unsigned char, unsigned char, unsigned char) |
|
| hobbes::BOP (bmul, CreateMul, unsigned char, unsigned char, unsigned char) |
|
| hobbes::BOP (bdiv, CreateSDiv, unsigned char, unsigned char, unsigned char) |
|
| hobbes::BOP (brem, CreateSRem, unsigned char, unsigned char, unsigned char) |
|
| hobbes::BOP (sadd, CreateAdd, short, short, short) |
|
| hobbes::BOP (ssub, CreateSub, short, short, short) |
|
| hobbes::BOP (smul, CreateMul, short, short, short) |
|
| hobbes::BOP (sdiv, CreateSDiv, short, short, short) |
|
| hobbes::BOP (srem, CreateSRem, short, short, short) |
|
| hobbes::BOP (seq, CreateICmpEQ, short, short, bool) |
|
| hobbes::BOP (sneq, CreateICmpNE, short, short, bool) |
|
| hobbes::BOP (slt, CreateICmpSLT, short, short, bool) |
|
| hobbes::BOP (slte, CreateICmpSLE, short, short, bool) |
|
| hobbes::BOP (sgt, CreateICmpSGT, short, short, bool) |
|
| hobbes::BOP (sgte, CreateICmpSGE, short, short, bool) |
|
| hobbes::BOP (iadd, CreateAdd, int, int, int) |
|
| hobbes::BOP (isub, CreateSub, int, int, int) |
|
| hobbes::BOP (imul, CreateMul, int, int, int) |
|
| hobbes::BOP (idiv, CreateSDiv, int, int, int) |
|
| hobbes::BOP (irem, CreateSRem, int, int, int) |
|
| hobbes::BOP (ishl, CreateShl, int, int, int) |
|
| hobbes::BOP (ilshr, CreateLShr, int, int, int) |
|
| hobbes::BOP (iashr, CreateAShr, int, int, int) |
|
| hobbes::BOP (iand, CreateAnd, int, int, int) |
|
| hobbes::BOP (ior, CreateOr, int, int, int) |
|
| hobbes::BOP (ixor, CreateXor, int, int, int) |
|
| hobbes::BOP (ieq, CreateICmpEQ, int, int, bool) |
|
| hobbes::BOP (ineq, CreateICmpNE, int, int, bool) |
|
| hobbes::BOP (ilt, CreateICmpSLT, int, int, bool) |
|
| hobbes::BOP (ilte, CreateICmpSLE, int, int, bool) |
|
| hobbes::BOP (igt, CreateICmpSGT, int, int, bool) |
|
| hobbes::BOP (igte, CreateICmpSGE, int, int, bool) |
|
| hobbes::BOP (ladd, CreateAdd, long, long, long) |
|
| hobbes::BOP (lsub, CreateSub, long, long, long) |
|
| hobbes::BOP (lmul, CreateMul, long, long, long) |
|
| hobbes::BOP (ldiv, CreateSDiv, long, long, long) |
|
| hobbes::BOP (lrem, CreateSRem, long, long, long) |
|
| hobbes::BOP (lshl, CreateShl, long, long, long) |
|
| hobbes::BOP (llshr, CreateLShr, long, long, long) |
|
| hobbes::BOP (lashr, CreateAShr, long, long, long) |
|
| hobbes::BOP (land, CreateAnd, long, long, long) |
|
| hobbes::BOP (lor, CreateOr, long, long, long) |
|
| hobbes::BOP (lxor, CreateXor, long, long, long) |
|
| hobbes::BOP (leq, CreateICmpEQ, long, long, bool) |
|
| hobbes::BOP (lneq, CreateICmpNE, long, long, bool) |
|
| hobbes::BOP (llt, CreateICmpSLT, long, long, bool) |
|
| hobbes::BOP (llte, CreateICmpSLE, long, long, bool) |
|
| hobbes::BOP (lgt, CreateICmpSGT, long, long, bool) |
|
| hobbes::BOP (lgte, CreateICmpSGE, long, long, bool) |
|
| hobbes::BOP (fadd, CreateFAdd, float, float, float) |
|
| hobbes::BOP (fsub, CreateFSub, float, float, float) |
|
| hobbes::BOP (fmul, CreateFMul, float, float, float) |
|
| hobbes::BOP (fdiv, CreateFDiv, float, float, float) |
|
| hobbes::BOP (feq, CreateFCmpOEQ, float, float, bool) |
|
| hobbes::BOP (fneq, CreateFCmpONE, float, float, bool) |
|
| hobbes::BOP (flt, CreateFCmpOLT, float, float, bool) |
|
| hobbes::BOP (flte, CreateFCmpOLE, float, float, bool) |
|
| hobbes::BOP (fgt, CreateFCmpOGT, float, float, bool) |
|
| hobbes::BOP (fgte, CreateFCmpOGE, float, float, bool) |
|
| hobbes::BOP (dadd, CreateFAdd, double, double, double) |
|
| hobbes::BOP (dsub, CreateFSub, double, double, double) |
|
| hobbes::BOP (dmul, CreateFMul, double, double, double) |
|
| hobbes::BOP (ddiv, CreateFDiv, double, double, double) |
|
| hobbes::BOP (deq, CreateFCmpOEQ, double, double, bool) |
|
| hobbes::BOP (dneq, CreateFCmpONE, double, double, bool) |
|
| hobbes::BOP (dlt, CreateFCmpOLT, double, double, bool) |
|
| hobbes::BOP (dlte, CreateFCmpOLE, double, double, bool) |
|
| hobbes::BOP (dgt, CreateFCmpOGT, double, double, bool) |
|
| hobbes::BOP (dgte, CreateFCmpOGE, double, double, bool) |
|
size_t | hobbes::stdstrsize (const std::string &x) |
|
char | hobbes::stdstrelem (const std::string &x, size_t i) |
|
void | hobbes::initDefOperators (cc *) |
|