search for: isresolved

Displaying 5 results from an estimated 5 matches for "isresolved".

Did you mean: isreserved
2003 Jun 24
1
S4 method setClass prototype definition question
...atin is 'valid' setClass("Annotation", representation ("IDataType", x="vector", y="vector", catId="integer", isResolved="logical", resolve="logical"), prototype(isResolved=FALSE, catId=as.integer(-1)), validity=NULL, sealed=TRUE) ## instantiate an object an an<-new("Annotation") > an An o...
2019 Oct 02
2
fixup_aarch64_movw support for COFF AArch64
Hi Everyone, I'm working Chromium targeting Windows on ARM64 platform. As a part of this work I ran into an issue related to llvm in Swiftshader. Currently fixup_aarch64_movw relocation type is not supported for COFF ARM64 (AArch64WinCOFFObjectWriter). As far as I see, Microsoft hasn't defined indicator for this relocation type. I haven't seen documented anywhere. For AArch32
2019 Oct 02
2
fixup_aarch64_movw support for COFF AArch64
...ix this? > > I'm not entirely sure, but it seems like this fixup type is only used > for absolute values that are resolved before the object file is > written - from AArch64AsmBackend.cpp, adjustFixupValue: > >   case AArch64::fixup_aarch64_movw: >     [...] >     if (!IsResolved) { >       // FIXME: Figure out when this can actually happen, and verify our >       // behavior. >       Ctx.reportError(Fixup.getLoc(), "unresolved movw fixup not yet " >                                       "implemented"); >       return Value; >     } &gt...
2013 Sep 25
1
[LLVMdev] arm64 / iOS support
...nclude "llvm/Support/ELF.h" +#include "llvm/Support/MachO.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/raw_ostream.h" using namespace llvm; @@ -73,11 +77,147 @@ void AArch64AsmBackend::processFixupValue(const MCAssembler &Asm, IsResolved = false; } - static uint64_t adjustFixupValue(unsigned Kind, uint64_t Value); namespace { +class DarwinAArch64AsmBackend : public AArch64AsmBackend { +public: + DarwinAArch64AsmBackend(const Target &T, const StringRef TT, uint8_t _OSABI) + : AArch64AsmBackend(T, TT) {} + bool ma...
2011 Oct 10
1
[LLVMdev] Adding fixups and relocations late in code generation
Jim, Both the branch and the branch target are in the same function. This is known delta and should not matter where it is relocated because the delta will remain the same once it is a .o or later. I just want to know how to tell the compiler that this expression is target offset - branch offset. More generally, I want to know the rules for setting up expressions in general. I have no idea if