Searched defs:isReg (Results 1 - 11 of 11) sorted by relevance

/external/llvm/include/llvm/MC/
H A DMachineLocation.h53 bool isReg() const { return IsRegister; } function
H A DMCInst.h56 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 DMipsInstPrinter.cpp32 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 DMachineOperand.h192 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 DCodeGenInstruction.h325 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 DARMMCCodeEmitter.cpp532 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 DHexagonHardwareLoops.cpp312 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 DSystemZAsmParser.cpp196 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 DHexagonAsmParser.cpp241 bool isReg() const { return Kind == Register; } function in struct:__anon12564::HexagonOperand
/external/valgrind/VEX/priv/
H A Dguest_x86_toIR.c5562 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 Dguest_amd64_toIR.c7072 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...]

Completed in 1042 milliseconds