Searched defs:RF (Results 1 - 9 of 9) sorted by relevance

/external/llvm/lib/Support/
H A DARMWinEH.cpp16 std::pair<uint16_t, uint32_t> SavedRegisterMask(const RuntimeFunction &RF) { argument
17 uint8_t NumRegisters = RF.Reg();
18 uint8_t RegistersVFP = RF.R();
19 uint8_t LinkRegister = RF.L();
20 uint8_t ChainedFrame = RF.C();
30 if (PrologueFolding(RF))
31 GPRMask |= (((1 << (NumRegisters + 1)) - 1) << (~RF.StackAdjust() & 0x3));
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfFileSpecificationDictionary_autogen.cpp119 SkPdfDictionary* SkPdfFileSpecificationDictionary::RF(SkPdfNativeDoc* doc) { function in class:SkPdfFileSpecificationDictionary
120 SkPdfNativeObject* ret = get("RF", "");
128 return get("RF", "") != NULL;
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfFileSpecificationDictionary_autogen.cpp119 SkPdfDictionary* SkPdfFileSpecificationDictionary::RF(SkPdfNativeDoc* doc) { function in class:SkPdfFileSpecificationDictionary
120 SkPdfNativeObject* ret = get("RF", "");
128 return get("RF", "") != NULL;
/external/llvm/tools/llvm-readobj/
H A DWin64EHDumper.cpp163 const RuntimeFunction &RF) {
165 formatSymbol(Ctx, Section, Offset + 0, RF.StartAddress));
167 formatSymbol(Ctx, Section, Offset + 4, RF.EndAddress));
169 formatSymbol(Ctx, Section, Offset + 8, RF.UnwindInfoOffset));
279 const RuntimeFunction &RF) {
281 printRuntimeFunctionEntry(Ctx, Section, SectionOffset, RF);
292 Offset = Offset + RF.UnwindInfoOffset;
320 for (const auto &RF : RuntimeFunctions) {
322 Index * sizeof(RuntimeFunction), RF);
160 printRuntimeFunctionEntry(const Context &Ctx, const coff_section *Section, uint64_t Offset, const RuntimeFunction &RF) argument
276 printRuntimeFunction(const Context &Ctx, const coff_section *Section, uint64_t SectionOffset, const RuntimeFunction &RF) argument
H A DARMWinEHPrinter.cpp599 unsigned Index, const RuntimeFunction &RF) {
600 assert(RF.Flag() == RuntimeFunctionFlag::RFF_Unpacked &&
605 Function = getSymbol(COFF, RF.BeginAddress, /*FunctionOnly=*/true);
609 XDataRecord = getSymbol(COFF, RF.ExceptionInformationRVA());
611 if (!RF.BeginAddress && !Function)
613 if (!RF.UnwindData && !XDataRecord)
625 FunctionAddress = PEHeader->ImageBase + RF.BeginAddress;
649 uint64_t Address = PEHeader->ImageBase + RF.ExceptionInformationRVA();
653 getSectionContaining(COFF, RF.ExceptionInformationRVA());
658 RF
662 dumpPackedEntry(const object::COFFObjectFile &COFF, const SectionRef Section, uint64_t Offset, unsigned Index, const RuntimeFunction &RF) argument
[all...]
/external/llvm/include/llvm/Support/
H A DARMWinEH.h186 inline bool PrologueFolding(const RuntimeFunction &RF) { argument
187 return RF.StackAdjust() >= 0x3f4 && (RF.StackAdjust() & 0x4);
191 inline bool EpilogueFolding(const RuntimeFunction &RF) { argument
192 return RF.StackAdjust() >= 0x3f4 && (RF.StackAdjust() & 0x8);
197 inline uint16_t StackAdjustment(const RuntimeFunction &RF) { argument
198 uint16_t Adjustment = RF.StackAdjust();
206 std::pair<uint16_t, uint32_t> SavedRegisterMask(const RuntimeFunction &RF);
/external/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp453 const RuntimeFunction &RF) {
454 if (!RF.StartAddress)
458 static_cast<uint32_t>(RF.StartAddress))
460 static_cast<uint32_t>(RF.EndAddress))
462 static_cast<uint32_t>(RF.UnwindInfoOffset));
464 if (Obj->getRvaPtr(RF.UnwindInfoOffset, addr))
476 const RuntimeFunction &RF,
484 RF.StartAddress);
491 RF.EndAddress);
498 RF
452 printRuntimeFunction(const COFFObjectFile *Obj, const RuntimeFunction &RF) argument
475 printRuntimeFunctionRels(const COFFObjectFile *Obj, const RuntimeFunction &RF, uint64_t SectionOffset, const std::vector<RelocationRef> &Rels) argument
[all...]
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DExternalFunctions.cpp263 std::map<const Function *, RawFunc>::iterator RF = RawFunctions->find(F); local
265 if (RF == RawFunctions->end()) {
273 RawFn = RF->second;
/external/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp2040 llvm::Value *RF = Builder.CreateExtractValue(R, I); local
2041 llvm::Value *Cmp = Builder.CreateICmp(Eq, LF, RF, "memptr.cmp.rest");

Completed in 1681 milliseconds