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

  /external/llvm/lib/MC/
MCLinkerOptimizationHint.cpp 28 const MCAssembler &Asm = Layout.getAssembler();
33 encodeULEB128(ObjWriter.getSymbolAddress(&Asm.getSymbolData(**It), Layout),
MCAssembler.cpp 66 MCAsmLayout::MCAsmLayout(MCAssembler &Asm)
67 : Assembler(Asm), LastValidFragment()
70 for (MCAssembler::iterator it = Asm.begin(), ie = Asm.end(); it != ie; ++it)
73 for (MCAssembler::iterator it = Asm.begin(), ie = Asm.end(); it != ie; ++it)
150 const MCAssembler &Asm = Layout.getAssembler();
155 if (!getLabelOffset(Layout, Asm.getSymbolData(A->getSymbol()), ReportError,
164 if (!getLabelOffset(Layout, Asm.getSymbolData(B->getSymbol()), ReportError,
633 static void writeFragment(const MCAssembler &Asm, const MCAsmLayout &Layout
    [all...]
ELFObjectWriter.cpp 55 MCAssembler &Asm;
74 SymbolTableWriter(MCAssembler &Asm, FragmentWriter &FWriter, bool Is64Bit,
108 static bool isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind);
121 void WriteDataSectionData(MCAssembler &Asm,
208 void WriteHeader(const MCAssembler &Asm,
215 void WriteSymbolTable(MCDataFragment *SymtabF, MCAssembler &Asm,
219 bool shouldRelocateWithSymbol(const MCAssembler &Asm,
224 void RecordRelocation(const MCAssembler &Asm, const MCAsmLayout &Layout,
229 uint64_t getSymbolIndexInSymbolTable(const MCAssembler &Asm,
243 /// \param Asm - The assembler
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfFile.h 36 AsmPrinter *Asm;
EHStreamer.h 34 AsmPrinter *Asm;
WinCodeViewLineTables.h 33 AsmPrinter *Asm;
115 WinCodeViewLineTables(AsmPrinter *Asm);
DwarfUnit.h 81 /// Asm - Target of Dwarf emission.
82 AsmPrinter *Asm;
164 Asm->GetTempSymbol(Section->getLabelBeginName(), getUniqueID());
166 Asm->GetTempSymbol(Section->getLabelEndName(), getUniqueID());
DwarfDebug.h 10 // This file contains support for writing dwarf debug info into asm files.
154 AsmPrinter *Asm;
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCExpr.cpp 103 static void fixELFSymbolsInTLSFixupsImpl(const MCExpr *Expr, MCAssembler &Asm) {
113 fixELFSymbolsInTLSFixupsImpl(BE->getLHS(), Asm);
114 fixELFSymbolsInTLSFixupsImpl(BE->getRHS(), Asm);
122 MCSymbolData &SD = Asm.getOrCreateSymbolData(SymRef.getSymbol());
128 fixELFSymbolsInTLSFixupsImpl(cast<MCUnaryExpr>(Expr)->getSubExpr(), Asm);
133 void AArch64MCExpr::fixELFSymbolsInTLSFixups(MCAssembler &Asm) const {
144 fixELFSymbolsInTLSFixupsImpl(getSubExpr(), Asm);
  /external/llvm/lib/Target/Sparc/MCTargetDesc/
SparcMCExpr.cpp 168 static void fixELFSymbolsInTLSFixupsImpl(const MCExpr *Expr, MCAssembler &Asm) {
179 fixELFSymbolsInTLSFixupsImpl(BE->getLHS(), Asm);
180 fixELFSymbolsInTLSFixupsImpl(BE->getRHS(), Asm);
186 MCSymbolData &SD = Asm.getOrCreateSymbolData(SymRef.getSymbol());
192 fixELFSymbolsInTLSFixupsImpl(cast<MCUnaryExpr>(Expr)->getSubExpr(), Asm);
198 void SparcMCExpr::fixELFSymbolsInTLSFixups(MCAssembler &Asm) const {
220 fixELFSymbolsInTLSFixupsImpl(getSubExpr(), Asm);
  /art/test/121-modifiers/src/
Asm.java 17 import org.objectweb.asm.*;
18 import org.objectweb.asm.tree.*;
22 public class Asm {
  /external/llvm/include/llvm/MC/
MCInstPrinter.h 27 Asm ///< 0ffh
  /external/clang/tools/driver/
cc1as_main.cpp 227 .Case("asm", FT_Asm)
308 assert(MAI && "Unable to create target asm info!");
449 AssemblerInvocation Asm;
450 if (!AssemblerInvocation::CreateFromArgs(Asm, ArgBegin, ArgEnd, Diags))
453 if (Asm.ShowHelp) {
463 if (Asm.ShowVersion) {
471 if (!Asm.LLVMArgs.empty()) {
472 unsigned NumArgs = Asm.LLVMArgs.size();
476 Args[i + 1] = Asm.LLVMArgs[i].c_str();
482 bool Failed = Diags.hasErrorOccurred() || ExecuteAssembler(Asm, Diags)
    [all...]
  /external/llvm/lib/Target/R600/InstPrinter/
AMDGPUInstPrinter.cpp 1 //===-- AMDGPUInstPrinter.cpp - AMDGPU MC Inst -> ASM ---------------------===//
196 raw_ostream &O, StringRef Asm,
201 O << Asm;
  /external/llvm/lib/Target/AArch64/InstPrinter/
AArch64InstPrinter.cpp 26 #define DEBUG_TYPE "asm-printer"
    [all...]
  /external/llvm/lib/IR/
AsmWriter.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp 469 // Try to change the name of the function in module inline asm. We only do
470 // this for specific asm directives, currently only ".symver", to try to avoid
471 // corrupting asm which happens to contain the symbol name as a substring.
474 std::string Asm = GV->getParent()->getModuleInlineAsm();
476 size_t Pos = Asm.find(SearchStr);
478 Asm.replace(Pos, SearchStr.size(),
480 GV->getParent()->setModuleInlineAsm(Asm);
    [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]
CGObjCMac.cpp     [all...]

Completed in 353 milliseconds