HomeSort by relevance Sort by last modified time
    Searched defs:regID (Results 1 - 6 of 6) sorted by null

  /external/swiftshader/third_party/LLVM/lib/MC/MCDisassembler/
EDOperand.h 26 typedef int (*EDRegisterReaderCallback)(uint64_t *value, unsigned regID,
81 typedef int (^EDRegisterBlock_t)(uint64_t *value, unsigned regID);
  /external/swiftshader/third_party/LLVM/include/llvm-c/
EnhancedDisassembly.h 43 @param regID The LLVM register identifier for the register to read.
47 typedef int (*EDRegisterReaderCallback)(uint64_t *value, unsigned regID,
114 @param regID The register identifier, as returned by EDRegisterTokenValue.
119 unsigned regID);
125 @param regID The register identifier, as returned by EDRegisterTokenValue.
129 unsigned regID);
135 @param regID The register identifier, as returned by EDRegisterTokenValue.
139 unsigned regID);
447 @param regID The LLVM register identifier for the register to read.
450 typedef int (^EDRegisterBlock_t)(uint64_t *value, unsigned regID);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/AsmParser/
ARMAsmLexer.cpp 114 unsigned regID = MatchRegisterName(lowerRef);
121 if (!regID) {
122 regID = StringSwitch<unsigned>(lowerCase)
130 if (regID)
133 static_cast<int64_t>(regID));
  /external/swiftshader/third_party/LLVM/lib/Target/MBlaze/AsmParser/
MBlazeAsmLexer.cpp 107 unsigned regID = MatchRegisterName(lowerRef);
109 if (regID) {
112 static_cast<int64_t>(regID));
  /external/swiftshader/third_party/LLVM/lib/Target/X86/AsmParser/
X86AsmLexer.cpp 89 if (unsigned regID = MatchRegisterName(nextToken.getString())) {
99 static_cast<int64_t>(regID));
151 unsigned regID = MatchRegisterName(lowerRef);
153 if (regID)
156 static_cast<int64_t>(regID));
  /external/swiftshader/third_party/LLVM/tools/llvm-mc/
Disassembler.cpp 319 unsigned regID;
320 if (token->registerID(regID)) {
324 Out << "r" << regID;

Completed in 394 milliseconds