HomeSort by relevance Sort by last modified time
    Searched refs:addressSpace (Results 1 - 11 of 11) sorted by null

  /external/libunwind_llvm/src/
CompactUnwinder.hpp 36 uint32_t functionStart, A &addressSpace,
42 static void frameUnwind(A &addressSpace, Registers_x86 &registers);
43 static void framelessUnwind(A &addressSpace,
48 uint32_t functionStart, A &addressSpace,
52 A &addressSpace, Registers_x86 &registers, bool indirectStackSize);
58 A &addressSpace, Registers_x86 &registers) {
62 addressSpace, registers);
65 addressSpace, registers, false);
68 addressSpace, registers, true);
76 A &addressSpace, Registers_x86 &registers)
    [all...]
EHHeaderParser.hpp 38 static bool decodeEHHdr(A &addressSpace, pint_t ehHdrStart, pint_t ehHdrEnd,
40 static bool findFDE(A &addressSpace, pint_t pc, pint_t ehHdrStart,
46 static bool decodeTableEntry(A &addressSpace, pint_t &tableEntry,
55 bool EHHeaderParser<A>::decodeEHHdr(A &addressSpace, pint_t ehHdrStart,
58 uint8_t version = addressSpace.get8(p++);
64 uint8_t eh_frame_ptr_enc = addressSpace.get8(p++);
65 uint8_t fde_count_enc = addressSpace.get8(p++);
66 ehHdrInfo.table_enc = addressSpace.get8(p++);
69 addressSpace.getEncodedP(p, ehHdrEnd, eh_frame_ptr_enc, ehHdrStart);
73 : addressSpace.getEncodedP(p, ehHdrEnd, fde_count_enc, ehHdrStart)
    [all...]
DwarfInstructions.hpp 36 static int stepWithDwarf(A &addressSpace, pint_t pc, pint_t fdeStart,
54 static pint_t evaluateExpression(pint_t expression, A &addressSpace,
57 static pint_t getSavedRegister(A &addressSpace, const R &registers,
59 static double getSavedFloatRegister(A &addressSpace, const R &registers,
61 static v128 getSavedVectorRegister(A &addressSpace, const R &registers,
64 static pint_t getCFA(A &addressSpace, const PrologInfo &prolog,
70 return evaluateExpression((pint_t)prolog.cfaExpression, addressSpace,
80 A &addressSpace, const R &registers, pint_t cfa,
84 return (pint_t)addressSpace.getRegister(cfa + (pint_t)savedReg.value);
87 return (pint_t)addressSpace.getRegister(evaluateExpression
    [all...]
DwarfParser.hpp 102 static bool findFDE(A &addressSpace, pint_t pc, pint_t ehSectionStart,
105 static const char *decodeFDE(A &addressSpace, pint_t fdeStart,
107 static bool parseFDEInstructions(A &addressSpace, const FDE_Info &fdeInfo,
111 static const char *parseCIE(A &addressSpace, pint_t cie, CIE_Info *cieInfo);
114 static bool parseInstructions(A &addressSpace, pint_t instructions,
123 const char *CFI_Parser<A>::decodeFDE(A &addressSpace, pint_t fdeStart,
126 pint_t cfiLength = (pint_t)addressSpace.get32(p);
130 cfiLength = (pint_t)addressSpace.get64(p);
135 uint32_t ciePointer = addressSpace.get32(p);
140 const char *err = parseCIE(addressSpace, cieStart, cieInfo)
    [all...]
UnwindCursor.hpp 66 #include "AddressSpace.hpp"
223 UnwindSectionHeader(A &addressSpace, typename A::pint_t addr)
224 : _addressSpace(addressSpace), _addr(addr) {}
263 UnwindSectionIndexArray(A &addressSpace, typename A::pint_t addr)
264 : _addressSpace(addressSpace), _addr(addr) {}
289 UnwindSectionRegularPageHeader(A &addressSpace, typename A::pint_t addr)
290 : _addressSpace(addressSpace), _addr(addr) {}
314 UnwindSectionRegularArray(A &addressSpace, typename A::pint_t addr)
315 : _addressSpace(addressSpace), _addr(addr) {}
335 UnwindSectionCompressedPageHeader(A &addressSpace, typename A::pint_t addr
    [all...]
AddressSpace.hpp 1 //===------------------------- AddressSpace.hpp ---------------------------===//
472 LocalAddressSpace *addressSpace;
539 *cbdata->addressSpace, eh_frame_hdr_start, phdr->p_memsz,
  /external/swiftshader/third_party/LLVM/lib/Target/PTX/
PTXAsmPrinter.cpp 74 static const char *getStateSpaceName(unsigned addressSpace) {
75 switch (addressSpace) {
  /external/llvm/bindings/go/llvm/
ir.go 608 func PointerType(elementType Type, addressSpace int) (t Type) {
609 t.C = C.LLVMPointerType(elementType.C, C.unsigned(addressSpace))
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/bindings/go/llvm/
ir.go 641 func PointerType(elementType Type, addressSpace int) (t Type) {
642 t.C = C.LLVMPointerType(elementType.C, C.unsigned(addressSpace))
    [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp 47 unsigned addressSpace =
51 if (addressSpace)
52 destType = llvm::Type::getInt8PtrTy(getLLVMContext(), addressSpace);
    [all...]
CGCall.cpp     [all...]

Completed in 3206 milliseconds