/external/elfutils/libdw/ |
H A D | dwarf_getcfi.c | 34 #include "cfi.h" 43 if (dbg->cfi == NULL && dbg->sectiondata[IDX_debug_frame] != NULL) 45 Dwarf_CFI *cfi = libdw_typed_alloc (dbg, Dwarf_CFI); local 47 cfi->dbg = dbg; 48 cfi->data = (Elf_Data_Scn *) dbg->sectiondata[IDX_debug_frame]; 50 cfi->search_table = NULL; 51 cfi->search_table_vaddr = 0; 52 cfi->search_table_entries = 0; 53 cfi->search_table_encoding = DW_EH_PE_omit; 55 cfi [all...] |
H A D | dwarf_getcfi_elf.c | 38 #include "cfi.h" 46 Dwarf_CFI *cfi = calloc (1, sizeof *cfi); local 47 if (cfi == NULL) 53 cfi->e_ident = (unsigned char *) elf_getident (elf, NULL); 54 if (cfi->e_ident == NULL) 56 free (cfi); 61 if ((BYTE_ORDER == LITTLE_ENDIAN && cfi->e_ident[EI_DATA] == ELFDATA2MSB) 62 || (BYTE_ORDER == BIG_ENDIAN && cfi->e_ident[EI_DATA] == ELFDATA2LSB)) 63 cfi 175 Dwarf_CFI *cfi = allocate_cfi (elf, eh_frame_ptr); local 225 Dwarf_CFI *cfi = allocate_cfi (elf, shdr->sh_addr); local [all...] |
H A D | dwarf_end.c | 40 #include "cfi.h" 65 if (dwarf->cfi != NULL) 67 __libdw_destroy_frame_cache (dwarf->cfi);
|
H A D | cfi.h | 79 #define CFI_IS_EH(cfi) ((cfi)->dbg == NULL)
|
H A D | Makefile.am | 85 cie.c fde.c cfi.c frame-cache.c \ 138 dwarf_sig8_hash.h cfi.h encoded-value.h
|
H A D | libdwP.h | 186 struct Dwarf_CFI_s *cfi; member in struct:Dwarf
|
/external/mesa3d/src/gallium/auxiliary/hud/ |
H A D | hud_cpufreq.c | 70 list_for_each_entry(struct cpufreq_info, cfi, &gcpufreq_list, list) { 71 if (cfi->mode != mode) 73 if (cfi->cpu_index == cpu_index) 74 return cfi; 96 struct cpufreq_info *cfi = gr->query_data; local 99 if (cfi->last_time) { 100 if (cfi->last_time + gr->pane->period <= now) { 101 switch (cfi->mode) { 105 get_file_value(cfi->sysfs_filename, &cfi 128 struct cpufreq_info *cfi; local 167 struct cpufreq_info *cfi = CALLOC_STRUCT(cpufreq_info); local [all...] |
/external/elfutils/libdwfl/ |
H A D | dwfl_module_dwarf_cfi.c | 30 #include "../libdw/cfi.h" 34 __libdwfl_set_cfi (Dwfl_Module *mod, Dwarf_CFI **slot, Dwarf_CFI *cfi) argument 36 if (cfi != NULL && cfi->ebl == NULL) 40 cfi->ebl = mod->ebl; 44 INTUSE(dwarf_cfi_end) (cfi); 50 return *slot = cfi;
|
H A D | frame_unwind.c | 33 #include "cfi.h" 540 handle_cfi (Dwfl_Frame *state, Dwarf_Addr pc, Dwarf_CFI *cfi, Dwarf_Addr bias) argument 543 if (INTUSE(dwarf_cfi_addrframe) (cfi, pc, &frame) != 0)
|
H A D | libdwflP.h | 506 Dwarf_CFI *cfi)
|
/external/google-breakpad/src/processor/ |
H A D | cfi_frame_info_unittest.cc | 79 CFIFrameInfo cfi; member in struct:CFIFixture 90 cfi.SetRARule("0"); 91 ASSERT_FALSE(cfi.FindCallerRegs<uint64_t>(registers, memory, 93 ASSERT_EQ(".ra: 0", cfi.Serialize()); 100 cfi.SetCFARule("0"); 101 ASSERT_FALSE(cfi.FindCallerRegs<uint64_t>(registers, memory, 103 ASSERT_EQ(".cfa: 0", cfi.Serialize()); 109 cfi.SetCFARule("330903416631436410"); 110 cfi.SetRARule("5870666104170902211"); 111 ASSERT_TRUE(cfi [all...] |
/external/valgrind/coregrind/m_debuginfo/ |
H A D | readexidx.c | 582 rules in |cfi| will almost certainly refer to the CFA, and so 598 DiCfSI_m cfi; member in struct:_SummState 654 /* Set cfi.cfa_{how,off} so as to be a copy of the expression denoted 658 Bool setCFAfromCFIR( /*MOD*/DiCfSI_m* cfi, XArray*/*CfiExpr*/ cfsi_exprs, argument 667 cfi->cfa_how = CFIC_ARM_R7REL; 668 cfi->cfa_off = 0; 687 static Bool mentionsCFA ( DiCfSI_m* cfi ) 690 if (MENTIONS_CFA(cfi->ra_how)) return True; 691 if (MENTIONS_CFA(cfi->r14_how)) return True; 692 if (MENTIONS_CFA(cfi [all...] |
/external/google-breakpad/src/tools/linux/dump_syms/ |
H A D | dump_syms.cc | 56 bool cfi = true; 63 cfi = false; 91 SymbolData symbol_data = cfi ? ALL_SYMBOL_DATA : NO_CFI;
|
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/ |
H A D | p3-generic-lambda-1y.cpp | 48 static char cfi(int) { return 'a'; } function in struct:Local 54 l4(&Local::cfi);
|
/external/google-breakpad/src/common/dwarf/ |
H A D | cfi_assembler.h | 78 EncodedPointerBases() : cfi(), text(), data() { } 83 uint64_t cfi; member in struct:google_breakpad::CFISection::EncodedPointerBases
|
H A D | cfi_assembler.cc | 137 case dwarf2reader::DW_EH_PE_pcrel: base = bases.cfi + Size(); break;
|
H A D | dwarf2reader_cfi_unittest.cc | 1969 encoded_pointer_bases.cfi = 0x7f496cb2; 1992 byte_reader.SetCFIDataBase(encoded_pointer_bases.cfi, contents.data()); 2354 const CFISection &cfi) { 2355 int elf_class = cfi.AddressSize() == 4 ? ELFCLASS32 : ELFCLASS64; 2356 int elf_data = (cfi.endianness() == kBigEndian 2358 CFISection elf(cfi.endianness(), cfi.AddressSize()); 2394 cfi_header.file_size = cfi.Size(); 2400 CFISection section_names(cfi.endianness(), cfi 2353 WriteELFFrameSection(const char *filename, const char *cfi_name, const CFISection &cfi) argument [all...] |
/external/elfutils/tests/ |
H A D | addrcfi.c | 105 handle_cfi (Dwfl *dwfl, const char *which, Dwarf_CFI *cfi, argument 108 if (cfi == NULL) 114 int result = dwarf_cfi_addrframe (cfi, pc - stuff->bias, &stuff->frame);
|
/external/turbine/java/com/google/turbine/binder/bytecode/ |
H A D | BytecodeBoundClass.java | 317 for (ClassFile.FieldInfo cfi : classFile.get().fields()) { 318 FieldSymbol fieldSym = new FieldSymbol(sym, cfi.name()); 321 int access = cfi.access(); 322 Const.Value value = cfi.value(); 325 switch (cfi.descriptor()) {
|
/external/google-breakpad/src/common/linux/ |
H A D | dump_symbols.cc | 339 const char* cfi = local 352 byte_reader.SetCFIDataBase(section->sh_addr, cfi); 360 dwarf2reader::CallFrameInfo parser(cfi, cfi_size,
|
/external/v8/src/s390/ |
H A D | disasm-s390.cc | 1137 Format(instr, "cfi\t'r1,'i2");
|
H A D | macro-assembler-s390.cc | 4386 cfi(dst, opnd); 4390 cfi(dst, opnd); 4570 cfi(src1, Operand(smi));
|
/external/llvm/test/MC/SystemZ/ |
H A D | insn-bad.s | 434 #CHECK: cfi %r0, (-1 << 31) - 1 436 #CHECK: cfi %r0, (1 << 31) 438 cfi %r0, (-1 << 31) - 1 439 cfi %r0, (1 << 31)
|
/external/capstone/suite/MC/SystemZ/ |
H A D | insn-good.s.cs | 324 0xc2,0x0d,0x80,0x00,0x00,0x00 = cfi %r0, -2147483648 325 0xc2,0x0d,0xff,0xff,0xff,0xff = cfi %r0, -1 326 0xc2,0x0d,0x00,0x00,0x00,0x00 = cfi %r0, 0 327 0xc2,0x0d,0x00,0x00,0x00,0x01 = cfi %r0, 1 328 0xc2,0x0d,0x7f,0xff,0xff,0xff = cfi %r0, 2147483647 329 0xc2,0xfd,0x00,0x00,0x00,0x00 = cfi %r15, 0
|
/external/vboot_reference/ |
H A D | Makefile | 139 -fomit-frame-pointer -fno-toplevel-reorder -fno-dwarf2-cfi-asm \
|