Home
last modified time | relevance | path

Searched refs:MemAddr (Results 1 – 23 of 23) sorted by relevance

/external/google-breakpad/src/processor/
Dfast_source_line_resolver_types.h64 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 …]
Dsource_line_resolver_base_types.h71 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;
Dfast_source_line_resolver.cc65 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 …]
Dbasic_source_line_resolver_types.h61 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_;
Dmodule_comparer.cc110 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 …]
Dbasic_source_line_resolver.cc191 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 …]
Dmodule_serializer.h117 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_;
Dsimple_serializer-inl.h102 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 …]
Dmodule_comparer.h88 bool CompareCRM(const ContainedRangeMap<MemAddr, linked_ptr<WFI> >*,
89 const StaticContainedRangeMap<MemAddr, char>*) const;
Dsimple_serializer.h45 typedef uint64_t MemAddr; typedef
Dmodule_serializer.cc48 RangeMapSerializer< MemAddr, linked_ptr<BasicSourceLineResolver::Line> >
/external/google-breakpad/src/google_breakpad/processor/
Dsource_line_resolver_interface.h51 typedef uint64_t MemAddr; typedef
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
DARMISelDAGToDAG.cpp1558 SDValue MemAddr, Align; in SelectVLD() local
1560 if (!SelectAddrMode6(N, N->getOperand(AddrOpIdx), MemAddr, Align)) in SelectVLD()
1611 Ops.push_back(MemAddr); in SelectVLD()
1625 EVT AddrTy = MemAddr.getValueType(); in SelectVLD()
1631 const SDValue OpsA[] = { MemAddr, Align, Reg0, ImplDef, Pred, Reg0, Chain }; in SelectVLD()
1682 SDValue MemAddr, Align; in SelectVST() local
1685 if (!SelectAddrMode6(N, N->getOperand(AddrOpIdx), MemAddr, Align)) in SelectVST()
1753 Ops.push_back(MemAddr); in SelectVST()
1786 const SDValue OpsA[] = { MemAddr, Align, Reg0, RegSeq, Pred, Reg0, Chain }; in SelectVST()
1788 MemAddr.getValueType(), in SelectVST()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
DARMISelDAGToDAG.cpp1750 SDValue MemAddr, Align; in SelectVLD() local
1754 if (!SelectAddrMode6(N, N->getOperand(AddrOpIdx), MemAddr, Align)) in SelectVLD()
1804 Ops.push_back(MemAddr); in SelectVLD()
1828 EVT AddrTy = MemAddr.getValueType(); in SelectVLD()
1834 const SDValue OpsA[] = { MemAddr, Align, Reg0, ImplDef, Pred, Reg0, Chain }; in SelectVLD()
1888 SDValue MemAddr, Align; in SelectVST() local
1893 if (!SelectAddrMode6(N, N->getOperand(AddrOpIdx), MemAddr, Align)) in SelectVST()
1962 Ops.push_back(MemAddr); in SelectVST()
2006 const SDValue OpsA[] = { MemAddr, Align, Reg0, RegSeq, Pred, Reg0, Chain }; in SelectVST()
2008 MemAddr.getValueType(), in SelectVST()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
DCodeExtractor.cpp302 Value *MemAddr = nullptr; in isLegalToShrinkwrapLifetimeMarkers() local
308 MemAddr = SI->getPointerOperand(); in isLegalToShrinkwrapLifetimeMarkers()
311 MemAddr = LI->getPointerOperand(); in isLegalToShrinkwrapLifetimeMarkers()
314 if (dyn_cast<Constant>(MemAddr)) in isLegalToShrinkwrapLifetimeMarkers()
316 Value *Base = MemAddr->stripInBoundsConstantOffsets(); in isLegalToShrinkwrapLifetimeMarkers()
/external/llvm/lib/Target/ARM/
DARMISelDAGToDAG.cpp1815 SDValue MemAddr, Align; in SelectVLD() local
1817 if (!SelectAddrMode6(N, N->getOperand(AddrOpIdx), MemAddr, Align)) in SelectVLD()
1869 Ops.push_back(MemAddr); in SelectVLD()
1891 EVT AddrTy = MemAddr.getValueType(); in SelectVLD()
1897 const SDValue OpsA[] = { MemAddr, Align, Reg0, ImplDef, Pred, Reg0, Chain }; in SelectVLD()
1951 SDValue MemAddr, Align; in SelectVST() local
1954 if (!SelectAddrMode6(N, N->getOperand(AddrOpIdx), MemAddr, Align)) in SelectVST()
2023 Ops.push_back(MemAddr); in SelectVST()
2065 const SDValue OpsA[] = { MemAddr, Align, Reg0, RegSeq, Pred, Reg0, Chain }; in SelectVST()
2067 MemAddr.getValueType(), in SelectVST()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/
DPPCCTRLoops.cpp228 static bool memAddrUsesCTR(const PPCTargetMachine &TM, const Value *MemAddr) { in memAddrUsesCTR() argument
229 const auto *GV = dyn_cast<GlobalValue>(MemAddr); in memAddrUsesCTR()
232 if (const auto *CV = dyn_cast<Constant>(MemAddr)) in memAddrUsesCTR()
/external/llvm/lib/Target/PowerPC/
DPPCCTRLoops.cpp202 const Value *MemAddr) { in memAddrUsesCTR() argument
203 const auto *GV = dyn_cast<GlobalValue>(MemAddr); in memAddrUsesCTR()
206 if (const auto *CV = dyn_cast<Constant>(MemAddr)) in memAddrUsesCTR()
/external/clang/lib/CodeGen/
DTargetInfo.cpp3542 Address MemAddr = EmitX86_64VAArgFromMemory(CGF, VAListAddr, Ty); in EmitVAArg() local
3547 Address ResAddr = emitMergePHI(CGF, RegAddr, InRegBlock, MemAddr, InMemBlock, in EmitVAArg()
3782 Address MemAddr = Address::invalid(); in EmitVAArg() local
3811 MemAddr = Builder.CreateElementBitCast(OverflowArea, DirectTy); in EmitVAArg()
3822 Address Result = emitMergePHI(CGF, RegAddr, UsingRegs, MemAddr, UsingOverflow, in EmitVAArg()
5974 Address MemAddr = in EmitVAArg() local
5983 return MemAddr; in EmitVAArg()
6055 Address MemAddr = in EmitVAArg() local
6068 MemAddr, InMemBlock, "va_arg.addr"); in EmitVAArg()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
DHexagonISelLowering.cpp409 SDValue MemAddr = DAG.getConstant(LocMemOffset, dl, in LowerCall() local
411 MemAddr = DAG.getNode(ISD::ADD, dl, MVT::i32, StackPtr, MemAddr); in LowerCall()
418 MemOpChains.push_back(CreateCopyOfByValArgument(Arg, MemAddr, Chain, in LowerCall()
423 SDValue S = DAG.getStore(Chain, dl, Arg, MemAddr, LocPI); in LowerCall()
/external/llvm/lib/Target/Hexagon/
DHexagonISelLowering.cpp761 SDValue MemAddr = DAG.getConstant(LocMemOffset, dl, in LowerCall() local
763 MemAddr = DAG.getNode(ISD::ADD, dl, MVT::i32, StackPtr, MemAddr); in LowerCall()
770 MemOpChains.push_back(CreateCopyOfByValArgument(Arg, MemAddr, Chain, in LowerCall()
775 SDValue S = DAG.getStore(Chain, dl, Arg, MemAddr, LocPI, false, in LowerCall()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/
DAArch64ISelDAGToDAG.cpp2918 SDValue MemAddr = Node->getOperand(2); in Select() local
2923 MVT::Other, MemAddr, Chain); in Select()
2940 SDValue MemAddr = Node->getOperand(4); in Select() local
2943 SDValue Ops[] = {ValLo, ValHi, MemAddr, Chain}; in Select()
/external/llvm/lib/Target/AArch64/
DAArch64ISelDAGToDAG.cpp2707 SDValue MemAddr = Node->getOperand(2); in Select() local
2712 MVT::Other, MemAddr, Chain); in Select()
2729 SDValue MemAddr = Node->getOperand(4); in Select() local
2732 SDValue Ops[] = {ValLo, ValHi, MemAddr, Chain}; in Select()