Lines Matching refs:Value
41 void MCTargetStreamer::emitAssignment(MCSymbol *Symbol, const MCExpr *Value) {}
79 void MCStreamer::EmitIntValue(uint64_t Value, unsigned Size) {
81 assert((isUIntN(8 * Size, Value) || isIntN(8 * Size, Value)) &&
87 buf[i] = uint8_t(Value >> (index * 8));
94 void MCStreamer::EmitULEB128IntValue(uint64_t Value, unsigned Padding) {
97 encodeULEB128(Value, OSE, Padding);
103 void MCStreamer::EmitSLEB128IntValue(int64_t Value) {
106 encodeSLEB128(Value, OSE);
110 void MCStreamer::EmitValue(const MCExpr *Value, unsigned Size, SMLoc Loc) {
111 EmitValueImpl(Value, Size, Loc);
117 "SectionRelative value requires 4-bytes");
125 void MCStreamer::EmitGPRel64Value(const MCExpr *Value) {
129 void MCStreamer::EmitGPRel32Value(const MCExpr *Value) {
133 /// EmitFill - Emit NumBytes bytes worth of the value specified by
247 // Put a dummy non-null value in Frame.End to mark that this frame has been
604 void MCStreamer::EmitAssignment(MCSymbol *Symbol, const MCExpr *Value) {
605 visitUsedExpr(*Value);
606 Symbol->setVariableValue(Value);
610 TS->emitAssignment(Symbol, Value);
682 void MCStreamer::emitELFSize(MCSymbolELF *Symbol, const MCExpr *Value) {}
690 void MCStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size, SMLoc Loc) {
691 visitUsedExpr(*Value);
693 void MCStreamer::EmitULEB128Value(const MCExpr *Value) {}
694 void MCStreamer::EmitSLEB128Value(const MCExpr *Value) {}
695 void MCStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
700 void MCStreamer::emitValueToOffset(const MCExpr *Offset, unsigned char Value) {}