HomeSort by relevance Sort by last modified time
    Searched refs:RegName (Results 1 - 25 of 75) sorted by null

1 2 3

  /external/llvm/lib/Target/PowerPC/InstPrinter/
PPCInstPrinter.cpp 40 const char *RegName = getRegisterName(RegNo);
41 if (RegName[0] == 'q' /* QPX */) {
45 std::string RN(RegName);
53 OS << RegName;
414 static const char *stripRegisterPrefix(const char *RegName) {
416 return RegName;
418 switch (RegName[0]) {
423 if (RegName[1] == 's')
424 return RegName + 2;
425 return RegName + 1
    [all...]
  /art/disassembler/
disassembler_mips.h 35 const char* RegName(uint32_t reg);
disassembler_mips.cc 487 const char* DisassemblerMips::RegName(uint32_t reg) {
543 case 'D': args << RegName(rd); break;
578 args << StringPrintf("%+d(%s)", offset, RegName(rs));
584 args << StringPrintf("%+d(%s)", offset, RegName(rs));
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/PowerPC/InstPrinter/
PPCInstPrinter.cpp 235 static const char *stripRegisterPrefix(const char *RegName) {
236 switch (RegName[0]) {
239 case 'v': return RegName + 1;
240 case 'c': if (RegName[1] == 'r') return RegName + 2;
243 return RegName;
250 const char *RegName = getRegisterName(Op.getReg());
253 RegName = stripRegisterPrefix(RegName);
255 O << RegName;
    [all...]
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/Library/SmmCpuFeaturesLib/
SmmCpuFeaturesLib.c 282 @param[in] RegName Identifies the SMM register to check for support.
284 @retval TRUE The SMM register specified by RegName is supported by the CPU
286 @retval FALSE The SMM register specified by RegName is not supported by the
293 IN SMM_REG_NAME RegName
306 @param[in] RegName Identifies the SMM register to read.
308 @return The value of the SMM register specified by RegName from the CPU
315 IN SMM_REG_NAME RegName
328 @param[in] RegName Identifies the SMM register to write.
336 IN SMM_REG_NAME RegName,
  /device/linaro/bootloader/edk2/UefiCpuPkg/Include/Library/
SmmCpuFeaturesLib.h 262 @param[in] RegName Identifies the SMM register to check for support.
264 @retval TRUE The SMM register specified by RegName is supported by the CPU
266 @retval FALSE The SMM register specified by RegName is not supported by the
273 IN SMM_REG_NAME RegName
283 @param[in] RegName Identifies the SMM register to read.
285 @return The value of the SMM register specified by RegName from the CPU
292 IN SMM_REG_NAME RegName
302 @param[in] RegName Identifies the SMM register to write.
310 IN SMM_REG_NAME RegName,
  /external/swiftshader/third_party/LLVM/lib/Target/X86/InstPrinter/
X86IntelInstPrinter.cpp 77 static void PrintRegName(raw_ostream &O, StringRef RegName) {
78 for (unsigned i = 0, e = RegName.size(); i != e; ++i)
79 O << (char)toupper(RegName[i]);
  /device/linaro/bootloader/edk2/UefiCpuPkg/Library/SmmCpuFeaturesLib/
SmmCpuFeaturesLib.c 492 @param[in] RegName Identifies the SMM register to check for support.
494 @retval TRUE The SMM register specified by RegName is supported by the CPU
496 @retval FALSE The SMM register specified by RegName is not supported by the
503 IN SMM_REG_NAME RegName
506 if (mSmmFeatureControlSupported && RegName == SmmRegFeatureControl) {
519 @param[in] RegName Identifies the SMM register to read.
521 @return The value of the SMM register specified by RegName from the CPU
528 IN SMM_REG_NAME RegName
531 if (mSmmFeatureControlSupported && RegName == SmmRegFeatureControl) {
544 @param[in] RegName Identifies the SMM register to write.
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
PPCAsmPrinter.cpp 133 static const char *stripRegisterPrefix(const char *RegName) {
134 switch (RegName[0]) {
137 case 'v': return RegName + 1;
138 case 'c': if (RegName[1] == 'r') return RegName + 2;
141 return RegName;
150 const char *RegName = PPCInstPrinter::getRegisterName(MO.getReg());
153 if (!Subtarget.isDarwin()) RegName = stripRegisterPrefix(RegName);
154 O << RegName;
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCAsmPrinter.cpp 150 static const char *stripRegisterPrefix(const char *RegName) {
151 switch (RegName[0]) {
156 if (RegName[1] == 's')
157 return RegName + 2;
158 return RegName + 1;
159 case 'c': if (RegName[1] == 'r') return RegName + 2;
162 return RegName;
172 const char *RegName = PPCInstPrinter::getRegisterName(MO.getReg());
176 RegName = stripRegisterPrefix(RegName)
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/Library/SmmCpuFeaturesLib/
SmmCpuFeaturesLib.c 334 @param[in] RegName Identifies the SMM register to check for support.
336 @retval TRUE The SMM register specified by RegName is supported by the CPU
338 @retval FALSE The SMM register specified by RegName is not supported by the
345 IN SMM_REG_NAME RegName
348 ASSERT (RegName == SmmRegFeatureControl);
359 @param[in] RegName Identifies the SMM register to read.
361 @return The value of the SMM register specified by RegName from the CPU
368 IN SMM_REG_NAME RegName
386 @param[in] RegName Identifies the SMM register to write.
394 IN SMM_REG_NAME RegName,
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceTargetLowering.cpp 152 void splitToClassAndName(const std::string &RegName, std::string *SplitRegClass,
156 size_t Pos = RegName.find(Separator);
159 *SplitRegName = RegName;
161 *SplitRegClass = RegName.substr(0, Pos);
162 *SplitRegName = RegName.substr(Pos + SeparatorWidth);
224 for (const auto &RegName : BadRegNames)
225 StrBuf << " " << RegName;
    [all...]
IceAssemblerARM32.cpp 541 const char *RegName, const char *InstName) {
545 RegName);
549 IValueT encodeGPRegister(const Operand *OpReg, const char *RegName,
551 return encodeRegister(OpReg, WantGPRegs, RegName, InstName);
554 IValueT encodeSRegister(const Operand *OpReg, const char *RegName,
556 return encodeRegister(OpReg, WantSRegs, RegName, InstName);
559 IValueT encodeDRegister(const Operand *OpReg, const char *RegName,
561 return encodeRegister(OpReg, WantDRegs, RegName, InstName);
564 IValueT encodeQRegister(const Operand *OpReg, const char *RegName,
566 return encodeRegister(OpReg, WantQRegs, RegName, InstName)
    [all...]
IceAssemblerMIPS32.cpp 164 const char *RegName, const char *InstName) {
168 RegName);
172 IValueT encodeGPRegister(const Operand *OpReg, const char *RegName,
174 return encodeRegister(OpReg, WantGPRegs, RegName, InstName);
177 IValueT encodeFPRegister(const Operand *OpReg, const char *RegName,
179 return encodeRegister(OpReg, WantFPRegs, RegName, InstName);
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/HttpBootDxe/
HttpBootDhcp4.h 235 CHAR8 *RegName; /// Point to somewhere in Authority
  /external/llvm/lib/Target/Lanai/
LanaiISelLowering.h 94 unsigned getRegisterByName(const char *RegName, EVT VT,
  /external/llvm/lib/Target/AMDGPU/
SIISelLowering.h 123 unsigned getRegisterByName(const char* RegName, EVT VT,
  /external/llvm/lib/Target/Sparc/
SparcISelLowering.h 105 unsigned getRegisterByName(const char* RegName, EVT VT,
  /external/llvm/lib/Target/AMDGPU/AsmParser/
AMDGPUAsmParser.cpp 772 static unsigned getSpecialRegForName(StringRef RegName) {
773 return StringSwitch<unsigned>(RegName)
829 StringRef RegName = Parser.getTok().getString();
830 if ((Reg = getSpecialRegForName(RegName))) {
835 if (RegName[0] == 'v') {
838 } else if (RegName[0] == 's') {
841 } else if (RegName.startswith("ttmp")) {
847 if (RegName.size() > RegNumIndex) {
849 if (RegName.substr(RegNumIndex).getAsInteger(10, RegNum))
    [all...]
  /external/clang/include/clang/Basic/
TargetInfo.h 687 /// This function returns true if the register passed in RegName can be used
691 virtual bool validateGlobalRegisterVariable(StringRef RegName,
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Basic/
TargetInfo.h 715 /// This function returns true if the register passed in RegName can be used
719 virtual bool validateGlobalRegisterVariable(StringRef RegName,
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Basic/
TargetInfo.h 715 /// This function returns true if the register passed in RegName can be used
719 virtual bool validateGlobalRegisterVariable(StringRef RegName,
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Basic/
TargetInfo.h 715 /// This function returns true if the register passed in RegName can be used
719 virtual bool validateGlobalRegisterVariable(StringRef RegName,
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
TargetInfo.h 715 /// This function returns true if the register passed in RegName can be used
719 virtual bool validateGlobalRegisterVariable(StringRef RegName,
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Basic/
TargetInfo.h 715 /// This function returns true if the register passed in RegName can be used
719 virtual bool validateGlobalRegisterVariable(StringRef RegName,
    [all...]

Completed in 1050 milliseconds

1 2 3