/external/llvm/lib/MC/ |
WinCOFFStreamer.cpp | 86 SmallVector<MCFixup, 4> Fixups; 89 getAssembler().getEmitter().EncodeInstruction(Inst, VecOS, Fixups); 92 // Add the fixups and data. 93 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) { 94 Fixups[i].setOffset(Fixups[i].getOffset() + DF->getContents().size()); 95 DF->getFixups().push_back(Fixups[i]);
|
MCELFStreamer.cpp | 424 SmallVector<MCFixup, 4> Fixups; 427 Assembler.getEmitter().EncodeInstruction(Inst, VecOS, Fixups); 430 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) 431 fixSymbolsInTLSFixups(Fixups[i].getValue()); 441 // fragment of its own. If there are no fixups registered for the 456 else if (!SD->isBundleLocked() && Fixups.size() == 0) { 459 // there are no fixups registered. 481 // Add the fixups and data. 482 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) { 483 Fixups[i].setOffset(Fixups[i].getOffset() + DF->getContents().size()) [all...] |
MCMachOStreamer.cpp | 381 SmallVector<MCFixup, 4> Fixups; 384 getAssembler().getEmitter().EncodeInstruction(Inst, VecOS, Fixups); 387 // Add the fixups and data. 388 for (unsigned i = 0, e = Fixups.size(); i != e; ++i) { 389 Fixups[i].setOffset(Fixups[i].getOffset() + DF->getContents().size()); 390 DF->getFixups().push_back(Fixups[i]);
|
/external/llvm/include/llvm/MC/ |
MCAssembler.h | 175 /// data and also have fixups registered. 219 /// Fixups - The list of fixups in this fragment. 220 SmallVector<MCFixup, 4> Fixups; 232 return Fixups; 236 return Fixups; 245 fixup_iterator fixup_begin() { return Fixups.begin(); } 246 const_fixup_iterator fixup_begin() const { return Fixups.begin(); } 248 fixup_iterator fixup_end() {return Fixups.end();} 249 const_fixup_iterator fixup_end() const {return Fixups.end(); [all...] |
/external/llvm/lib/Target/Mips/MCTargetDesc/ |
MipsFixupKinds.h | 25 enum Fixups { 26 // Branch fixups resulting in R_MIPS_16.
|
/external/llvm/lib/Target/PowerPC/MCTargetDesc/ |
PPCFixupKinds.h | 19 enum Fixups {
|
/external/llvm/lib/Target/ARM/MCTargetDesc/ |
ARMFixupKinds.h | 17 enum Fixups { 62 // The following fixups handle the ARM BL instructions. These can be 69 // fixup_arm_uncondbl and fixup_arm_condbl as identical fixups.
|
/external/clang/lib/CodeGen/ |
EHScopeStack.h | 35 /// unresolved fixups in that scope are threaded through the cleanup. 280 /// The current set of branch fixups. A branch fixup is a jump to 283 /// to thread all the current branch fixups through it. 285 /// Fixups are recorded as the Use of the respective branch or 476 /// Pops lazily-removed fixups from the end of the list. This 478 /// cleanup or resolved one or more fixups. 481 /// Clears the branch-fixups list. This should only be called by
|
CGCleanup.cpp | 189 // Check whether we can shrink the branch-fixups stack. 191 // If we no longer have any normal cleanups, all the fixups are 233 /// Remove any 'null' fixups on the stack. However, we can't pop more 234 /// fixups than the fixup depth on the innermost normal cleanup, or 235 /// else fixups that we try to add to that cleanup will end up in the 240 // normal cleanup; otherwise there really shouldn't be any fixups. 275 /// All the branch fixups on the EH stack have propagated out past the 340 "branch fixups exist with no normal cleanups on stack"); 561 /// any branch fixups on the cleanup. 647 EHStack.popCleanup(); // safe because there are no fixups [all...] |
/art/compiler/utils/ |
assembler.cc | 71 // Process fixups in the instructions.
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/ |
nv50_program.h | 95 void *fixups; /* relocation records */ member in struct:nv50_program
|
nv50_program.c | 351 prog->fixups = info->bin.relocData; 409 if (prog->fixups) 410 nv50_ir_relocate_code(prog->fixups, prog->code, prog->code_base, 0, 0); 434 if (p->fixups) 435 FREE(p->fixups);
|
/external/mesa3d/src/gallium/drivers/nv50/ |
nv50_program.h | 95 void *fixups; /* relocation records */ member in struct:nv50_program
|
nv50_program.c | 351 prog->fixups = info->bin.relocData; 409 if (prog->fixups) 410 nv50_ir_relocate_code(prog->fixups, prog->code, prog->code_base, 0, 0); 434 if (p->fixups) 435 FREE(p->fixups);
|
/external/llvm/lib/Target/X86/MCTargetDesc/ |
X86MCCodeEmitter.cpp | 105 SmallVectorImpl<MCFixup> &Fixups, 129 SmallVectorImpl<MCFixup> &Fixups) const; 132 SmallVectorImpl<MCFixup> &Fixups) const; 305 SmallVectorImpl<MCFixup> &Fixups, int ImmOffset) const { 361 Fixups.push_back(MCFixup::Create(CurByte, Expr, FixupKind, Loc)); 369 SmallVectorImpl<MCFixup> &Fixups) const{ 399 CurByte, OS, Fixups, -ImmSize); 422 EmitImmediate(Disp, MI.getLoc(), 4, FK_Data_4, CurByte, OS, Fixups); 439 EmitImmediate(Disp, MI.getLoc(), 1, FK_Data_1, CurByte, OS, Fixups); 447 EmitImmediate(Disp, MI.getLoc(), 1, FK_Data_1, CurByte, OS, Fixups, [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/MCTargetDesc/ |
SIMCCodeEmitter.cpp | 75 SmallVectorImpl<MCFixup> &Fixups) const; 79 SmallVectorImpl<MCFixup> &Fixups) const; 132 SmallVectorImpl<MCFixup> &Fixups) const { 133 uint64_t Encoding = getBinaryCodeForInstr(MI, Fixups); 142 SmallVectorImpl<MCFixup> &Fixups) const {
|
/external/mesa3d/src/gallium/drivers/radeon/MCTargetDesc/ |
SIMCCodeEmitter.cpp | 75 SmallVectorImpl<MCFixup> &Fixups) const; 79 SmallVectorImpl<MCFixup> &Fixups) const; 132 SmallVectorImpl<MCFixup> &Fixups) const { 133 uint64_t Encoding = getBinaryCodeForInstr(MI, Fixups); 142 SmallVectorImpl<MCFixup> &Fixups) const {
|
/external/chromium_org/native_client_sdk/src/tools/ |
fix_deps.py | 9 in a GNU Makefile. Without the fixups, deleting or renaming headers can cause
|
/external/libvorbis/ |
CHANGES | 80 * merges tuning improvements from Aoyumi's aoTuV with fixups
|
/external/llvm/test/MC/ARM/ |
elf-movt.s | 17 @@ make sure that the text section fixups are sane too
|
/external/llvm/test/MC/PowerPC/ |
ppc64-fixup-apply.s | 5 # This checks that fixups that can be resolved within the same
|
/frameworks/compile/mclinker/lib/Target/ARM/ |
ARMFixupKinds.h | 17 enum Fixups {
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
ServerParser.java | 158 * javadoc fixups 162 * Small javadoc fixups
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
socket.h | 257 #define MSG_CMSG_COMPAT 0x80000000 /* This message needs 32 bit fixups */ 259 #define MSG_CMSG_COMPAT 0 /* We never have 32 bit fixups */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
socket.h | 257 #define MSG_CMSG_COMPAT 0x80000000 /* This message needs 32 bit fixups */ 259 #define MSG_CMSG_COMPAT 0 /* We never have 32 bit fixups */
|