| /external/chromium_org/v8/src/mips/ |
| assembler-mips-inl.h | 65 imm32_ = reinterpret_cast<int32_t>(f.address()); 133 Address RelocInfo::target_address() { 139 Address RelocInfo::target_address_address() { 144 // Read the address of the word containing the target_address in an 156 // that is the address of the instruction that follows J/JAL/JR/JALR 158 return reinterpret_cast<Address>( 163 Address RelocInfo::constant_pool_entry_address() { 174 void RelocInfo::set_target_address(Address target, 188 Address Assembler::target_address_from_return_address(Address pc) 250 Address address = Memory::Address_at(pc_); local 265 Address address = cell->address() + Cell::kValueOffset; local [all...] |
| frames-mips.h | 208 inline void StackHandler::SetFp(Address slot, Address fp) {
|
| /external/chromium_org/v8/src/mips64/ |
| assembler-mips64-inl.h | 65 imm64_ = reinterpret_cast<int64_t>(f.address()); 125 Address RelocInfo::target_address() { 131 Address RelocInfo::target_address_address() { 136 // Read the address of the word containing the target_address in an 148 // that is the address of the instruction that follows J/JAL/JR/JALR 150 // return reinterpret_cast<Address>( 152 return reinterpret_cast<Address>( 157 Address RelocInfo::constant_pool_entry_address() { 168 void RelocInfo::set_target_address(Address target, 182 Address Assembler::target_address_from_return_address(Address pc) 244 Address address = Memory::Address_at(pc_); local 259 Address address = cell->address() + Cell::kValueOffset; local [all...] |
| frames-mips64.h | 208 inline void StackHandler::SetFp(Address slot, Address fp) {
|
| /art/compiler/optimizing/ |
| code_generator_x86.cc | 68 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pThrowNullPointer))); 85 __ fs()->jmp(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pThrowStackOverflow))); 105 __ fs()->call(Address::Absolute(QUICK_ENTRYPOINT_OFFSET(kX86WordSize, pThrowArrayBounds))); 246 __ testl(EAX, Address(ESP, -static_cast<int32_t>(GetStackOverflowReservedBytes(kX86)))); 257 __ fs()->cmpl(ESP, Address::Absolute(Thread::StackEndOffset<kX86WordSize>())); 261 __ movl(Address(ESP, kCurrentMethodStackOffset), EAX); 273 __ movl(reg, Address(ESP, kCurrentMethodStackOffset)); 352 __ movl(destination.AsX86().AsCpuRegister(), Address(ESP, source.GetStackIndex())); 356 __ movl(Address(ESP, destination.GetStackIndex()), source.AsX86().AsCpuRegister()); 359 __ pushl(Address(ESP, source.GetStackIndex())) [all...] |
| /external/lldb/include/lldb/Breakpoint/ |
| BreakpointLocation.h | 23 #include "lldb/Core/Address.h" 34 /// @brief Class that manages one unique (by address) instance of a logical breakpoint. 40 /// and the address that resulted in this particular instantiation. 42 /// address has been loaded into the program. 59 /// Gets the load address for this breakpoint location 61 /// Returns breakpoint location load address, \b 68 /// Gets the Address for this breakpoint location 70 /// Returns breakpoint location Address. 72 Address & 365 /// The Address defining this location [all...] |
| BreakpointResolverFileLine.h | 43 Address *addr,
|
| BreakpointResolverFileRegex.h | 40 Address *addr,
|
| /external/lldb/include/lldb/Symbol/ |
| DWARFCallFrameInfo.h | 31 // of a function given a text address via the information in the 46 // Locate an AddressRange that includes the provided Address in this 48 // Returns true if a range is found to cover that address. 50 GetAddressRange (Address addr, AddressRange &range); 55 GetUnwindPlan (Address addr, UnwindPlan& unwind_plan); 60 // Build a vector of file address and size for all functions in this Module 63 // The eh_frame information can be a useful source of file address and size of 105 // Start address (file address), size, offset of FDE location 106 // used for finding an FDE for a given File address; the start address field i [all...] |
| /external/chromium_org/chrome/browser/ui/autofill/ |
| autofill_dialog_common.h | 17 class Address;
|
| /external/lldb/include/lldb/Core/ |
| AddressResolverName.h | 47 Address *addr,
|
| FileLineResolver.h | 21 /// @brief This class finds address for source file and line. Optionally, it will look for inlined 47 Address *addr,
|
| /external/lldb/include/lldb/Target/ |
| ThreadPlanCallUserExpression.h | 29 Address &function,
|
| /external/lldb/source/Plugins/Process/Utility/ |
| InferiorCallPOSIX.h | 39 bool InferiorCall(Process *proc, const Address *address, lldb::addr_t &returned_func);
|
| /external/llvm/include/llvm/MC/MCAnalysis/ |
| MCAtom.h | 33 /// or data (a DataAtom). Address ranges are expressed as _closed_ intervals. 42 /// \brief Get the start address of the atom. 44 /// \brief Get the end address, i.e. the last one inside the atom. 49 /// For instance, split must me given the start address of an instruction. 52 /// \brief Splits the atom in two at a given address. 53 /// \param SplitPt Address at which to start a new atom, splitting this one. 58 /// \param TruncPt Last byte address to be contained in this atom. 65 /// at what the atom contains: section or symbol name, BB start address, .. 110 /// NOTE: Both the Address and Size field are actually redundant when taken in 116 uint64_t Address; [all...] |
| /external/chromium_org/v8/src/ |
| zone.cc | 14 // Segments represent chunks of memory: They have starting address 33 Address start() const { return address(sizeof(Segment)); } 34 Address end() const { return address(size_); } 37 // Computes the address of the nth byte in this segment. 38 Address address(int n) const { function in class:v8::internal::Segment 39 return Address(this) + n; 70 // address [all...] |
| frames.cc | 33 DCHECK(frame->sp() <= handler->address()); 39 return handler_ == NULL || handler_->address() > limit_; 47 const Address limit_; 196 Address fp, Address sp, Address js_entry_sp) 213 reinterpret_cast<Address*>(StandardFrame::ComputePCAddress(fp))); 220 Address frame_marker = fp + StandardFrameConstants::kMarkerOffset; 251 Address c_entry_fp = Isolate::c_entry_fp(top); 254 Address handler = Isolate::handler(top) 608 Address address = GetExpressionAddress(n); local 1358 const Address address = handler->address(); local [all...] |
| serialize.h | 53 Address address(int i) { return refs_[i].address; } function in class:v8::internal::ExternalReferenceTable 67 Address address; member in struct:v8::internal::ExternalReferenceTable::ExternalReferenceEntry 74 // For a few types of references, we can get their address from their id. 80 // For other types of references, the caller will figure out the address. 81 void Add(Address address, TypeCode type, uint16_t id, const char* name); 83 void Add(Address address, const char* name) 294 Address address = high_water_[space_index]; local [all...] |
| regexp-stack.cc | 66 Address RegExpStack::EnsureCapacity(size_t size) { 70 Address new_memory = NewArray<byte>(static_cast<int>(size));
|
| /external/chromium_org/v8/src/ic/ |
| ic.h | 51 // Looks up the address of the named utility. 52 static Address AddressFromUtilityId(UtilityId id); 67 inline Address address() const; 87 static void Clear(Isolate* isolate, Address address, 134 Address fp() const { return fp_; } 135 Address pc() const { return *pc_address_; } 158 // Access the target code for the given IC address. 159 static inline Code* GetTargetAtAddress(Address address 284 Address address() const { return address_; } function in class:v8::internal::IC_Utility [all...] |
| /external/chromium_org/third_party/WebKit/Source/platform/heap/ |
| Handle.cpp | 57 Address WrapperPersistentRegion::outOfLineAllocate(ThreadState* state, WrapperPersistentRegion** regionPtr) 59 Address persistentSlot = 0;
|
| /external/chromium_org/v8/src/arm/ |
| frames-arm.h | 155 inline void StackHandler::SetFp(Address slot, Address fp) {
|
| /external/chromium_org/v8/src/arm64/ |
| frames-arm64.h | 102 inline void StackHandler::SetFp(Address slot, Address fp) {
|
| /external/chromium_org/v8/src/ia32/ |
| frames-ia32.h | 118 inline void StackHandler::SetFp(Address slot, Address fp) {
|
| /external/chromium_org/v8/src/x64/ |
| frames-x64.h | 110 inline void StackHandler::SetFp(Address slot, Address fp) {
|