OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RegKind
(Results
1 - 3
of
3
) sorted by null
/external/llvm/lib/Target/Sparc/AsmParser/
SparcAsmParser.cpp
78
unsigned &
RegKind
);
568
unsigned
regKind
= SparcOperand::rk_None;
569
if (matchRegisterName(Tok, RegNo,
regKind
)) {
737
unsigned RegNo,
RegKind
;
738
if (!matchRegisterName(Parser.getTok(), RegNo,
RegKind
))
743
Operands.push_back(SparcOperand::CreateReg(RegNo,
RegKind
, S, E));
797
unsigned
RegKind
;
798
if (matchRegisterName(Parser.getTok(), RegNo,
RegKind
)) {
804
Op = SparcOperand::CreateReg(RegNo,
RegKind
, S, E);
884
unsigned &
RegKind
)
[
all
...]
/external/llvm/lib/Target/SystemZ/AsmParser/
SystemZAsmParser.cpp
92
// MemKind says what type of memory this is and
RegKind
says what type
99
unsigned
RegKind
: 4;
165
createMem(MemoryKind MemKind, RegisterKind
RegKind
, unsigned Base,
170
Op->Mem.
RegKind
=
RegKind
;
199
bool isReg(RegisterKind
RegKind
) const {
200
return Kind == KindReg && Reg.Kind ==
RegKind
;
241
bool isMem(MemoryKind MemKind, RegisterKind
RegKind
) const {
242
return isMem(MemKind) && Mem.
RegKind
==
RegKind
;
[
all
...]
/external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp
333
bool validateMSAIndex(int Val, int
RegKind
);
563
enum
RegKind
{
588
k_RegisterIndex, /// A register index in one or more
RegKind
.
613
RegKind
Kind; /// Bitfield of the kinds it could possibly be
642
static std::unique_ptr<MipsOperand> CreateReg(unsigned Index,
RegKind
RegKind
,
649
Op->RegIdx.Kind =
RegKind
;
[
all
...]
Completed in 60 milliseconds