HomeSort by relevance Sort by last modified time
    Searched refs:LCOMM (Results 1 - 10 of 10) sorted by null

  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCAsmInfo.cpp 27 LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment;
  /external/llvm/lib/MC/
MCAsmInfoCOFF.cpp 22 // MingW 4.5 and later support .comm with log2 alignment, but .lcomm uses byte
25 LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment;
MCAsmInfoDarwin.cpp 35 LCOMMDirectiveAlignmentType = LCOMM::Log2Alignment;
MCAsmInfo.cpp 76 LCOMMDirectiveAlignmentType = LCOMM::NoAlignment;
MCAsmStreamer.cpp 169 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
543 /// EmitLocalCommonSymbol - Emit a local common (.lcomm) symbol.
549 OS << "\t.lcomm\t" << *Symbol << ',' << Size;
552 case LCOMM::NoAlignment:
553 llvm_unreachable("alignment not supported on .lcomm!");
554 case LCOMM::ByteAlignment:
557 case LCOMM::Log2Alignment:
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/MCTargetDesc/
AMDGPUMCAsmInfo.cpp 62 LCOMMDirectiveType = LCOMM::None;
  /external/mesa3d/src/gallium/drivers/radeon/MCTargetDesc/
AMDGPUMCAsmInfo.cpp 62 LCOMMDirectiveType = LCOMM::None;
  /external/llvm/include/llvm/MC/
MCAsmInfo.h 36 namespace LCOMM {
262 /// LCOMMDirectiveAlignment - Describes if the .lcomm directive for the
264 LCOMM::LCOMMType LCOMMDirectiveAlignmentType; // Defaults to NoAlignment.
525 LCOMM::LCOMMType getLCOMMDirectiveAlignmentType() const {
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 428 bool ParseDirectiveComm(bool IsLocal); // ".comm" and ".lcomm"
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 295 // Handle common and BSS local symbols (.lcomm).
319 // Use .lcomm only if it supports user-specified alignment.
320 // Otherwise, while it would still be correct to use .lcomm in some
325 if (MAI->getLCOMMDirectiveAlignmentType() != LCOMM::NoAlignment) {
326 // .lcomm _foo, 42
    [all...]

Completed in 196 milliseconds