OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Fixup
(Results
1 - 10
of
10
) sorted by null
/frameworks/compile/mclinker/include/mcld/Fragment/
Stub.h
35
class
Fixup
38
Fixup
(DWord pOffset, SWord pAddend, Type pType)
42
~
Fixup
()
58
typedef std::vector<
Fixup
*> FixupListType;
96
/// -----
Fixup
----- ///
116
/// addFixup - add a
fixup
for this stub to build a relocation
119
/// addFixup - add a
fixup
from a existing
fixup
of the prototype
120
void addFixup(const
Fixup
& pFixup);
/art/runtime/mirror/
dex_cache.cc
69
void DexCache::
Fixup
(ArtMethod* trampoline) {
70
//
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
29
bool ElfFixup::
Fixup
(File* file, uintptr_t oat_data_begin) {
38
LOG(WARNING) << "Failed fo
fixup
.dynamic in " << file->GetPath();
42
LOG(WARNING) << "Failed fo
fixup
section headers in " << file->GetPath();
46
LOG(WARNING) << "Failed fo
fixup
program headers in " << file->GetPath();
50
LOG(WARNING) << "Failed fo
fixup
.dynsym in " << file->GetPath();
54
LOG(WARNING) << "Failed fo
fixup
.symtab in " << file->GetPath();
58
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/include/llvm/MC/
MCELFObjectWriter.h
36
const MCFixup *
Fixup
;
39
: r_offset(0), Index(0), Type(0), Symbol(0), r_addend(0),
Fixup
(0) {}
42
const MCSymbol *Sym, uint64_t Addend, const MCFixup &
Fixup
)
44
r_addend(Addend),
Fixup
(&
Fixup
) {}
74
virtual unsigned GetRelocType(const MCValue &Target, const MCFixup &
Fixup
,
80
const MCFixup &
Fixup
,
83
const MCFixup &
Fixup
,
/external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCCodeEmitter.cpp
64
// just gets some
fixup
attached.
160
assert(MemSize <= 16 && "Invalid
fixup
for operation");
165
assert(MemSize == 8 && "Invalid
fixup
for operation");
175
assert(MemSize <= 8 && "Invalid
fixup
for operation");
186
assert(MemSize <= 8 && "Invalid
fixup
for operation");
191
assert(MemSize == 8 && "Invalid
fixup
for operation");
201
assert(MemSize <= 8 && "Invalid
fixup
for operation");
212
assert(MemSize <= 8 && "Invalid
fixup
for operation");
217
assert(MemSize == 8 && "Invalid
fixup
for operation");
443
// If one of the signed
fixup
kinds is applied to a MOVZ instruction, th
[
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 == 0) continue;
294
// i.e. where there's an unresolved
fixup
inside a single cleanup
296
if (
Fixup
.OptimisticBranchBlock == 0) {
297
new llvm::StoreInst(CGF.Builder.getInt32(
Fixup
.DestinationIndex),
299
Fixup
.InitialBranch)
[
all
...]
/external/llvm/lib/MC/
MCAssembler.cpp
362
const MCFixup &
Fixup
, const MCFragment *DF,
366
if (!
Fixup
.getValue()->EvaluateAsRelocatable(Target, Layout))
367
getContext().FatalError(
Fixup
.getLoc(), "expected relocatable expression");
370
Fixup
.getKind()).Flags & MCFixupKindInfo::FKF_IsPCRel;
409
bool ShouldAlignPC = Backend.getFixupKindInfo(
Fixup
.getKind()).Flags &
415
uint32_t Offset = Layout.getFragmentOffset(DF) +
Fixup
.getOffset();
423
// Let the backend adjust the
fixup
value if necessary, including whether
425
Backend.processFixupValue(*this, Layout,
Fixup
, DF, Target, Value,
746
const MCFixup &
Fixup
) {
747
// Evaluate the
fixup
[
all
...]
/external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp
[
all
...]
Completed in 697 milliseconds