arguments.cc (7693:f1db1000d957) arguments.cc (7707:e5b6f1157be3)
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 36 unchanged lines hidden (view full) ---

45Arguments::Data::alloc(size_t size)
46{
47 char *buf = new char[size];
48 data.push_back(buf);
49 return buf;
50}
51
52uint64_t
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 36 unchanged lines hidden (view full) ---

45Arguments::Data::alloc(size_t size)
46{
47 char *buf = new char[size];
48 data.push_back(buf);
49 return buf;
50}
51
52uint64_t
53Arguments::getArg(uint8_t size, bool fp)
53Arguments::getArg(uint16_t size, bool fp)
54{
55 return TheISA::getArgument(tc, number, size, fp);
56}
57
54{
55 return TheISA::getArgument(tc, number, size, fp);
56}
57