HomeSort by relevance Sort by last modified time
    Searched defs:Fixup (Results 1 - 10 of 10) sorted by null

  /frameworks/compile/mclinker/include/mcld/Fragment/
Stub.h 32 class Fixup
35 Fixup(DWord pOffset, SWord pAddend, Type pType)
39 ~Fixup()
55 typedef std::vector<Fixup*> FixupListType;
93 /// ----- Fixup ----- ///
113 /// addFixup - add a fixup for this stub to build a relocation
116 /// addFixup - add a fixup from a existing fixup of the prototype
117 void addFixup(const Fixup& pFixup);
  /art/runtime/mirror/
dex_cache.cc 65 void DexCache::Fixup(ArtMethod* trampoline) {
66 // Fixup the resolve methods array to contain trampoline for resolution.
  /external/chromium_org/tools/grit/grit/tool/
transl2tc.py 148 # Fixup placeholders as well as possible based on information from
150 # to fixup placeholders in the translated message so that it looks right
151 # and we also need to fixup placeholders in the source message so that
171 # message structure of translation is different, don't try fixup
192 def Fixup(content, ix):
199 Fixup(transl_content, ix)
200 Fixup(source_content, ix)
  /art/compiler/
elf_fixup.cc 31 bool ElfFixup::Fixup(File* file, uintptr_t oat_data_begin) {
41 LOG(WARNING) << "Failed fo fixup .dynamic in " << file->GetPath();
45 LOG(WARNING) << "Failed fo fixup section headers in " << file->GetPath();
49 LOG(WARNING) << "Failed fo fixup program headers in " << file->GetPath();
53 LOG(WARNING) << "Failed fo fixup .dynsym in " << file->GetPath();
57 LOG(WARNING) << "Failed fo fixup .symtab in " << file->GetPath();
61 LOG(WARNING) << "Failed fo fixup .rel.dyn in " << file->GetPath();
  /external/chromium_org/tools/cr/cr/
config.py 161 return self.Fixup(key, value), error
163 def Fixup(self, key, value):
  /external/llvm/lib/MC/
WinCOFFStreamer.cpp 164 MCFixup Fixup = MCFixup::Create(DF->getContents().size(), SRE, FK_SecRel_2);
165 DF->getFixups().push_back(Fixup);
172 MCFixup Fixup = MCFixup::Create(DF->getContents().size(), SRE, FK_SecRel_4);
173 DF->getFixups().push_back(Fixup);
MCAssembler.cpp 449 const MCFixup &Fixup, const MCFragment *DF,
455 // fixup and records a relocation if one is needed.
456 const MCExpr *Expr = Fixup.getValue();
458 getContext().FatalError(Fixup.getLoc(), "expected relocatable expression");
461 Fixup.getKind()).Flags & MCFixupKindInfo::FKF_IsPCRel;
500 bool ShouldAlignPC = Backend.getFixupKindInfo(Fixup.getKind()).Flags &
506 uint32_t Offset = Layout.getFragmentOffset(DF) + Fixup.getOffset();
514 // Let the backend adjust the fixup value if necessary, including whether
516 Backend.processFixupValue(*this, Layout, Fixup, DF, Target, Value,
841 const MCFixup &Fixup) {
    [all...]
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCCodeEmitter.cpp 266 // All of the information is in the fixup.
290 // Encode the 12 bits of the fixup.
316 // All of the information is in the fixup.
338 // All of the information is in the fixup.
386 // All of the information is in the fixup.
410 // All of the information is in the fixup.
576 // If one of the signed fixup kinds is applied to a MOVZ instruction, the
582 // Nothing to do if there's no fixup.
597 // Nothing to do for an unsigned fixup.
612 MCFixupKind Fixup = MCFixupKind(AArch64::fixup_aarch64_tlsdesc_call)
    [all...]
  /external/clang/lib/CodeGen/
CGCleanup.cpp 234 /// fixups than the fixup depth on the innermost normal cleanup, or
236 /// wrong place. We *could* try to shrink fixup depths, but that's
245 assert(BranchFixups.size() >= MinSize && "fixup stack out of order");
284 // Skip this fixup if its destination isn't set.
285 BranchFixup &Fixup = CGF.EHStack.getBranchFixup(I);
286 if (Fixup.Destination == nullptr) continue;
294 // i.e. where there's an unresolved fixup inside a single cleanup
296 if (Fixup.OptimisticBranchBlock == nullptr) {
297 new llvm::StoreInst(CGF.Builder.getInt32(Fixup.DestinationIndex),
299 Fixup.InitialBranch)
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]

Completed in 572 milliseconds