search for: get_reginfo_mc_desc

Displaying 6 results from an estimated 6 matches for "get_reginfo_mc_desc".

2017 Sep 22
2
SchedClasses
...e "llvm/MC/MCInstrInfo.h" #include "llvm/MC/SubtargetFeature.h" #include "llvm/MC/MCSubtargetInfo.h" #define GET_INSTRINFO_MC_DESC #include "AArch64GenInstrInfo.inc" #define GET_SUBTARGETINFO_MC_DESC #include "AArch64GenSubtargetInfo.inc" #define GET_REGINFO_MC_DESC #include "AArch64GenRegisterInfo.inc" int main(int argc, char **argv) { llvm::MCInstrInfo II; llvm::InitAArch64MCInstrInfo(&II); llvm::StringRef ref = II.getName(llvm::AArch64::LDADDALX); llvm::MCInstrDesc d = II.get(llvm::AArch64::LDADDALX); printf("name %s; class...
2017 Sep 29
0
SchedClasses
..."llvm/MC/SubtargetFeature.h" > #include "llvm/MC/MCSubtargetInfo.h" > > #define GET_INSTRINFO_MC_DESC > #include "AArch64GenInstrInfo.inc" > > #define GET_SUBTARGETINFO_MC_DESC > #include "AArch64GenSubtargetInfo.inc" > > #define GET_REGINFO_MC_DESC > #include "AArch64GenRegisterInfo.inc" > > int main(int argc, char **argv) { > llvm::MCInstrInfo II; > > llvm::InitAArch64MCInstrInfo(&II); > > llvm::StringRef ref = II.getName(llvm::AArch64::LDADDALX); > llvm::MCInstrDesc d = II.get(llvm::AArch64::L...
2017 Sep 30
1
SchedClasses
...; > #include "llvm/MC/MCSubtargetInfo.h" > > > > #define GET_INSTRINFO_MC_DESC > > #include "AArch64GenInstrInfo.inc" > > > > #define GET_SUBTARGETINFO_MC_DESC > > #include "AArch64GenSubtargetInfo.inc" > > > > #define GET_REGINFO_MC_DESC > > #include "AArch64GenRegisterInfo.inc" > > > > int main(int argc, char **argv) { > > llvm::MCInstrInfo II; > > > > llvm::InitAArch64MCInstrInfo(&II); > > > > llvm::StringRef ref = II.getName(llvm::AArch64::LDADDALX); > > llv...
2013 Jul 17
0
[LLVMdev] eclipse and gdb
Hi Reed, On Jul 17, 2013, at 3:19 AM, Reed Kotler <rkotler at mips.com> wrote: > On 07/16/2013 06:01 PM, Reed Kotler wrote: >> The Eclipse indexer seems to get stuck in the Clang unittests/AST >> > > In Eclipse you can tell it that a given directory is derived, and then it won't try and index it. > > Probably the more complex clang tests are too involved
2013 Jul 17
1
[LLVMdev] eclipse and gdb
...- Setup coding style to new derivative from GNU, edit line-breaks settings - Setup Project Include-path settings: add following paths and defines: - /usr/include - /usr/include/c++/4.6 - /usr/include/c++/4.6/x86_64-linux-gnu - /usr/include/x86_64-linux-gnu - GET_REGINFO_MC_DESC, GET_REGINFO_HEADER, GET_REGINFO_TARGET_DESC, GET_ASSEMBLER_HEADER, GET_MATCHER_IMPLEMENTATION - Setup Texteditor Font to Deja Sans Mono or any other font that has same character width for normal and bold text! - Setup dictionary for 'C++ Spell Checker'...
2013 Jul 17
3
[LLVMdev] eclipse and gdb
On 07/16/2013 06:01 PM, Reed Kotler wrote: > The Eclipse indexer seems to get stuck in the Clang unittests/AST > In Eclipse you can tell it that a given directory is derived, and then it won't try and index it. Probably the more complex clang tests are too involved for the indexer. >>> Hope this helps :) >>> >>> Regards, >>> >>> Tilmann