/external/google-breakpad/src/processor/ |
D | fast_source_line_resolver_types.h | 64 address = *(reinterpret_cast<const MemAddr*>(raw)); in CopyFrom() 65 size = *(reinterpret_cast<const MemAddr*>(raw + sizeof(address))); in CopyFrom() 84 address = *(reinterpret_cast<const MemAddr*>(raw + name_size)); in CopyFrom() 85 size = *(reinterpret_cast<const MemAddr*>( in CopyFrom() 86 raw + name_size + sizeof(MemAddr))); in CopyFrom() 88 raw + name_size + 2 * sizeof(MemAddr))); in CopyFrom() 89 lines = StaticRangeMap<MemAddr, Line>( in CopyFrom() 90 raw + name_size + 2 * sizeof(MemAddr) + sizeof(int32_t)); in CopyFrom() 93 StaticRangeMap<MemAddr, Line> lines; 107 address = *(reinterpret_cast<const MemAddr*>(raw + name_size)); in CopyFrom() [all …]
|
D | source_line_resolver_base_types.h | 71 Line(MemAddr addr, MemAddr code_size, int file_id, int source_line) in Line() 77 MemAddr address; 78 MemAddr size; 86 MemAddr function_address, in Function() 87 MemAddr code_size, in Function() 93 MemAddr address; 94 MemAddr size; 103 MemAddr set_address, in PublicSymbol() 110 MemAddr address;
|
D | fast_source_line_resolver.cc | 65 MemAddr address = frame->instruction - frame->module->base_address(); in LookupAddress() 77 MemAddr function_base; in LookupAddress() 78 MemAddr function_size; in LookupAddress() 79 MemAddr public_address; in LookupAddress() 90 MemAddr line_base; in LookupAddress() 174 StaticRangeMap<MemAddr, Function>(mem_buffer + offsets[map_id++]); in LoadMapFromMemory() 176 StaticAddressMap<MemAddr, PublicSymbol>(mem_buffer + offsets[map_id++]); in LoadMapFromMemory() 179 StaticContainedRangeMap<MemAddr, char>(mem_buffer + offsets[map_id++]); in LoadMapFromMemory() 182 StaticRangeMap<MemAddr, char>(mem_buffer + offsets[map_id++]); in LoadMapFromMemory() 183 cfi_delta_rules_ = StaticMap<MemAddr, char>(mem_buffer + offsets[map_id++]); in LoadMapFromMemory() [all …]
|
D | basic_source_line_resolver_types.h | 61 MemAddr function_address, in Function() 62 MemAddr code_size, in Function() 68 RangeMap< MemAddr, linked_ptr<Line> > lines; 145 RangeMap< MemAddr, linked_ptr<Function> > functions_; 146 AddressMap< MemAddr, linked_ptr<PublicSymbol> > public_symbols_; 153 ContainedRangeMap< MemAddr, linked_ptr<WindowsFrameInfo> > 165 RangeMap<MemAddr, string> cfi_initial_rules_; 172 std::map<MemAddr, string> cfi_delta_rules_;
|
D | module_comparer.cc | 110 RangeMap<MemAddr, linked_ptr<BasicFunc> >::MapConstIterator iter1; in CompareModule() 111 StaticRangeMap<MemAddr, FastFunc>::MapConstIterator iter2; in CompareModule() 129 AddressMap<MemAddr, linked_ptr<BasicPubSymbol> >::MapConstIterator iter1; in CompareModule() 130 StaticAddressMap<MemAddr, FastPubSymbol>::MapConstIterator iter2; in CompareModule() 153 RangeMap<MemAddr, string>::MapConstIterator iter1; in CompareModule() 154 StaticRangeMap<MemAddr, char>::MapConstIterator iter2; in CompareModule() 172 map<MemAddr, string>::const_iterator iter1; in CompareModule() 173 StaticMap<MemAddr, char>::iterator iter2; in CompareModule() 200 RangeMap<MemAddr, linked_ptr<BasicLine> >::MapConstIterator iter1; in CompareFunction() 201 StaticRangeMap<MemAddr, FastLine>::MapConstIterator iter2; in CompareFunction() [all …]
|
D | module_serializer.h | 117 RangeMapSerializer<MemAddr, linked_ptr<Function> > functions_serializer_; 118 AddressMapSerializer<MemAddr, linked_ptr<PublicSymbol> > pubsym_serializer_; 119 ContainedRangeMapSerializer<MemAddr, 121 RangeMapSerializer<MemAddr, string> cfi_init_rules_serializer_; 122 StdMapSerializer<MemAddr, string> cfi_delta_rules_serializer_;
|
D | basic_source_line_resolver.cc | 191 MemAddr address = frame->instruction - frame->module->base_address(); in LookupAddress() 201 MemAddr function_base; in LookupAddress() 202 MemAddr function_size; in LookupAddress() 203 MemAddr public_address; in LookupAddress() 211 MemAddr line_base; in LookupAddress() 230 MemAddr address = frame->instruction - frame->module->base_address(); in FindWindowsFrameInfo() 256 MemAddr function_base, function_size; in FindWindowsFrameInfo() 268 MemAddr public_address; in FindWindowsFrameInfo() 279 MemAddr address = frame->instruction - frame->module->base_address(); in FindCFIFrameInfo() 280 MemAddr initial_base, initial_size; in FindCFIFrameInfo() [all …]
|
D | simple_serializer-inl.h | 102 return SimpleSerializer<MemAddr>::SizeOf(line.address) in SizeOf() 103 + SimpleSerializer<MemAddr>::SizeOf(line.size) in SizeOf() 108 dest = SimpleSerializer<MemAddr>::Write(line.address, dest); in Write() 109 dest = SimpleSerializer<MemAddr>::Write(line.size, dest); in Write() 123 + SimpleSerializer<MemAddr>::SizeOf(pubsymbol.address) in SizeOf() 128 dest = SimpleSerializer<MemAddr>::Write(pubsymbol.address, dest); in Write() 193 size += SimpleSerializer<MemAddr>::SizeOf(func.address); in SizeOf() 194 size += SimpleSerializer<MemAddr>::SizeOf(func.size); in SizeOf() 202 dest = SimpleSerializer<MemAddr>::Write(func.address, dest); in Write() 203 dest = SimpleSerializer<MemAddr>::Write(func.size, dest); in Write() [all …]
|
D | module_comparer.h | 88 bool CompareCRM(const ContainedRangeMap<MemAddr, linked_ptr<WFI> >*, 89 const StaticContainedRangeMap<MemAddr, char>*) const;
|
D | simple_serializer.h | 45 typedef uint64_t MemAddr; typedef
|
D | module_serializer.cc | 48 RangeMapSerializer< MemAddr, linked_ptr<BasicSourceLineResolver::Line> >
|
/external/google-breakpad/src/google_breakpad/processor/ |
D | source_line_resolver_interface.h | 51 typedef uint64_t MemAddr; typedef
|
/external/llvm/lib/Target/ARM/ |
D | ARMISelDAGToDAG.cpp | 1779 SDValue MemAddr, Align; in SelectVLD() local 1781 if (!SelectAddrMode6(N, N->getOperand(AddrOpIdx), MemAddr, Align)) in SelectVLD() 1833 Ops.push_back(MemAddr); in SelectVLD() 1855 EVT AddrTy = MemAddr.getValueType(); in SelectVLD() 1861 const SDValue OpsA[] = { MemAddr, Align, Reg0, ImplDef, Pred, Reg0, Chain }; in SelectVLD() 1912 SDValue MemAddr, Align; in SelectVST() local 1915 if (!SelectAddrMode6(N, N->getOperand(AddrOpIdx), MemAddr, Align)) in SelectVST() 1984 Ops.push_back(MemAddr); in SelectVST() 2025 const SDValue OpsA[] = { MemAddr, Align, Reg0, RegSeq, Pred, Reg0, Chain }; in SelectVST() 2027 MemAddr.getValueType(), in SelectVST() [all …]
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCCTRLoops.cpp | 200 const llvm::Value *MemAddr) { in memAddrUsesCTR() argument 201 const auto *GV = dyn_cast<GlobalValue>(MemAddr); in memAddrUsesCTR()
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64ISelDAGToDAG.cpp | 2223 SDValue MemAddr = Node->getOperand(2); in Select() local 2228 MVT::Other, MemAddr, Chain); in Select() 2244 SDValue MemAddr = Node->getOperand(4); in Select() local 2247 SDValue Ops[] = {ValLo, ValHi, MemAddr, Chain}; in Select()
|
/external/clang/lib/CodeGen/ |
D | TargetInfo.cpp | 2981 llvm::Value *MemAddr = EmitVAArgFromMemory(VAListAddr, Ty, CGF); in EmitVAArg() local 2989 ResAddr->addIncoming(MemAddr, InMemBlock); in EmitVAArg() 5349 llvm::Value *MemAddr = in EmitVAArg() local 5362 ResAddr->addIncoming(MemAddr, InMemBlock); in EmitVAArg()
|