OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Addend
(Results
1 - 6
of
6
) sorted by null
/external/llvm/include/llvm/Object/
RelocVisitor.h
123
// Ideally the
Addend
here will be the
addend
in the data for
126
int64_t
Addend
;
127
R.getAdditionalInfo(
Addend
);
128
return RelocToApply(Value +
Addend
, 4);
133
int64_t
Addend
;
134
R.getAdditionalInfo(
Addend
);
137
return RelocToApply(Value +
Addend
- Address, 4);
145
int64_t
Addend
;
146
R.getAdditionalInfo(
Addend
);
[
all
...]
/external/llvm/lib/Target/Mips/
MipsJITInfo.cpp
274
//
Addend
is needed for unaligned load/store instructions, where offset
276
// be modified by +1 or +3. Otherwise,
Addend
is 0.
277
int
Addend
= *((unsigned*) RelocPos) & 0xffff;
278
ResultPtr = (ResultPtr +
Addend
) & 0xffff;
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h
88
///
Addend
- the relocation
addend
encoded in the instruction itself. Also
90
intptr_t
Addend
;
92
RelocationEntry(unsigned id, uint64_t offset, uint32_t type, int64_t
addend
)
93
: SectionID(id), Offset(offset), RelType(type),
Addend
(
addend
) {}
111
intptr_t
Addend
;
113
RelocationValueRef(): SectionID(0),
Addend
(0), SymbolName(0) {}
279
/// \param
Addend
A constant
addend
used to compute the value to be store
[
all
...]
RuntimeDyldELF.cpp
197
int64_t
Addend
) {
204
*Target = Value +
Addend
;
205
DEBUG(dbgs() << "Writing " << format("%p", (Value +
Addend
))
211
Value +=
Addend
;
229
int64_t RealOffset = *Placeholder + Value +
Addend
- FinalAddress;
242
int32_t
Addend
) {
250
*Target = *Placeholder + Value +
Addend
;
260
uint32_t RealOffset = *Placeholder + Value +
Addend
- FinalAddress;
276
int32_t
Addend
) {
280
Value +=
Addend
;
[
all
...]
/external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp
24
/// Class representing coefficient of floating-point
addend
.
89
// The integer coefficient of an individual
addend
is either 1 or -1,
98
/// FAddend is used to represent floating-point
addend
. An
addend
is
100
/// constant coefficient. A constant
addend
is represented as <C, 0>.
125
/// splitted is the
addend
itself.
136
// This
addend
has the value of "Coeff * Val".
156
/// Convert given
addend
to a Value
339
FAddend &
Addend
= Opnd0 ? Addend1 : Addend0;
341
Addend
.set(1, Opnd1)
[
all
...]
/external/llvm/lib/MC/
ELFObjectWriter.cpp
148
int64_t
Addend
) const {
150
IsRelocWithSymbol,
Addend
);
704
int64_t
Addend
= 0;
746
Addend
= Value;
753
(RelocSymbol != 0),
Addend
);
766
Addend
= 0;
769
assert(isInt<64>(
Addend
));
771
assert(isInt<32>(
Addend
));
773
ELFRelocationEntry ERE(RelocOffset, Index, Type, RelocSymbol,
Addend
, Fixup);
[
all
...]
Completed in 307 milliseconds