search for: dvalue

Displaying 6 results from an estimated 6 matches for "dvalue".

Did you mean: value
2019 Jun 27
1
[libnbd PATCH] maint: Use $(NULL) for all Makefile.am macro lists
...dir)/include -Dflag=can_flush + -I$(top_srcdir)/include -Dflag=can_flush \ + $(NULL) can_flush_flag_CFLAGS = $(WARNINGS_CFLAGS) can_flush_flag_LDADD = $(top_builddir)/lib/libnbd.la can_not_flush_flag_SOURCES = eflags.c can_not_flush_flag_CPPFLAGS = \ - -I$(top_srcdir)/include -Dflag=can_flush -Dvalue=false + -I$(top_srcdir)/include -Dflag=can_flush -Dvalue=false \ + $(NULL) can_not_flush_flag_CFLAGS = $(WARNINGS_CFLAGS) can_not_flush_flag_LDADD = $(top_builddir)/lib/libnbd.la can_fua_flag_SOURCES = eflags.c can_fua_flag_CPPFLAGS = \ - -I$(top_srcdir)/include -Dflag=can_fua -Dvalue=native +...
2014 Sep 01
2
[LLVMdev] Instrumenting Various Types Using Single Instrumentation Function
...dVarInputValues(int num, ...) . So, I have created a Union type in Tracing.cpp, which I link with my benchmark module at compile time. These steps are similar to giri instrumentation https://github.com/liuml07/giri union NumericType { int iValue; long lValue; double dValue; ... }; Now, I would like to convert all the llvm Values, required by recordVarInputValues function, to be of NumericType. So that a variable length list of NumerricType values can be passed to my instrumentation function. This way I will not have to create different instrumentation functions...
2019 Aug 23
1
[libnbd PATCH 1/1] api: Add support for FAST_ZERO flag
...-Drequire='"has_can_fast_zero=1"' \ + $(NULL) +can_fast_zero_flag_CFLAGS = $(WARNINGS_CFLAGS) +can_fast_zero_flag_LDADD = $(top_builddir)/lib/libnbd.la + +can_not_fast_zero_flag_SOURCES = eflags.c +can_not_fast_zero_flag_CPPFLAGS = \ + -I$(top_srcdir)/include -Dflag=can_fast_zero -Dvalue=false \ + -Drequire='"has_can_fast_zero=1"' \ + $(NULL) +can_not_fast_zero_flag_CFLAGS = $(WARNINGS_CFLAGS) +can_not_fast_zero_flag_LDADD = $(top_builddir)/lib/libnbd.la + can_multi_conn_flag_SOURCES = eflags.c can_multi_conn_flag_CPPFLAGS = \ -I$(top_srcdir)/include -Dflag=ca...
2008 Sep 18
4
[LLVMdev] Custom Opcodes versus built-in opcodes
...ore easily directly map to my backend. These opcodes are then used to emit a custom set of instructions into the MachineBasicBlock. I've been able to get one to work correctly, however, I've ran into an issue where my second one is being confused as a FRAMEADDR opcode instead of my opcode. DValue InstTargetLowering::LowerBR_CC(SDValue Op, SelectionDAG& DAG){ MVT VT = Op.getValueType(); SDValue Chain = Op.getOperand(0); SDValue LHS = Op.getOperand(2); SDValue RHS = Op.getOperand(3); SDValue Jump = Op.getOperand(4); bo...
2019 Sep 04
2
[libnbd PATCH] api: Add way to avoid structured replies
...g_SOURCES = eflags.c +can_df_flag_CPPFLAGS = \ + -I$(top_srcdir)/include -Dflag=can_df \ + $(NULL) +can_df_flag_CFLAGS = $(WARNINGS_CFLAGS) +can_df_flag_LDADD = $(top_builddir)/lib/libnbd.la + +can_not_df_flag_SOURCES = eflags.c +can_not_df_flag_CPPFLAGS = \ + -I$(top_srcdir)/include -Dflag=can_df -Dvalue=false -Dno_sr \ + $(NULL) +can_not_df_flag_CFLAGS = $(WARNINGS_CFLAGS) +can_not_df_flag_LDADD = $(top_builddir)/lib/libnbd.la + can_multi_conn_flag_SOURCES = eflags.c can_multi_conn_flag_CPPFLAGS = \ -I$(top_srcdir)/include -Dflag=can_multi_conn \ diff --git a/tests/eflags.c b/tests/eflags.c in...
2019 Aug 23
22
cross-project patches: Add NBD Fast Zero support
This is a cover letter to a series of patches being proposed in tandem to four different projects: - nbd: Document a new NBD_CMD_FLAG_FAST_ZERO command flag - qemu: Implement the flag for both clients and server - libnbd: Implement the flag for clients - nbdkit: Implement the flag for servers, including the nbd passthrough client If you want to test the patches together, I've pushed a