/external/elfutils/backends/ |
D | x86_64_corenote.c | 52 #define GR(at, n, dwreg) \ macro 57 GR (0, 1, 15), /* %r15 */ 58 GR (1, 1, 14), /* %r14 */ 59 GR (2, 1, 13), /* %r13 */ 60 GR (3, 1, 12), /* %r12 */ 61 GR (4, 1, 6), /* %rbp */ 62 GR (5, 1, 3), /* %rbx */ 63 GR (6, 1, 11), /* %r11 */ 64 GR (7, 1, 10), /* %r10 */ 65 GR (8, 1, 9), /* %r9 */ [all …]
|
D | sparc_corenote.c | 49 #define GR(at, n, dwreg) \ macro 54 GR (0, 32, 0), /* %g0-%g7, %o0-%o7, %i0-%i7 */ 56 GR (32, 1, 65), /* %psr */ 57 GR (33, 2, 68), /* %pc, %npc */ 58 GR (35, 1, 64), /* %y */ 59 GR (36, 1, 66), /* %wim, %tbr */ 61 GR (32, 1, 82), /* %state */ 62 GR (33, 2, 80), /* %pc, %npc */ 63 GR (35, 1, 85), /* %y */ 71 GR (0, 32, 32), /* %f0-%f31 */ [all …]
|
D | ppc_corenote.c | 50 #define GR(at, n, dwreg) \ macro 53 GR (0, 32, 0), /* r0-r31 */ 55 GR (33, 1, 66), /* msr */ 57 GR (35, 1, 109), /* ctr */ 58 GR (36, 1, 108), /* lr */ 59 GR (37, 1, 101), /* xer */ 60 GR (38, 1, 64), /* cr */ 61 GR (39, 1, 100), /* mq */ 63 GR (41, 1, 119), /* dar */ 64 GR (42, 1, 118), /* dsisr */ [all …]
|
D | sh_corenote.c | 45 #define GR(at, n, dwreg) \ macro 47 GR (0, 16, 0), /* r0-r15 */ 48 GR (16, 1, 16), /* pc */ 49 GR (17, 1, 17), /* pr */ 50 GR (18, 1, 22), /* sr */ 51 GR (19, 1, 18), /* gbr */ 52 GR (20, 1, 20), /* mach */ 53 GR (21, 1, 21), /* macl */ 55 #undef GR
|
D | i386_corenote.c | 45 #define GR(at, n, dwreg) \ macro 50 GR (0, 1, 3), /* %ebx */ 51 GR (1, 2, 1), /* %ecx-%edx */ 52 GR (3, 2, 6), /* %esi-%edi */ 53 GR (5, 1, 5), /* %ebp */ 54 GR (6, 1, 0), /* %eax */ 60 GR (12, 1, 8), /* %eip */ 62 GR (14, 1, 9), /* eflags */ 63 GR (15, 1, 4), /* %esp */ 66 #undef GR
|
D | s390_corenote.c | 50 #define GR(at, n, dwreg, b...) \ macro 53 GR ( 0, 1, 64, BITS), /* pswm */ 54 GR ( 1, 1, 65, BITS, .pc_register = true ), /* pswa */ 55 GR ( 2, 16, 0, BITS), /* r0-r15 */ 56 GR (18, 16, 48, 32), /* ar0-ar15 */ 58 #undef GR
|
/external/llvm-project/clang/tools/diagtool/ |
D | TreeView.cpp | 43 for (const GroupRecord &GR : Group.subgroups()) in unimplemented() local 44 if (!unimplemented(GR)) in unimplemented() 56 for (const GroupRecord &GR : Group.subgroups()) { in enabledByDefault() local 57 if (!enabledByDefault(GR)) in enabledByDefault() 77 for (const GroupRecord &GR : Group.subgroups()) { in printGroup() local 78 printGroup(GR, Indent); in printGroup() 114 for (const GroupRecord &GR : AllGroups) { in showAll() local 115 for (auto SI = GR.subgroup_begin(), SE = GR.subgroup_end(); SI != SE; in showAll()
|
/external/llvm-project/llvm/unittests/DebugInfo/GSYM/ |
D | GSYMTest.cpp | 1119 static void Compare(const GsymCreator &GC, const GsymReader &GR) { in Compare() argument 1123 auto DecodedFI = GR.getFunctionInfo(FI.Range.Start); in Compare() 1139 Expected<GsymReader> GR = GsymReader::copyBuffer(OutStrm.str()); in TestEncodeDecode() local 1140 ASSERT_TRUE(bool(GR)); in TestEncodeDecode() 1141 const Header &Hdr = GR->getHeader(); in TestEncodeDecode() 1148 Compare(GC, GR.get()); in TestEncodeDecode() 1255 static void VerifyFunctionInfo(const GsymReader &GR, uint64_t Addr, in VerifyFunctionInfo() argument 1257 auto ExpFI = GR.getFunctionInfo(Addr); in VerifyFunctionInfo() 1262 static void VerifyFunctionInfoError(const GsymReader &GR, uint64_t Addr, in VerifyFunctionInfoError() argument 1264 auto ExpFI = GR.getFunctionInfo(Addr); in VerifyFunctionInfoError() [all …]
|
/external/llvm-project/llvm/lib/DebugInfo/GSYM/ |
D | InlineInfo.cpp | 108 static bool lookup(const GsymReader &GR, DataExtractor &Data, uint64_t &Offset, in lookup() argument 134 Done = lookup(GR, Data, Offset, ChildBaseAddr, Addr, SrcLocs, Err); in lookup() 137 Optional<FileEntry> CallFile = GR.getFile(Inline.CallFile); in lookup() 149 SrcLoc.Dir = GR.getString(CallFile->Dir); in lookup() 150 SrcLoc.Base = GR.getString(CallFile->Base); in lookup() 152 SrcLocs.back().Name = GR.getString(Inline.Name); in lookup() 159 llvm::Error InlineInfo::lookup(const GsymReader &GR, DataExtractor &Data, in lookup() argument 165 ::lookup(GR, Data, Offset, BaseAddr, Addr, SrcLocs, Err); in lookup()
|
D | FunctionInfo.cpp | 155 const GsymReader &GR, in lookup() argument 181 LR.FuncName = GR.getString(NameOffset); in lookup() 231 Optional<FileEntry> LineEntryFile = GR.getFile(LineEntry->File); in lookup() 240 SrcLoc.Dir = GR.getString(LineEntryFile->Dir); in lookup() 241 SrcLoc.Base = GR.getString(LineEntryFile->Base); in lookup() 249 llvm::Error Err = InlineInfo::lookup(GR, *InlineInfoData, FuncAddr, Addr, in lookup()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/GSYM/ |
D | InlineInfo.cpp | 108 static bool lookup(const GsymReader &GR, DataExtractor &Data, uint64_t &Offset, in lookup() argument 134 Done = lookup(GR, Data, Offset, ChildBaseAddr, Addr, SrcLocs, Err); in lookup() 137 Optional<FileEntry> CallFile = GR.getFile(Inline.CallFile); in lookup() 147 SrcLoc.Dir = GR.getString(CallFile->Dir); in lookup() 148 SrcLoc.Base = GR.getString(CallFile->Base); in lookup() 150 SrcLocs.back().Name = GR.getString(Inline.Name); in lookup() 155 llvm::Error InlineInfo::lookup(const GsymReader &GR, DataExtractor &Data, in lookup() argument 161 ::lookup(GR, Data, Offset, BaseAddr, Addr, SrcLocs, Err); in lookup()
|
D | FunctionInfo.cpp | 152 const GsymReader &GR, in lookup() argument 178 LR.FuncName = GR.getString(NameOffset); in lookup() 227 Optional<FileEntry> LineEntryFile = GR.getFile(LineEntry->File); in lookup() 235 SrcLoc.Dir = GR.getString(LineEntryFile->Dir); in lookup() 236 SrcLoc.Base = GR.getString(LineEntryFile->Base); in lookup() 244 llvm::Error Err = InlineInfo::lookup(GR, *InlineInfoData, FuncAddr, Addr, in lookup()
|
D | GsymReader.cpp | 54 GsymReader GR(std::move(MemBuffer)); in create() local 55 llvm::Error Err = GR.parse(); in create() 58 return std::move(GR); in create()
|
/external/llvm-project/llvm/tools/llvm-xray/ |
D | xray-graph.cpp | 463 xray::GraphRenderer GR(FuncIdHelper, DeduceSiblingCalls); in getGraphRenderer() local 465 auto E = GR.accountRecord(Record); in getGraphRenderer() 469 for (const auto &ThreadStack : GR.getPerThreadFunctionStack()) { in getGraphRenderer() 487 GR.G.GraphEdgeMax = {}; in getGraphRenderer() 488 GR.G.GraphVertexMax = {}; in getGraphRenderer() 489 GR.calculateEdgeStatistics(); in getGraphRenderer() 490 GR.calculateVertexStatistics(); in getGraphRenderer() 493 GR.normalizeStatistics(Header.CycleFrequency); in getGraphRenderer() 495 return GR; in getGraphRenderer() 524 auto &GR = *GROrError; in __anonbd54c2ff0302() local [all …]
|
/external/llvm-project/llvm/test/tools/llvm-readobj/ELF/ |
D | verneed-invalid.test | 265 # RUN: llvm-readobj --sections -V %t5 | FileCheck %s --check-prefix=LLVM-OFFSET-GR 266 # RUN: llvm-readelf --sections -V %t5 | FileCheck %s --check-prefix=GNU-OFFSET-GR 268 # LLVM-OFFSET-GR: VersionRequirements [ 269 # LLVM-OFFSET-GR-NEXT: Dependency { 270 # LLVM-OFFSET-GR-NEXT: Version: 1 271 # LLVM-OFFSET-GR-NEXT: Count: 1 272 # LLVM-OFFSET-GR-NEXT: FileName: <corrupt vn_file: 1> 273 # LLVM-OFFSET-GR-NEXT: Entries [ 274 # LLVM-OFFSET-GR-NEXT: Entry { 275 # LLVM-OFFSET-GR-NEXT: Hash: 0 [all …]
|
/external/cldr/tools/java/org/unicode/cldr/util/data/external/ |
D | 2013-1_UNLOCODE_CodeListPart2.csv | 5779 ,"GR",,".GREECE",,,"",,,,, 5780 ,"GR","ANE","Acharnae Akharna","Acharnae Akharna","A1","-----6--","RL","1107",,"3805N 02344E", 5781 ,"GR","AAR","Acharnes","Acharnes","A1","-----6--","RL","1107",,"3805N 02344E", 5782 ,"GR","ACL","Achladi","Achladi",,"1-------","AI","9601",,, 5783 ,"GR","ADL","Adamas Milos","Adamas Milos","82","1-------","RQ","1001",,"3643N 02426E", 5784 ,"GR","AMS","Adhamas","Adhamas",,"--3-----","RL","9811",,, 5785 ,"GR","GAH","Aegaleo","Aegaleo",,"-----6--","RL","0901",,"3759N 02340E", 5786 ,"GR","AEG","Aegina","Aegina",,"1-------","RQ","1101",,"3744N 02325E","" 5787 ,"GR","ANO","Aeginio","Aeginio",,"--3-----","RQ","0907",,"4031N 03233E", 5788 ,"GR","GIE","Aegio","Aegio",,"1-3-----","RL","1001",,"3814N 22455E","" [all …]
|
D | subdivisionData.txt | 80 AL-GR Gramsh 110 AM-GR Geġark'unik' 684 CH-GR Grisons 1196 ES-GR Granada 1746 GR-01 Aitolia-Akarnania 1747 GR-03 Voiotia 1748 GR-04 Evvoia 1749 GR-05 Evrytania 1750 GR-06 Fthiotis 1751 GR-07 Fokis [all …]
|
/external/llvm-project/clang/examples/clang-interpreter/ |
D | CMakeLists.txt | 48 set(excptnRTTI_ON "/GR") 49 set(excptnRTTI_OFF "/GR-")
|
/external/skia/gn/portable/ |
D | BUILD.gn | 16 cflags_cc = [ "/GR" ]
|
/external/deqp-deps/glslang/ |
D | CMakeLists.txt | 187 string(FIND "${CMAKE_CXX_FLAGS}" "/GR" MSVC_HAS_GR) 189 string(REGEX REPLACE "/GR" "/GR-" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") 191 add_compile_options(/GR-) # Disable RTTI 201 add_compile_options(/Os /GR-)
|
/external/angle/third_party/vulkan-deps/glslang/src/ |
D | CMakeLists.txt | 190 string(FIND "${CMAKE_CXX_FLAGS}" "/GR" MSVC_HAS_GR) 192 string(REGEX REPLACE "/GR" "/GR-" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") 194 add_compile_options(/GR-) # Disable RTTI 207 add_compile_options(/Os /GR-)
|
/external/llvm-project/lld/test/COFF/ |
D | pdb-globals-dia-vfunc-simple.test | 20 clang-cl /Z7 /GS- /GR- /c main.cpp /Foglobals-dia-vfunc-simple.obj
|
D | pdb-globals-dia-vfunc-collision2.test | 18 clang-cl /Z7 /GS- /GR- /c main.cpp /Foglobals-dia-vfunc-collision2.obj
|
/external/icu/icu4c/source/data/region/ |
D | haw.txt | 14 GR{"Helene"}
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/GSYM/ |
D | InlineInfo.h | 122 static llvm::Error lookup(const GsymReader &GR, DataExtractor &Data,
|