1 /* -*- buffer-read-only: t -*-
5 * Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
6 * 2007, 2008 by Larry Wall and others
8 * You may distribute under the terms of either the GNU General Public
9 * License or the Artistic License, as specified in the README file.
12 * !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
13 * This file is built by opcode.pl from its data. Any changes made here
216 OP_METHOD_NAMED = 198,
265 OP_GETSOCKNAME = 247,
266 OP_GETPEERNAME = 248,
323 OP_GETPRIORITY = 305,
324 OP_SETPRIORITY = 306,
388 #define OP_phoney_INPUT_ONLY -1
389 #define OP_phoney_OUTPUT_ONLY -2
392 /* the OP_IS_(SOCKET|FILETEST) macros are optimized to a simple range
393 check because all the member OPs are contiguous in opcode.pl
394 <DATA> table. opcode.pl verifies the range contiguity. */
396 #define OP_IS_SOCKET(op) \
397 ((op) >= OP_SEND && (op) <= OP_GETPEERNAME)
399 #define OP_IS_FILETEST(op) \
400 ((op) >= OP_FTRREAD && (op) <= OP_FTBINARY)
402 #define OP_IS_FILETEST_ACCESS(op) \
403 ((op) >= OP_FTRREAD && (op) <= OP_FTEEXEC)