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

  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCExpr.cpp 104 static void fixELFSymbolsInTLSFixupsImpl(const MCExpr *Expr, MCAssembler &Asm) {
114 fixELFSymbolsInTLSFixupsImpl(BE->getLHS(), Asm);
115 fixELFSymbolsInTLSFixupsImpl(BE->getRHS(), Asm);
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 165 static void fixELFSymbolsInTLSFixupsImpl(const MCExpr *Expr, MCAssembler &Asm) {
176 fixELFSymbolsInTLSFixupsImpl(BE->getLHS(), Asm);
177 fixELFSymbolsInTLSFixupsImpl(BE->getRHS(), Asm);
188 fixELFSymbolsInTLSFixupsImpl(cast<MCUnaryExpr>(Expr)->getSubExpr(), Asm);
194 void SparcMCExpr::fixELFSymbolsInTLSFixups(MCAssembler &Asm) const {
216 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/lib/CodeGen/AsmPrinter/
DwarfFile.h 38 AsmPrinter *Asm;
EHStreamer.h 36 AsmPrinter *Asm;
WinCodeViewLineTables.h 33 AsmPrinter *Asm;
117 WinCodeViewLineTables(AsmPrinter *Asm);
DebugLocStream.h 87 /// create a label with \a Asm.
90 bool finalizeList(AsmPrinter &Asm);
156 AsmPrinter &Asm;
162 ListBuilder(DebugLocStream &Locs, DwarfCompileUnit &CU, AsmPrinter &Asm,
164 : Locs(Locs), Asm(Asm), V(V), MI(MI), ListIndex(Locs.startList(&CU)) {}
169 /// temp symbol in \a Asm and setting up the \a DbgVariable.
DwarfUnit.h 86 AsmPrinter *Asm;
129 AsmPrinter* getAsmPrinter() const { return Asm; }
DwarfDebug.h 10 // This file contains support for writing dwarf debug info into asm files.
193 AsmPrinter *Asm;
  /external/llvm/include/llvm/MC/
MCInstPrinter.h 32 Asm ///< 0ffh
  /external/llvm/lib/MC/
MCELFStreamer.cpp 141 MCAssembler &Asm = getAssembler();
143 setSectionAlignmentForBundling(Asm, CurSection);
147 Asm.registerSymbol(*Grp);
157 Asm.registerSymbol(*Begin);
MCAssembler.cpp 67 MCAsmLayout::MCAsmLayout(MCAssembler &Asm)
68 : Assembler(Asm), LastValidFragment()
71 for (MCSection &Sec : Asm)
74 for (MCSection &Sec : Asm)
201 const MCAssembler &Asm = getAssembler();
204 Asm.getContext().reportError(SMLoc(),
685 static void writeFragment(const MCAssembler &Asm, const MCAsmLayout &Layout,
687 MCObjectWriter *OW = &Asm.getWriter();
690 uint64_t FragmentSize = Asm.computeFragmentSize(Layout, F);
692 Asm.writeFragmentPadding(F, FragmentSize, OW)
    [all...]
  /external/clang/tools/driver/
cc1as_main.cpp 229 .Case("asm", FT_Asm)
311 assert(MAI && "Unable to create target asm info!");
474 AssemblerInvocation Asm;
475 if (!AssemblerInvocation::CreateFromArgs(Asm, Argv, Diags))
478 if (Asm.ShowHelp) {
488 if (Asm.ShowVersion) {
496 if (!Asm.LLVMArgs.empty()) {
497 unsigned NumArgs = Asm.LLVMArgs.size();
501 Args[i + 1] = Asm.LLVMArgs[i].c_str();
507 bool Failed = Diags.hasErrorOccurred() || ExecuteAssembler(Asm, Diags)
    [all...]
  /external/llvm/lib/Target/AMDGPU/InstPrinter/
AMDGPUInstPrinter.cpp 1 //===-- AMDGPUInstPrinter.cpp - AMDGPU MC Inst -> ASM ---------------------===//
386 raw_ostream &O, StringRef Asm,
391 O << Asm;
  /external/llvm/lib/Target/AArch64/InstPrinter/
AArch64InstPrinter.cpp 26 #define DEBUG_TYPE "asm-printer"
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp 518 // Try to change the name of the function in module inline asm. We only do
519 // this for specific asm directives, currently only ".symver", to try to avoid
520 // corrupting asm which happens to contain the symbol name as a substring.
523 std::string Asm = GV->getParent()->getModuleInlineAsm();
525 size_t Pos = Asm.find(SearchStr);
527 Asm.replace(Pos, SearchStr.size(),
529 GV->getParent()->setModuleInlineAsm(Asm);
    [all...]
  /external/llvm/lib/IR/
AsmWriter.cpp     [all...]
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp 478 std::unique_ptr<AsmPrinter> Asm;
505 AsmPrinter &getAsmPrinter() const { return *Asm; }
592 return error("no asm info for target " + TripleName, Context);
601 return error("no asm backend for target " + TripleName, Context);
635 Asm.reset(TheTarget->createAsmPrinter(*TM, std::unique_ptr<MCStreamer>(MS)));
636 if (!Asm)
637 return error("no asm printer for target " + TripleName, Context);
679 Asm->EmitInt32(Unit.getNextUnitOffset() - Unit.getStartOffset() - 4);
680 Asm->EmitInt16(Version);
683 Asm->EmitInt32(0)
    [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]
CGObjCMac.cpp     [all...]

Completed in 580 milliseconds