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

/external/llvm/include/llvm/MC/
H A DMachineLocation.h51 bool isReg() const { return IsRegister; } function in class:llvm::MachineLocation
H A DMCInst.h52 bool isReg() const { return Kind == kRegister; } function in class:llvm::MCOperand
59 assert(isReg() && "This is not a register operand!");
65 assert(isReg() && "This is not a register operand!");
/external/llvm/lib/CodeGen/
H A DStackSlotColoring.cpp416 bool isReg = SlotIsReg[SS]; local
418 if (NewFI == -1 || (NewFI == (int)SS && !isReg))
424 if (!isReg)
510 if (!MO.isReg())
572 if (!MO.isReg())
/external/llvm/lib/Target/MBlaze/AsmParser/
H A DMBlazeAsmParser.cpp175 bool isReg() const { return Kind == Register; } function in struct:__anon6862::MBlazeOperand
365 if (!Base.isReg()) {
370 if (!Offset.isReg() && !Offset.isImm()) {
376 if (Offset.isReg())
/external/llvm/utils/TableGen/
H A DCodeGenInstruction.h300 bool isReg() const { return Kind == K_Reg; } function in struct:llvm::CodeGenInstAlias::ResultOperand
305 Record *getRegister() const { assert(isReg()); return R; }
H A DFixedLenDecoderEmitter.cpp1308 bool isReg = false; local
1313 isReg = true;
1319 if (!isReg && String && String->getValue() != "")
/external/llvm/include/llvm/CodeGen/
H A DMachineOperand.h190 /// isReg - Tests if this is a MO_Register operand.
191 bool isReg() const { return OpKind == MO_Register; } function in class:llvm::MachineOperand
222 assert(isReg() && "This is not a register operand!");
227 assert(isReg() && "Wrong MachineOperand accessor");
232 assert(isReg() && "Wrong MachineOperand accessor");
237 assert(isReg() && "Wrong MachineOperand accessor");
242 assert(isReg() && "Wrong MachineOperand accessor");
247 assert(isReg() && "Wrong MachineOperand accessor");
252 assert(isReg() && "Wrong MachineOperand accessor");
257 assert(isReg()
[all...]
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCCodeEmitter.cpp404 if (MO.isReg()) {
556 if (MCOp1.isImm() && MCOp2.isReg() &&
708 if (!MO.isReg()) {
787 if (!MO.isReg()) {
943 bool isReg = MO.getReg() != 0; local
946 if (isReg) {
952 return Binary | (isAdd << 12) | (isReg << 13);
1057 if (!MO.isReg()) {
/external/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp290 bool isReg() const { return Kind == Register; } function in struct:__anon6929::X86Operand
828 if (Op.isReg() && Op.getReg() == X86::DX && isDstOp(Op2)) {
841 if (isSrcOp(Op) && Op2.isReg() && Op2.getReg() == X86::DX) {
868 if (isSrcOp(*Op1) && Op2->isReg()) {
898 if (isDstOp(*Op2) && Op1->isReg()) {
/external/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp672 bool isReg() const { return Kind == k_Register; } function in class:__anon6812::ARMOperand
2046 if (!PrevOp->isReg())
3889 static_cast<ARMOperand*>(Operands[3])->isReg() &&
3890 static_cast<ARMOperand*>(Operands[4])->isReg() &&
3900 static_cast<ARMOperand*>(Operands[3])->isReg() &&
3901 static_cast<ARMOperand*>(Operands[4])->isReg() &&
3904 (static_cast<ARMOperand*>(Operands[5])->isReg() ||
3914 static_cast<ARMOperand*>(Operands[3])->isReg() &&
3915 static_cast<ARMOperand*>(Operands[4])->isReg() &&
3944 static_cast<ARMOperand*>(Operands[3])->isReg()
[all...]
/external/valgrind/main/VEX/priv/
H A Dguest_amd64_toIR.c6458 Bool isReg = epartIsReg(modrm); local
6551 if (isReg) {
6589 ( isReg ? nameMMXReg(eregLO3ofRM(modrm)) : dis_buf ),
7513 Bool isReg; local
7527 isReg = epartIsReg(modrm);
7528 if (isReg) {
7540 ( isReg ? nameIRegE(sz, pfx, modrm) : dis_buf ),
H A Dguest_x86_toIR.c5426 Bool isReg = epartIsReg(modrm); local
5519 if (isReg) {
5557 ( isReg ? nameMMXReg(eregOfRM(modrm)) : dis_buf ),
6324 Bool isReg; local
6340 isReg = epartIsReg(modrm);
6341 if (isReg) {
6353 ( isReg ? nameIReg(sz, eregOfRM(modrm)) : dis_buf ),

Completed in 233 milliseconds