/external/llvm/include/llvm/MC/ |
H A D | MachineLocation.h | 53 bool isReg() const { return IsRegister; } function
|
H A D | MCInst.h | 56 bool isReg() const { return Kind == kRegister; } function in class:llvm::MCOperand 64 assert(isReg() && "This is not a register operand!"); 70 assert(isReg() && "This is not a register operand!");
|
/external/llvm/lib/Target/Mips/InstPrinter/ |
H A D | MipsInstPrinter.cpp | 32 static bool isReg(const MCInst &MI, unsigned OpNo) { function 33 assert(MI.getOperand(OpNo).isReg() && "Register operand expected."); 192 if (Op.isReg()) { 299 return (isReg<Mips::ZERO>(MI, 0) && isReg<Mips::ZERO>(MI, 1) && 301 (isReg<Mips::ZERO>(MI, 1) && printAlias("beqz", MI, 0, 2, OS)); 304 return isReg<Mips::ZERO_64>(MI, 1) && printAlias("beqz", MI, 0, 2, OS); 307 return isReg<Mips::ZERO>(MI, 1) && printAlias("bnez", MI, 0, 2, OS); 310 return isReg<Mips::ZERO_64>(MI, 1) && printAlias("bnez", MI, 0, 2, OS); 313 return isReg<Mip [all...] |
/external/llvm/include/llvm/CodeGen/ |
H A D | MachineOperand.h | 192 return isReg() ? 0 : SubReg_TargetFlags; 195 assert(!isReg() && "Register operands can't have target flags"); 200 assert(!isReg() && "Register operands can't have target flags"); 229 /// isReg - Tests if this is a MO_Register operand. 230 bool isReg() const { return OpKind == MO_Register; } function in class:llvm::MachineOperand 268 assert(isReg() && "This is not a register operand!"); 273 assert(isReg() && "Wrong MachineOperand accessor"); 278 assert(isReg() && "Wrong MachineOperand accessor"); 283 assert(isReg() && "Wrong MachineOperand accessor"); 288 assert(isReg() [all...] |
/external/llvm/utils/TableGen/ |
H A D | CodeGenInstruction.h | 325 bool isReg() const { return Kind == K_Reg; } function in struct:llvm::CodeGenInstAlias::ResultOperand 330 Record *getRegister() const { assert(isReg()); return R; }
|
/external/llvm/lib/Target/ARM/MCTargetDesc/ |
H A D | ARMMCCodeEmitter.cpp | 532 if (MO.isReg()) { 690 if (MCOp1.isImm() && MCOp2.isReg() && 890 if (!MO.isReg()) { 974 if (!MO.isReg()) { 1133 bool isReg = MO.getReg() != 0; local 1136 if (isReg) { 1142 return Binary | (isAdd << 12) | (isReg << 13); 1191 if (!MO.isReg()) { 1267 if (!MO.isReg()) {
|
/external/llvm/lib/Target/Hexagon/ |
H A D | HexagonHardwareLoops.cpp | 312 bool isReg() const { return Kind == CV_Register; } function in class:__anon12608::CountValue 316 assert(isReg() && "Wrong CountValue accessor"); 320 assert(isReg() && "Wrong CountValue accessor"); 329 if (isReg()) { OS << PrintReg(Contents.R.Reg, TRI, Contents.R.Sub); } 642 if (Op1.isReg()) { 662 if (InitialValue->isReg()) { 669 if (EndValue->isReg()) { 696 if (Start->isReg()) { 702 if (End->isReg()) { 709 if (!Start->isReg() [all...] |
/external/llvm/lib/Target/SystemZ/AsmParser/ |
H A D | SystemZAsmParser.cpp | 196 bool isReg() const override { 199 bool isReg(RegisterKind RegKind) const { function in class:__anon12737::SystemZOperand 310 bool isGR32() const { return isReg(GR32Reg); } 311 bool isGRH32() const { return isReg(GRH32Reg); } 313 bool isGR64() const { return isReg(GR64Reg); } 314 bool isGR128() const { return isReg(GR128Reg); } 315 bool isADDR32() const { return isReg(ADDR32Reg); } 316 bool isADDR64() const { return isReg(ADDR64Reg); } 318 bool isFP32() const { return isReg(FP32Reg); } 319 bool isFP64() const { return isReg(FP64Re [all...] |
/external/llvm/lib/Target/Hexagon/AsmParser/ |
H A D | HexagonAsmParser.cpp | 241 bool isReg() const { return Kind == Register; } function in struct:__anon12564::HexagonOperand
|
/external/valgrind/VEX/priv/ |
H A D | guest_x86_toIR.c | 5562 Bool isReg = epartIsReg(modrm); local 5655 if (isReg) { 5693 ( isReg ? nameMMXReg(eregOfRM(modrm)) : dis_buf ), 6460 Bool isReg; local 6476 isReg = epartIsReg(modrm); 6477 if (isReg) { 6489 ( isReg ? nameIReg(sz, eregOfRM(modrm)) : dis_buf ),
|
H A D | guest_amd64_toIR.c | 7072 Bool isReg = epartIsReg(modrm); local 7165 if (isReg) { 7203 ( isReg ? nameMMXReg(eregLO3ofRM(modrm)) : dis_buf ), 8148 Bool isReg; local 8162 isReg = epartIsReg(modrm); 8163 if (isReg) { 8175 ( isReg ? nameIRegE(sz, pfx, modrm) : dis_buf ), [all...] |